mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add local TopSongs
This commit is contained in:
parent
77a99a735b
commit
8f0d002922
2 changed files with 30 additions and 5 deletions
|
@ -48,7 +48,7 @@ const (
|
||||||
|
|
||||||
ServerReadHeaderTimeout = 3 * time.Second
|
ServerReadHeaderTimeout = 3 * time.Second
|
||||||
|
|
||||||
ArtistInfoTimeToLive = time.Second
|
ArtistInfoTimeToLive = time.Second // TODO Revert
|
||||||
//ArtistInfoTimeToLive = 24 * time.Hour
|
//ArtistInfoTimeToLive = 24 * time.Hour
|
||||||
|
|
||||||
I18nFolder = "i18n"
|
I18nFolder = "i18n"
|
||||||
|
|
|
@ -3,6 +3,7 @@ package agents
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
|
||||||
|
"github.com/Masterminds/squirrel"
|
||||||
"github.com/navidrome/navidrome/model"
|
"github.com/navidrome/navidrome/model"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -12,10 +13,12 @@ const (
|
||||||
localBiography = "Biography not available"
|
localBiography = "Biography not available"
|
||||||
)
|
)
|
||||||
|
|
||||||
type localAgent struct{}
|
type localAgent struct {
|
||||||
|
ds model.DataStore
|
||||||
|
}
|
||||||
|
|
||||||
func localsConstructor(_ model.DataStore) Interface {
|
func localsConstructor(ds model.DataStore) Interface {
|
||||||
return &localAgent{}
|
return &localAgent{ds}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *localAgent) AgentName() string {
|
func (p *localAgent) AgentName() string {
|
||||||
|
@ -27,7 +30,29 @@ func (p *localAgent) GetBiography(ctx context.Context, id, name, mbid string) (s
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *localAgent) GetTopSongs(ctx context.Context, id, artistName, mbid string, count int) ([]Song, error) {
|
func (p *localAgent) GetTopSongs(ctx context.Context, id, artistName, mbid string, count int) ([]Song, error) {
|
||||||
return nil, nil // TODO return 5-stars and liked songs sorted by playCount
|
top, err := p.ds.MediaFile(ctx).GetAll(model.QueryOptions{
|
||||||
|
Sort: "playCount",
|
||||||
|
Order: "desc",
|
||||||
|
Max: count,
|
||||||
|
Filters: squirrel.And{
|
||||||
|
squirrel.Eq{"artist_id": id},
|
||||||
|
squirrel.Or{
|
||||||
|
squirrel.Eq{"starred": true},
|
||||||
|
squirrel.Eq{"rating": 5},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var result []Song
|
||||||
|
for _, s := range top {
|
||||||
|
result = append(result, Song{
|
||||||
|
Name: s.Title,
|
||||||
|
MBID: s.MbzReleaseTrackID,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue