27 lines
614 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"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2018-04-14 21:51:18 +00:00
"github.com/animenotifier/notify.moe/components"
2019-06-01 04:55:49 +00:00
"github.com/animenotifier/notify.moe/middleware"
2018-04-14 21:51:18 +00:00
"github.com/animenotifier/notify.moe/utils"
)
2018-04-14 21:23:00 +00:00
// Get a single AMV.
2019-06-01 04:55:49 +00:00
func Get(ctx aero.Context) error {
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)
}
2019-06-01 04:55:49 +00:00
customCtx := ctx.(*middleware.OpenGraphContext)
customCtx.OpenGraph = 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
}