mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
fix: check if album is starred before adding the starred date in the response. also return "starred" in search responses
This commit is contained in:
parent
e032bfcf6b
commit
33ede13eef
5 changed files with 16 additions and 7 deletions
|
@ -165,10 +165,13 @@ func (b *browser) buildAlbumDir(al *model.Album, tracks model.MediaFiles) *Direc
|
||||||
Genre: al.Genre,
|
Genre: al.Genre,
|
||||||
CoverArt: al.CoverArtId,
|
CoverArt: al.CoverArtId,
|
||||||
PlayCount: int32(al.PlayCount),
|
PlayCount: int32(al.PlayCount),
|
||||||
Starred: al.StarredAt,
|
|
||||||
UserRating: al.Rating,
|
UserRating: al.Rating,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if al.Starred {
|
||||||
|
dir.Starred = al.StarredAt
|
||||||
|
}
|
||||||
|
|
||||||
dir.Entries = FromMediaFiles(tracks)
|
dir.Entries = FromMediaFiles(tracks)
|
||||||
return dir
|
return dir
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,9 @@ func FromArtist(ar *model.Artist) Entry {
|
||||||
e.Title = ar.Name
|
e.Title = ar.Name
|
||||||
e.AlbumCount = ar.AlbumCount
|
e.AlbumCount = ar.AlbumCount
|
||||||
e.IsDir = true
|
e.IsDir = true
|
||||||
|
if ar.Starred {
|
||||||
e.Starred = ar.StarredAt
|
e.Starred = ar.StarredAt
|
||||||
|
}
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,7 +73,9 @@ func FromAlbum(al *model.Album) Entry {
|
||||||
e.ArtistId = al.ArtistID
|
e.ArtistId = al.ArtistID
|
||||||
e.Duration = int(al.Duration)
|
e.Duration = int(al.Duration)
|
||||||
e.SongCount = al.SongCount
|
e.SongCount = al.SongCount
|
||||||
|
if al.Starred {
|
||||||
e.Starred = al.StarredAt
|
e.Starred = al.StarredAt
|
||||||
|
}
|
||||||
e.PlayCount = int32(al.PlayCount)
|
e.PlayCount = int32(al.PlayCount)
|
||||||
e.UserRating = al.Rating
|
e.UserRating = al.Rating
|
||||||
return e
|
return e
|
||||||
|
@ -107,7 +111,9 @@ func FromMediaFile(mf *model.MediaFile) Entry {
|
||||||
e.ArtistId = mf.ArtistID
|
e.ArtistId = mf.ArtistID
|
||||||
e.Type = "music"
|
e.Type = "music"
|
||||||
e.PlayCount = int32(mf.PlayCount)
|
e.PlayCount = int32(mf.PlayCount)
|
||||||
|
if mf.Starred {
|
||||||
e.Starred = mf.StarredAt
|
e.Starred = mf.StarredAt
|
||||||
|
}
|
||||||
e.UserRating = mf.Rating
|
e.UserRating = mf.Rating
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@ func (r *albumRepository) Put(a *model.Album) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *albumRepository) selectAlbum(options ...model.QueryOptions) SelectBuilder {
|
func (r *albumRepository) selectAlbum(options ...model.QueryOptions) SelectBuilder {
|
||||||
return r.newSelectWithAnnotation("id", options...).Columns("*")
|
return r.newSelectWithAnnotation("album.id", options...).Columns("*")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *albumRepository) Get(id string) (*model.Album, error) {
|
func (r *albumRepository) Get(id string) (*model.Album, error) {
|
||||||
|
|
|
@ -29,7 +29,7 @@ func NewArtistRepository(ctx context.Context, o orm.Ormer) model.ArtistRepositor
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *artistRepository) selectArtist(options ...model.QueryOptions) SelectBuilder {
|
func (r *artistRepository) selectArtist(options ...model.QueryOptions) SelectBuilder {
|
||||||
return r.newSelectWithAnnotation("id", options...).Columns("*")
|
return r.newSelectWithAnnotation("artist.id", options...).Columns("*")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *artistRepository) CountAll(options ...model.QueryOptions) (int64, error) {
|
func (r *artistRepository) CountAll(options ...model.QueryOptions) (int64, error) {
|
||||||
|
|
|
@ -39,7 +39,7 @@ func (r sqlRepository) doSearch(q string, offset, size int, results interface{},
|
||||||
if len(q) < 2 {
|
if len(q) < 2 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
sq := Select("*").From(r.tableName)
|
sq := r.newSelectWithAnnotation(r.tableName + ".id").Columns("*")
|
||||||
sq = sq.Limit(uint64(size)).Offset(uint64(offset))
|
sq = sq.Limit(uint64(size)).Offset(uint64(offset))
|
||||||
if len(orderBys) > 0 {
|
if len(orderBys) > 0 {
|
||||||
sq = sq.OrderBy(orderBys...)
|
sq = sq.OrderBy(orderBys...)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue