mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +03:00
73 lines
1.2 KiB
Go
73 lines
1.2 KiB
Go
package engine
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/deluan/gosonic/domain"
|
|
)
|
|
|
|
type Entry struct {
|
|
Id string
|
|
Title string
|
|
IsDir bool
|
|
Parent string
|
|
Album string
|
|
Year int
|
|
Artist string
|
|
Genre string
|
|
CoverArt string
|
|
Starred time.Time
|
|
Track int
|
|
Duration int
|
|
Size string
|
|
Suffix string
|
|
BitRate int
|
|
ContentType string
|
|
}
|
|
|
|
var (
|
|
ErrDataNotFound = errors.New("Data Not Found")
|
|
)
|
|
|
|
func FromAlbum(al *domain.Album) Entry {
|
|
c := Entry{}
|
|
c.Id = al.Id
|
|
c.Title = al.Name
|
|
c.IsDir = true
|
|
c.Parent = al.ArtistId
|
|
c.Album = al.Name
|
|
c.Year = al.Year
|
|
c.Artist = al.AlbumArtist
|
|
c.Genre = al.Genre
|
|
c.CoverArt = al.CoverArtId
|
|
if al.Starred {
|
|
c.Starred = al.UpdatedAt
|
|
}
|
|
return c
|
|
}
|
|
|
|
func FromMediaFile(mf *domain.MediaFile) Entry {
|
|
c := Entry{}
|
|
c.Id = mf.Id
|
|
c.Title = mf.Title
|
|
c.IsDir = false
|
|
c.Parent = mf.AlbumId
|
|
c.Album = mf.Album
|
|
c.Year = mf.Year
|
|
c.Artist = mf.Artist
|
|
c.Genre = mf.Genre
|
|
c.Track = mf.TrackNumber
|
|
c.Duration = mf.Duration
|
|
c.Size = mf.Size
|
|
c.Suffix = mf.Suffix
|
|
c.BitRate = mf.BitRate
|
|
if mf.Starred {
|
|
c.Starred = mf.UpdatedAt
|
|
}
|
|
if mf.HasCoverArt {
|
|
c.CoverArt = mf.Id
|
|
}
|
|
c.ContentType = mf.ContentType()
|
|
return c
|
|
}
|