mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
198 lines
4.8 KiB
Go
198 lines
4.8 KiB
Go
package engine
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/astaxie/beego"
|
|
"github.com/cloudsonic/sonic-server/domain"
|
|
"github.com/cloudsonic/sonic-server/utils"
|
|
)
|
|
|
|
type Browser interface {
|
|
MediaFolders() (domain.MediaFolders, error)
|
|
Indexes(ifModifiedSince time.Time) (domain.ArtistIndexes, time.Time, error)
|
|
Directory(id string) (*DirectoryInfo, error)
|
|
Artist(id string) (*DirectoryInfo, error)
|
|
Album(id string) (*DirectoryInfo, error)
|
|
GetSong(id string) (*Entry, error)
|
|
}
|
|
|
|
func NewBrowser(pr PropertyRepository, fr domain.MediaFolderRepository, ir domain.ArtistIndexRepository,
|
|
ar domain.ArtistRepository, alr domain.AlbumRepository, mr domain.MediaFileRepository) Browser {
|
|
return &browser{pr, fr, ir, ar, alr, mr}
|
|
}
|
|
|
|
type browser struct {
|
|
propRepo PropertyRepository
|
|
folderRepo domain.MediaFolderRepository
|
|
indexRepo domain.ArtistIndexRepository
|
|
artistRepo domain.ArtistRepository
|
|
albumRepo domain.AlbumRepository
|
|
mfileRepo domain.MediaFileRepository
|
|
}
|
|
|
|
func (b *browser) MediaFolders() (domain.MediaFolders, error) {
|
|
return b.folderRepo.GetAll()
|
|
}
|
|
|
|
func (b *browser) Indexes(ifModifiedSince time.Time) (domain.ArtistIndexes, time.Time, error) {
|
|
l, err := b.propRepo.DefaultGet(PropLastScan, "-1")
|
|
ms, _ := strconv.ParseInt(l, 10, 64)
|
|
lastModified := utils.ToTime(ms)
|
|
|
|
if err != nil {
|
|
return nil, time.Time{}, fmt.Errorf("error retrieving LastScan property: %v", err)
|
|
}
|
|
|
|
if lastModified.After(ifModifiedSince) {
|
|
indexes, err := b.indexRepo.GetAll()
|
|
return indexes, lastModified, err
|
|
}
|
|
|
|
return nil, lastModified, nil
|
|
}
|
|
|
|
type DirectoryInfo struct {
|
|
Id string
|
|
Name string
|
|
Entries Entries
|
|
Parent string
|
|
Starred time.Time
|
|
PlayCount int32
|
|
UserRating int
|
|
AlbumCount int
|
|
CoverArt string
|
|
Artist string
|
|
ArtistId string
|
|
SongCount int
|
|
Duration int
|
|
Created time.Time
|
|
Year int
|
|
Genre string
|
|
}
|
|
|
|
func (b *browser) Artist(id string) (*DirectoryInfo, error) {
|
|
beego.Debug("Found Artist with id", id)
|
|
a, albums, err := b.retrieveArtist(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b.buildArtistDir(a, albums), nil
|
|
}
|
|
|
|
func (b *browser) Album(id string) (*DirectoryInfo, error) {
|
|
beego.Debug("Found Album with id", id)
|
|
al, tracks, err := b.retrieveAlbum(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b.buildAlbumDir(al, tracks), nil
|
|
}
|
|
|
|
func (b *browser) Directory(id string) (*DirectoryInfo, error) {
|
|
switch {
|
|
case b.isArtist(id):
|
|
return b.Artist(id)
|
|
case b.isAlbum(id):
|
|
return b.Album(id)
|
|
default:
|
|
beego.Debug("Id", id, "not found")
|
|
return nil, domain.ErrNotFound
|
|
}
|
|
}
|
|
|
|
func (b *browser) GetSong(id string) (*Entry, error) {
|
|
mf, err := b.mfileRepo.Get(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
entry := FromMediaFile(mf)
|
|
return &entry, nil
|
|
}
|
|
|
|
func (b *browser) buildArtistDir(a *domain.Artist, albums domain.Albums) *DirectoryInfo {
|
|
dir := &DirectoryInfo{
|
|
Id: a.Id,
|
|
Name: a.Name,
|
|
AlbumCount: a.AlbumCount,
|
|
}
|
|
|
|
dir.Entries = make(Entries, len(albums))
|
|
for i, al := range albums {
|
|
dir.Entries[i] = FromAlbum(&al)
|
|
dir.PlayCount += int32(al.PlayCount)
|
|
}
|
|
return dir
|
|
}
|
|
|
|
func (b *browser) buildAlbumDir(al *domain.Album, tracks domain.MediaFiles) *DirectoryInfo {
|
|
dir := &DirectoryInfo{
|
|
Id: al.Id,
|
|
Name: al.Name,
|
|
Parent: al.ArtistId,
|
|
PlayCount: int32(al.PlayCount),
|
|
UserRating: al.Rating,
|
|
Starred: al.StarredAt,
|
|
Artist: al.Artist,
|
|
ArtistId: al.ArtistId,
|
|
SongCount: al.SongCount,
|
|
Duration: al.Duration,
|
|
Created: al.CreatedAt,
|
|
Year: al.Year,
|
|
Genre: al.Genre,
|
|
CoverArt: al.CoverArtId,
|
|
}
|
|
|
|
dir.Entries = make(Entries, len(tracks))
|
|
for i, mf := range tracks {
|
|
dir.Entries[i] = FromMediaFile(&mf)
|
|
}
|
|
return dir
|
|
}
|
|
|
|
func (b *browser) isArtist(id string) bool {
|
|
found, err := b.artistRepo.Exists(id)
|
|
if err != nil {
|
|
beego.Debug(fmt.Errorf("Error searching for Artist %s: %v", id, err))
|
|
return false
|
|
}
|
|
return found
|
|
}
|
|
|
|
func (b *browser) isAlbum(id string) bool {
|
|
found, err := b.albumRepo.Exists(id)
|
|
if err != nil {
|
|
beego.Debug(fmt.Errorf("Error searching for Album %s: %v", id, err))
|
|
return false
|
|
}
|
|
return found
|
|
}
|
|
|
|
func (b *browser) retrieveArtist(id string) (a *domain.Artist, as domain.Albums, err error) {
|
|
a, err = b.artistRepo.Get(id)
|
|
if err != nil {
|
|
err = fmt.Errorf("Error reading Artist %s from DB: %v", id, err)
|
|
return
|
|
}
|
|
|
|
if as, err = b.albumRepo.FindByArtist(id); err != nil {
|
|
err = fmt.Errorf("Error reading %s's albums from DB: %v", a.Name, err)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (b *browser) retrieveAlbum(id string) (al *domain.Album, mfs domain.MediaFiles, err error) {
|
|
al, err = b.albumRepo.Get(id)
|
|
if err != nil {
|
|
err = fmt.Errorf("Error reading Album %s from DB: %v", id, err)
|
|
return
|
|
}
|
|
|
|
if mfs, err = b.mfileRepo.FindByAlbum(id); err != nil {
|
|
err = fmt.Errorf("Error reading %s's tracks from DB: %v", al.Name, err)
|
|
}
|
|
return
|
|
}
|