38 lines
955 B
Go
38 lines
955 B
Go
package character
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
"github.com/animenotifier/notify.moe/utils/editform"
|
|
)
|
|
|
|
// Edit character.
|
|
func Edit(ctx *aero.Context) string {
|
|
id := ctx.Get("id")
|
|
character, err := arn.GetCharacter(id)
|
|
user := utils.GetUser(ctx)
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusNotFound, "Character not found", err)
|
|
}
|
|
|
|
return ctx.HTML(components.CharacterTabs(character, user) + editform.Render(character, "Edit character", user))
|
|
}
|
|
|
|
// EditImages renders the form to edit the character images.
|
|
func EditImages(ctx *aero.Context) string {
|
|
id := ctx.Get("id")
|
|
character, err := arn.GetCharacter(id)
|
|
user := utils.GetUser(ctx)
|
|
|
|
if err != nil {
|
|
return ctx.Error(http.StatusNotFound, "Character not found", err)
|
|
}
|
|
|
|
return ctx.HTML(components.EditCharacterImages(character, user))
|
|
}
|