mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Match Top Songs by mbid, add indexes to media_file
This commit is contained in:
parent
3cf8b8e97d
commit
a45b5a037f
2 changed files with 48 additions and 11 deletions
|
@ -149,23 +149,33 @@ func (e *externalInfo) TopSongs(ctx context.Context, artist string, count int) (
|
|||
}
|
||||
var songs model.MediaFiles
|
||||
for _, t := range tracks {
|
||||
mfs, err := e.ds.MediaFile(ctx).GetAll(model.QueryOptions{
|
||||
Filters: squirrel.And{
|
||||
mf, err := e.findMatchingTrack(ctx, artist, t.Name, t.MBID)
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
songs = append(songs, *mf)
|
||||
}
|
||||
return songs, nil
|
||||
}
|
||||
|
||||
func (e *externalInfo) findMatchingTrack(ctx context.Context, artist, title, mbid string) (*model.MediaFile, error) {
|
||||
mfs, err := e.ds.MediaFile(ctx).GetAll(model.QueryOptions{
|
||||
Filters: squirrel.Or{
|
||||
squirrel.And{
|
||||
squirrel.Or{
|
||||
squirrel.Like{"artist": artist},
|
||||
squirrel.Like{"album_artist": artist},
|
||||
},
|
||||
squirrel.Like{"title": t.Name},
|
||||
squirrel.Like{"title": title},
|
||||
},
|
||||
Sort: "year",
|
||||
Order: "asc",
|
||||
})
|
||||
if err != nil || len(mfs) == 0 {
|
||||
continue
|
||||
}
|
||||
songs = append(songs, mfs[0])
|
||||
squirrel.Like{"mbz_track_id": mbid},
|
||||
},
|
||||
Sort: "mbz_track_id desc, year asc",
|
||||
})
|
||||
if err != nil || len(mfs) == 0 {
|
||||
return nil, model.ErrNotFound
|
||||
}
|
||||
return songs, nil
|
||||
return &mfs[0], nil
|
||||
}
|
||||
|
||||
func (e *externalInfo) ArtistInfo(ctx context.Context, id string) (*model.ArtistInfo, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue