Added characters and relations editing
This commit is contained in:
parent
cb9e277718
commit
e0dc3f2f93
@ -5,17 +5,18 @@ import (
|
|||||||
|
|
||||||
"github.com/aerogo/aero"
|
"github.com/aerogo/aero"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
|
"github.com/animenotifier/notify.moe/components"
|
||||||
"github.com/animenotifier/notify.moe/utils"
|
"github.com/animenotifier/notify.moe/utils"
|
||||||
"github.com/animenotifier/notify.moe/utils/editform"
|
"github.com/animenotifier/notify.moe/utils/editform"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Get anime edit page.
|
// Main anime edit page.
|
||||||
func Get(ctx *aero.Context) string {
|
func Main(ctx *aero.Context) string {
|
||||||
id := ctx.Get("id")
|
id := ctx.Get("id")
|
||||||
user := utils.GetUser(ctx)
|
user := utils.GetUser(ctx)
|
||||||
|
|
||||||
if user == nil || (user.Role != "editor" && user.Role != "admin") {
|
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)
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit this anime", nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
anime, err := arn.GetAnime(id)
|
anime, err := arn.GetAnime(id)
|
||||||
@ -24,5 +25,53 @@ func Get(ctx *aero.Context) string {
|
|||||||
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
return ctx.Error(http.StatusNotFound, "Anime not found", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return ctx.HTML(editform.Render(anime, "Edit anime", user))
|
return ctx.HTML(components.EditAnimeTabs(anime) + editform.Render(anime, "Edit anime", user))
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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") {
|
||||||
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit", nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
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") {
|
||||||
|
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit", nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
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))
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,10 @@
|
|||||||
component EditAnime(anime *arn.Anime)
|
component EditAnimeTabs(anime *arn.Anime)
|
||||||
h1= anime.Title.Canonical
|
.tabs
|
||||||
|
a.tab.ajax(href=anime.Link())
|
||||||
.widget-form.mountable
|
Icon("tv")
|
||||||
.widget(data-api="/api/anime/" + anime.ID)
|
span Anime
|
||||||
h3.widget-title Mappings
|
|
||||||
InputText("Virtual:ShoboiID", anime.GetMapping("shoboi/anime"), "Shoboi TID", "TID on cal.syoboi.jp")
|
Tab("Edit anime", "pencil", anime.Link() + "/edit")
|
||||||
InputText("Virtual:AniListID", anime.GetMapping("anilist/anime"), "AniList ID", "ID on anilist.co")
|
Tab("Edit characters", "pencil", anime.Link() + "/edit/characters")
|
||||||
|
Tab("Edit relations", "pencil", anime.Link() + "/edit/relations")
|
||||||
.buttons
|
//- Tab("Edit episodes", "pencil", anime.Link() + "/edit/episodes")
|
||||||
a.button.ajax(href="/anime/" + anime.ID)
|
|
||||||
Icon("arrow-left")
|
|
||||||
span View anime
|
|
||||||
|
|
||||||
a.button(href="/api/anime/" + anime.ID, target="_blank")
|
|
||||||
Icon("search-plus")
|
|
||||||
span JSON API
|
|
@ -100,9 +100,14 @@ func Configure(app *aero.Application) {
|
|||||||
l.Page("/anime/:id/episodes", anime.Episodes)
|
l.Page("/anime/:id/episodes", anime.Episodes)
|
||||||
l.Page("/anime/:id/characters", anime.Characters)
|
l.Page("/anime/:id/characters", anime.Characters)
|
||||||
l.Page("/anime/:id/tracks", anime.Tracks)
|
l.Page("/anime/:id/tracks", anime.Tracks)
|
||||||
l.Page("/anime/:id/edit", editanime.Get)
|
|
||||||
l.Page("/anime/:id/episode/:episode-number", episode.Get)
|
l.Page("/anime/:id/episode/:episode-number", episode.Get)
|
||||||
|
|
||||||
|
// Edit anime
|
||||||
|
l.Page("/anime/:id/edit", editanime.Main)
|
||||||
|
l.Page("/anime/:id/edit/characters", editanime.Characters)
|
||||||
|
l.Page("/anime/:id/edit/relations", editanime.Relations)
|
||||||
|
// l.Page("/anime/:id/edit/episodes", editanime.Episodes)
|
||||||
|
|
||||||
// Characters
|
// Characters
|
||||||
l.Page("/character/:id", character.Get)
|
l.Page("/character/:id", character.Get)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user