mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
* lastfm album.getInfo, getAlbuminfo(2) endpoints * ... for description and reduce not found log level * address first comments * return all images * Update migration timestamp * Handle a few edge cases * Add CoverArtPriority option to retrieve albumart from external sources * Make agents methods more descriptive * Use Last.fm name consistently Co-authored-by: Deluan <deluan@navidrome.org>
52 lines
985 B
Go
52 lines
985 B
Go
package agents
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/Masterminds/squirrel"
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
const LocalAgentName = "local"
|
|
|
|
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) GetArtistTopSongs(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)
|
|
}
|