mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
54 lines
1.2 KiB
Go
54 lines
1.2 KiB
Go
package engine
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/deluan/gosonic/domain"
|
|
"github.com/deluan/gosonic/itunesbridge"
|
|
)
|
|
|
|
type Scrobbler interface {
|
|
Register(trackId string, playDate time.Time) (*domain.MediaFile, error)
|
|
NowPlaying(trackId, username string, playerName string) (*domain.MediaFile, error)
|
|
}
|
|
|
|
func NewScrobbler(itunes itunesbridge.ItunesControl, mr domain.MediaFileRepository, npr NowPlayingRepository) Scrobbler {
|
|
return &scrobbler{itunes, mr, npr}
|
|
}
|
|
|
|
type scrobbler struct {
|
|
itunes itunesbridge.ItunesControl
|
|
mfRepo domain.MediaFileRepository
|
|
npRepo NowPlayingRepository
|
|
}
|
|
|
|
func (s *scrobbler) Register(id string, playDate time.Time) (*domain.MediaFile, error) {
|
|
mf, err := s.mfRepo.Get(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if mf == nil {
|
|
return nil, errors.New(fmt.Sprintf(`Id "%s" not found`, id))
|
|
}
|
|
|
|
if err := s.itunes.MarkAsPlayed(id, playDate); err != nil {
|
|
return nil, err
|
|
}
|
|
return mf, nil
|
|
}
|
|
|
|
func (s *scrobbler) NowPlaying(trackId, username string, playerName string) (*domain.MediaFile, error) {
|
|
mf, err := s.mfRepo.Get(trackId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if mf == nil {
|
|
return nil, errors.New(fmt.Sprintf(`Id "%s" not found`, trackId))
|
|
}
|
|
|
|
return mf, s.npRepo.Set(trackId, username, 1, playerName)
|
|
}
|