mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
package agents
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/Masterminds/squirrel"
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
const LocalAgentName = "local"
|
|
|
|
const (
|
|
localBiography = "Biography not available"
|
|
)
|
|
|
|
type localAgent struct {
|
|
ds model.DataStore
|
|
}
|
|
|
|
func localsConstructor(ds model.DataStore) Interface {
|
|
return &localAgent{ds}
|
|
}
|
|
|
|
func (p *localAgent) AgentName() string {
|
|
return LocalAgentName
|
|
}
|
|
|
|
func (p *localAgent) GetBiography(ctx context.Context, id, name, mbid string) (string, error) {
|
|
return localBiography, nil
|
|
}
|
|
|
|
func (p *localAgent) GetTopSongs(ctx context.Context, id, artistName, mbid string, count int) ([]Song, error) {
|
|
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() {
|
|
Register(LocalAgentName, localsConstructor)
|
|
}
|