25 lines
495 B
Go
Raw Normal View History

2018-04-14 21:23:00 +00:00
package amv
2018-04-14 21:51:18 +00:00
import (
"net/http"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
2018-04-14 21:23:00 +00:00
// Get a single AMV.
func Get(ctx *aero.Context) string {
2018-04-14 21:51:18 +00:00
id := ctx.Get("id")
amv, err := arn.GetAMV(id)
user := utils.GetUser(ctx)
if err != nil {
return ctx.Error(http.StatusNotFound, "AMV not found", err)
}
2018-04-16 14:11:32 +00:00
ctx.Data = getOpenGraph(ctx, amv)
2018-04-14 21:51:18 +00:00
return ctx.HTML(components.AMVPage(amv, user))
2018-04-14 21:23:00 +00:00
}