27 lines
609 B
Go
27 lines
609 B
Go
package amv
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/middleware"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Get a single AMV.
|
|
func Get(ctx aero.Context) error {
|
|
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)
|
|
}
|
|
|
|
customCtx := ctx.(*middleware.OpenGraphContext)
|
|
customCtx.OpenGraph = getOpenGraph(amv)
|
|
return ctx.HTML(components.AMVPage(amv, user))
|
|
}
|