31 lines
664 B
Go
Raw Normal View History

2017-10-20 14:52:07 +00:00
package anime
import (
"net/http"
"github.com/animenotifier/notify.moe/utils"
2017-10-20 14:52:07 +00:00
"github.com/animenotifier/notify.moe/components"
"github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2017-10-20 14:52:07 +00:00
)
// Tracks ...
2019-06-01 04:55:49 +00:00
func Tracks(ctx aero.Context) error {
2017-10-20 14:52:07 +00:00
id := ctx.Get("id")
user := utils.GetUser(ctx)
2017-10-20 14:52:07 +00:00
anime, err := arn.GetAnime(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Anime not found", err)
}
2017-11-18 10:37:29 +00:00
tracks := arn.FilterSoundTracks(func(track *arn.SoundTrack) bool {
2017-10-20 14:52:07 +00:00
return !track.IsDraft && len(track.Media) > 0 && arn.Contains(track.Tags, "anime:"+anime.ID)
})
return ctx.HTML(components.AnimeTracks(anime, tracks, user, true))
2017-10-20 14:52:07 +00:00
}