2017-10-20 14:52:07 +00:00
|
|
|
package anime
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-04-09 16:17:21 +00:00
|
|
|
"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
|
|
|
)
|
|
|
|
|
|
|
|
// Characters ...
|
2019-06-01 04:55:49 +00:00
|
|
|
func Characters(ctx aero.Context) error {
|
2017-10-20 14:52:07 +00:00
|
|
|
id := ctx.Get("id")
|
2018-04-09 16:17:21 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2018-04-09 16:17:21 +00:00
|
|
|
return ctx.HTML(components.AnimeCharacters(anime, user, true))
|
2017-10-20 14:52:07 +00:00
|
|
|
}
|