2017-06-28 15:55:08 +00:00
|
|
|
package editanime
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/aerogo/aero"
|
|
|
|
"github.com/animenotifier/arn"
|
2018-03-09 14:09:27 +00:00
|
|
|
"github.com/animenotifier/notify.moe/components"
|
2017-06-28 15:55:08 +00:00
|
|
|
"github.com/animenotifier/notify.moe/utils"
|
2017-11-27 18:57:58 +00:00
|
|
|
"github.com/animenotifier/notify.moe/utils/editform"
|
2017-06-28 15:55:08 +00:00
|
|
|
)
|
|
|
|
|
2018-03-09 14:09:27 +00:00
|
|
|
// Main anime edit page.
|
|
|
|
func Main(ctx *aero.Context) string {
|
2017-06-28 15:55:08 +00:00
|
|
|
id := ctx.Get("id")
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
2018-07-07 03:42:00 +00:00
|
|
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit this anime")
|
2017-06-28 15:55:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
anime, err := arn.GetAnime(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
|
|
|
}
|
|
|
|
|
2018-03-09 14:09:27 +00:00
|
|
|
return ctx.HTML(components.EditAnimeTabs(anime) + editform.Render(anime, "Edit anime", user))
|
|
|
|
}
|
|
|
|
|
2018-03-16 21:40:38 +00:00
|
|
|
// Images anime images edit page.
|
|
|
|
func Images(ctx *aero.Context) string {
|
|
|
|
id := ctx.Get("id")
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
2018-07-07 03:42:00 +00:00
|
|
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit this anime")
|
2018-03-16 21:40:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
anime, err := arn.GetAnime(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.HTML(components.EditAnimeImages(anime))
|
|
|
|
}
|
|
|
|
|
2018-03-09 14:09:27 +00:00
|
|
|
// Characters anime characters edit page.
|
|
|
|
func Characters(ctx *aero.Context) string {
|
|
|
|
id := ctx.Get("id")
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
2018-07-07 03:42:00 +00:00
|
|
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit")
|
2018-03-09 14:09:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
anime, err := arn.GetAnime(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
animeCharacters, err := arn.GetAnimeCharacters(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime characters not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.HTML(components.EditAnimeTabs(anime) + editform.Render(animeCharacters, "Edit anime characters", user))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relations anime relations edit page.
|
|
|
|
func Relations(ctx *aero.Context) string {
|
|
|
|
id := ctx.Get("id")
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
2018-07-07 03:42:00 +00:00
|
|
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit")
|
2018-03-09 14:09:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
anime, err := arn.GetAnime(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
animeRelations, err := arn.GetAnimeRelations(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime relations not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.HTML(components.EditAnimeTabs(anime) + editform.Render(animeRelations, "Edit anime relations", user))
|
2017-06-28 15:55:08 +00:00
|
|
|
}
|
2018-03-09 15:27:40 +00:00
|
|
|
|
|
|
|
// Episodes anime episodes edit page.
|
|
|
|
func Episodes(ctx *aero.Context) string {
|
|
|
|
id := ctx.Get("id")
|
|
|
|
user := utils.GetUser(ctx)
|
|
|
|
|
|
|
|
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
2018-07-07 03:42:00 +00:00
|
|
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit")
|
2018-03-09 15:27:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
anime, err := arn.GetAnime(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
animeEpisodes, err := arn.GetAnimeEpisodes(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ctx.Error(http.StatusNotFound, "Anime episodes not found", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.HTML(components.EditAnimeTabs(anime) + editform.Render(animeEpisodes, "Edit anime episodes", user))
|
|
|
|
}
|