29 lines
647 B
Go
29 lines
647 B
Go
package editanime
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Get anime edit page.
|
|
func Get(ctx *aero.Context) string {
|
|
id := ctx.Get("id")
|
|
user := utils.GetUser(ctx)
|
|
|
|
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
|
return ctx.Error(http.StatusBadRequest, "Not logged in or not auhorized to edit this anime", nil)
|
|
}
|
|
|
|
anime, err := arn.GetAnime(id)
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
|
}
|
|
|
|
return ctx.HTML(components.EditAnime(anime))
|
|
}
|