mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Album struct {
|
|
ID string `json:"id" orm:"column(id)"`
|
|
Name string `json:"name"`
|
|
CoverArtPath string `json:"coverArtPath"`
|
|
CoverArtId string `json:"coverArtId"`
|
|
ArtistID string `json:"artistId" orm:"pk;column(artist_id)"`
|
|
Artist string `json:"artist"`
|
|
AlbumArtistID string `json:"albumArtistId" orm:"pk;column(album_artist_id)"`
|
|
AlbumArtist string `json:"albumArtist"`
|
|
MaxYear int `json:"maxYear"`
|
|
MinYear int `json:"minYear"`
|
|
Compilation bool `json:"compilation"`
|
|
SongCount int `json:"songCount"`
|
|
Duration float32 `json:"duration"`
|
|
Genre string `json:"genre"`
|
|
FullText string `json:"fullText"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
|
|
// Annotations
|
|
PlayCount int `json:"playCount" orm:"-"`
|
|
PlayDate time.Time `json:"playDate" orm:"-"`
|
|
Rating int `json:"rating" orm:"-"`
|
|
Starred bool `json:"starred" orm:"-"`
|
|
StarredAt time.Time `json:"starredAt" 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(albumArtistId string) (Albums, error)
|
|
GetAll(...QueryOptions) (Albums, 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
|
|
AnnotatedRepository
|
|
}
|