26 lines
508 B
Go
Raw Normal View History

2017-10-20 16:52:07 +02:00
package anime
import (
"net/http"
"github.com/animenotifier/notify.moe/components"
2017-12-03 17:21:58 +01:00
"github.com/animenotifier/notify.moe/utils"
2017-10-20 16:52:07 +02:00
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
)
// Episodes ...
func Episodes(ctx *aero.Context) string {
2017-12-03 17:21:58 +01:00
user := utils.GetUser(ctx)
2017-10-20 16:52:07 +02:00
id := ctx.Get("id")
anime, err := arn.GetAnime(id)
if err != nil {
return ctx.Error(http.StatusNotFound, "Anime not found", err)
}
return ctx.HTML(components.AnimeEpisodes(anime, anime.Episodes().Items, user, true))
2017-10-20 16:52:07 +02:00
}