mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Album struct {
|
|
ID string `json:"id" orm:"column(id)"`
|
|
Name string `json:"name"`
|
|
ArtistID string `json:"artistId" orm:"pk;column(artist_id)"`
|
|
CoverArtPath string `json:"-"`
|
|
CoverArtId string `json:"-"`
|
|
Artist string `json:"artist"`
|
|
AlbumArtist string `json:"albumArtist"`
|
|
Year int `json:"year"`
|
|
Compilation bool `json:"compilation"`
|
|
SongCount int `json:"songCount"`
|
|
Duration int `json:"duration"`
|
|
Genre string `json:"genre"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
|
|
// Annotations
|
|
PlayCount int `orm:"-"`
|
|
PlayDate time.Time `orm:"-"`
|
|
Rating int `orm:"-"`
|
|
Starred bool `orm:"-"`
|
|
StarredAt time.Time `orm:"-"`
|
|
}
|
|
|
|
type Albums []Album
|
|
|
|
type AlbumRepository interface {
|
|
CountAll(...QueryOptions) (int64, error)
|
|
Exists(id string) (bool, error)
|
|
Put(m *Album) error
|
|
Get(id string) (*Album, error)
|
|
FindByArtist(artistId string) (Albums, error)
|
|
GetAll(...QueryOptions) (Albums, error)
|
|
GetMap(ids []string) (map[string]Album, error)
|
|
GetRandom(...QueryOptions) (Albums, error)
|
|
GetStarred(options ...QueryOptions) (Albums, error)
|
|
Search(q string, offset int, size int) (Albums, error)
|
|
Refresh(ids ...string) error
|
|
PurgeEmpty() error
|
|
}
|