23 lines
524 B
Go
Raw Normal View History

2018-03-13 01:49:54 +01:00
package soundtracks
import (
"github.com/aerogo/aero"
2019-06-03 18:32:43 +09:00
"github.com/animenotifier/notify.moe/arn"
2018-03-13 01:49:54 +01:00
)
// FilterByTag renders the best soundtracks filtered by tag.
2019-06-01 13:55:49 +09:00
func FilterByTag(ctx aero.Context) error {
2018-03-13 01:49:54 +01:00
tag := ctx.Get("tag")
// Fetch all eligible tracks
tracks := arn.FilterSoundTracks(func(track *arn.SoundTrack) bool {
2018-03-13 01:49:54 +01:00
return !track.IsDraft && len(track.Media) > 0 && track.HasTag(tag)
})
// Sort the tracks by number of likes
arn.SortSoundTracksPopularFirst(tracks)
2018-03-13 01:49:54 +01:00
// Render
return render(ctx, tracks)
2018-03-13 01:49:54 +01:00
}