2018-04-10 21:25:45 +02:00
|
|
|
package character
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/aerogo/aero"
|
2019-06-03 18:32:43 +09:00
|
|
|
"github.com/animenotifier/notify.moe/arn"
|
2018-04-10 21:25:45 +02:00
|
|
|
"github.com/animenotifier/notify.moe/components"
|
|
|
|
"github.com/animenotifier/notify.moe/utils/editform"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Edit character.
|
2019-06-01 13:55:49 +09:00
|
|
|
func Edit(ctx aero.Context) error {
|
2018-04-10 21:25:45 +02:00
|
|
|
id := ctx.Get("id")
|
|
|
|
character, err := arn.GetCharacter(id)
|
2019-11-17 16:59:34 +09:00
|
|
|
user := arn.GetUserFromContext(ctx)
|
2018-04-10 21:25:45 +02:00
|
|
|
|
|
|
|
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))
|
|
|
|
}
|
2018-04-22 15:24:17 +02:00
|
|
|
|
|
|
|
// EditImages renders the form to edit the character images.
|
2019-06-01 13:55:49 +09:00
|
|
|
func EditImages(ctx aero.Context) error {
|
2018-04-22 15:24:17 +02:00
|
|
|
id := ctx.Get("id")
|
|
|
|
character, err := arn.GetCharacter(id)
|
2019-11-17 16:59:34 +09:00
|
|
|
user := arn.GetUserFromContext(ctx)
|
2018-04-22 15:24:17 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Character not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.HTML(components.EditCharacterImages(character, user))
|
|
|
|
}
|