Refactor page routes into multiple submodules
This commit is contained in:
parent
d331e15363
commit
2503d63b60
405
pages/index.go
405
pages/index.go
@ -1,79 +1,27 @@
|
||||
package pages
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
"github.com/animenotifier/notify.moe/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/admin"
|
||||
"github.com/animenotifier/notify.moe/pages/amv"
|
||||
"github.com/animenotifier/notify.moe/pages/amvs"
|
||||
"github.com/animenotifier/notify.moe/pages/anime"
|
||||
"github.com/animenotifier/notify.moe/pages/animeimport"
|
||||
"github.com/animenotifier/notify.moe/pages/animelist"
|
||||
"github.com/animenotifier/notify.moe/pages/animelistitem"
|
||||
"github.com/animenotifier/notify.moe/pages/apiview"
|
||||
"github.com/animenotifier/notify.moe/pages/apiview/apidocs"
|
||||
"github.com/animenotifier/notify.moe/pages/calendar"
|
||||
"github.com/animenotifier/notify.moe/pages/character"
|
||||
"github.com/animenotifier/notify.moe/pages/characters"
|
||||
"github.com/animenotifier/notify.moe/pages/charge"
|
||||
"github.com/animenotifier/notify.moe/pages/companies"
|
||||
"github.com/animenotifier/notify.moe/pages/company"
|
||||
"github.com/animenotifier/notify.moe/pages/compare"
|
||||
"github.com/animenotifier/notify.moe/pages/editanime"
|
||||
"github.com/animenotifier/notify.moe/pages/editlog"
|
||||
"github.com/animenotifier/notify.moe/pages/editor"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filteranime"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filtercompanies"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filtersoundtracks"
|
||||
"github.com/animenotifier/notify.moe/pages/embed"
|
||||
"github.com/animenotifier/notify.moe/pages/episode"
|
||||
"github.com/animenotifier/notify.moe/pages/explore"
|
||||
"github.com/animenotifier/notify.moe/pages/explore/explorecolor"
|
||||
"github.com/animenotifier/notify.moe/pages/explore/explorerelations"
|
||||
"github.com/animenotifier/notify.moe/pages/explore/halloffame"
|
||||
"github.com/animenotifier/notify.moe/pages/forum"
|
||||
"github.com/animenotifier/notify.moe/pages/genre"
|
||||
"github.com/animenotifier/notify.moe/pages/genres"
|
||||
"github.com/animenotifier/notify.moe/pages/group"
|
||||
"github.com/animenotifier/notify.moe/pages/groups"
|
||||
"github.com/animenotifier/notify.moe/pages/home"
|
||||
"github.com/animenotifier/notify.moe/pages/inventory"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport/listimportanilist"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport/listimportkitsu"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport/listimportmyanimelist"
|
||||
"github.com/animenotifier/notify.moe/pages/login"
|
||||
"github.com/animenotifier/notify.moe/pages/me"
|
||||
"github.com/animenotifier/notify.moe/pages/newthread"
|
||||
"github.com/animenotifier/notify.moe/pages/notifications"
|
||||
"github.com/animenotifier/notify.moe/pages/paypal"
|
||||
"github.com/animenotifier/notify.moe/pages/popular"
|
||||
"github.com/animenotifier/notify.moe/pages/post"
|
||||
"github.com/animenotifier/notify.moe/pages/profile"
|
||||
"github.com/animenotifier/notify.moe/pages/profile/profilecharacters"
|
||||
"github.com/animenotifier/notify.moe/pages/profile/profilequotes"
|
||||
"github.com/animenotifier/notify.moe/pages/profile/profiletracks"
|
||||
"github.com/animenotifier/notify.moe/pages/quote"
|
||||
"github.com/animenotifier/notify.moe/pages/quotes"
|
||||
"github.com/animenotifier/notify.moe/pages/recommended"
|
||||
"github.com/animenotifier/notify.moe/pages/search"
|
||||
"github.com/animenotifier/notify.moe/pages/search/multisearch"
|
||||
"github.com/animenotifier/notify.moe/pages/settings"
|
||||
"github.com/animenotifier/notify.moe/pages/shop"
|
||||
"github.com/animenotifier/notify.moe/pages/soundtrack"
|
||||
"github.com/animenotifier/notify.moe/pages/soundtracks"
|
||||
"github.com/animenotifier/notify.moe/pages/statistics"
|
||||
"github.com/animenotifier/notify.moe/pages/support"
|
||||
"github.com/animenotifier/notify.moe/pages/terms"
|
||||
"github.com/animenotifier/notify.moe/pages/thread"
|
||||
"github.com/animenotifier/notify.moe/pages/upload"
|
||||
"github.com/animenotifier/notify.moe/pages/user"
|
||||
"github.com/animenotifier/notify.moe/pages/users"
|
||||
"github.com/animenotifier/notify.moe/pages/index/amvroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/animeroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/apiroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/characterroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/companyroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/coreroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/exploreroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/forumroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/grouproutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/importroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/quoteroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/searchroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/settingsroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/shoproutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/soundtrackroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/staffroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/userlistroutes"
|
||||
"github.com/animenotifier/notify.moe/pages/index/userroutes"
|
||||
)
|
||||
|
||||
// Configure registers the page routes in the application.
|
||||
@ -83,306 +31,27 @@ func Configure(app *aero.Application) {
|
||||
// Set render function for the layout
|
||||
l.Render = fullpage.Render
|
||||
|
||||
// Main menu
|
||||
l.Page("/", home.Get)
|
||||
l.Page("/explore", explore.Filter)
|
||||
l.Page("/explore/anime/:year/:season/:status/:type", explore.Filter)
|
||||
l.Page("/explore/color/:color/anime", explorecolor.AnimeByAverageColor)
|
||||
l.Page("/explore/color/:color/anime/from/:index", explorecolor.AnimeByAverageColor)
|
||||
l.Page("/explore/sequels", explorerelations.Sequels)
|
||||
l.Page("/halloffame", halloffame.Get)
|
||||
l.Page("/login", login.Get)
|
||||
l.Page("/api", apiview.Get)
|
||||
|
||||
for name := range arn.DB.Types() {
|
||||
l.Page("/api/"+strings.ToLower(name), apidocs.ByType(name))
|
||||
}
|
||||
|
||||
// Forum
|
||||
l.Page("/forum", forum.Get)
|
||||
l.Page("/forum/:tag", forum.Get)
|
||||
l.Page("/thread/:id", thread.Get)
|
||||
l.Page("/post/:id", post.Get)
|
||||
l.Page("/new/thread", newthread.Get)
|
||||
|
||||
// User lists
|
||||
l.Page("/users", users.Active)
|
||||
l.Page("/users/map", users.Map)
|
||||
l.Page("/users/noavatar", users.ActiveNoAvatar)
|
||||
l.Page("/users/games/osu", users.Osu)
|
||||
l.Page("/users/games/overwatch", users.Overwatch)
|
||||
l.Page("/users/staff", users.Staff)
|
||||
l.Page("/users/pro", users.Pro)
|
||||
l.Page("/users/editors", users.Editors)
|
||||
|
||||
// Statistics
|
||||
l.Page("/statistics", statistics.Get)
|
||||
l.Page("/statistics/anime", statistics.Anime)
|
||||
|
||||
// Anime
|
||||
l.Page("/anime/:id", anime.Get)
|
||||
l.Page("/anime/:id/episodes", anime.Episodes)
|
||||
l.Page("/anime/:id/characters", anime.Characters)
|
||||
l.Page("/anime/:id/tracks", anime.Tracks)
|
||||
l.Page("/anime/:id/relations", anime.Relations)
|
||||
l.Page("/anime/:id/episode/:episode-number", episode.Get)
|
||||
|
||||
// Anime redirects
|
||||
l.Page("/kitsu/anime/:id", anime.RedirectByMapping("kitsu/anime"))
|
||||
l.Page("/mal/anime/:id", anime.RedirectByMapping("myanimelist/anime"))
|
||||
l.Page("/anilist/anime/:id", anime.RedirectByMapping("anilist/anime"))
|
||||
|
||||
// Edit anime
|
||||
l.Page("/anime/:id/edit", editanime.Main)
|
||||
l.Page("/anime/:id/edit/images", editanime.Images)
|
||||
l.Page("/anime/:id/edit/characters", editanime.Characters)
|
||||
l.Page("/anime/:id/edit/relations", editanime.Relations)
|
||||
l.Page("/anime/:id/edit/episodes", editanime.Episodes)
|
||||
l.Page("/anime/:id/edit/history", editanime.History)
|
||||
|
||||
// Characters
|
||||
l.Page("/characters", characters.Latest)
|
||||
l.Page("/characters/from/:index", characters.Latest)
|
||||
l.Page("/characters/best", characters.Best)
|
||||
l.Page("/characters/best/from/:index", characters.Best)
|
||||
|
||||
// Character
|
||||
l.Page("/character/:id", character.Get)
|
||||
l.Page("/character/:id/edit", character.Edit)
|
||||
l.Page("/character/:id/edit/images", character.EditImages)
|
||||
l.Page("/character/:id/history", character.History)
|
||||
|
||||
// AMVs
|
||||
l.Page("/amvs", amvs.Latest)
|
||||
l.Page("/amvs/from/:index", amvs.Latest)
|
||||
l.Page("/amvs/best", amvs.Best)
|
||||
l.Page("/amvs/best/from/:index", amvs.Best)
|
||||
|
||||
// AMV
|
||||
l.Page("/amv/:id", amv.Get)
|
||||
l.Page("/amv/:id/edit", amv.Edit)
|
||||
l.Page("/amv/:id/history", amv.History)
|
||||
|
||||
// Quotes
|
||||
l.Page("/quote/:id", quote.Get)
|
||||
l.Page("/quote/:id/edit", quote.Edit)
|
||||
l.Page("/quote/:id/history", quote.History)
|
||||
l.Page("/quotes", quotes.Latest)
|
||||
l.Page("/quotes/from/:index", quotes.Latest)
|
||||
l.Page("/quotes/best", quotes.Best)
|
||||
l.Page("/quotes/best/from/:index", quotes.Best)
|
||||
|
||||
// Calendar
|
||||
l.Page("/calendar", calendar.Get)
|
||||
|
||||
// Companies
|
||||
l.Page("/company/:id", company.Get)
|
||||
l.Page("/company/:id/edit", company.Edit)
|
||||
l.Page("/company/:id/history", company.History)
|
||||
l.Page("/companies", companies.Popular)
|
||||
l.Page("/companies/from/:index", companies.Popular)
|
||||
l.Page("/companies/all", companies.All)
|
||||
|
||||
// Settings
|
||||
l.Page("/settings", settings.Get(components.SettingsPersonal))
|
||||
l.Page("/settings/accounts", settings.Get(components.SettingsAccounts))
|
||||
l.Page("/settings/notifications", settings.Get(components.SettingsNotifications))
|
||||
l.Page("/settings/apps", settings.Get(components.SettingsApps))
|
||||
l.Page("/settings/formatting", settings.Get(components.SettingsFormatting))
|
||||
l.Page("/settings/pro", settings.Get(components.SettingsPro))
|
||||
|
||||
// Soundtracks
|
||||
l.Page("/soundtracks", soundtracks.Latest)
|
||||
l.Page("/soundtracks/from/:index", soundtracks.Latest)
|
||||
l.Page("/soundtracks/best", soundtracks.Best)
|
||||
l.Page("/soundtracks/best/from/:index", soundtracks.Best)
|
||||
l.Page("/soundtracks/tag/:tag", soundtracks.FilterByTag)
|
||||
l.Page("/soundtracks/tag/:tag/from/:index", soundtracks.FilterByTag)
|
||||
l.Page("/soundtrack/:id", soundtrack.Get)
|
||||
l.Page("/soundtrack/:id/lyrics", soundtrack.Lyrics)
|
||||
l.Page("/soundtrack/:id/edit", soundtrack.Edit)
|
||||
l.Page("/soundtrack/:id/history", soundtrack.History)
|
||||
|
||||
// Groups
|
||||
l.Page("/groups", groups.Get)
|
||||
l.Page("/group/:id", group.Get)
|
||||
l.Page("/group/:id/edit", group.Edit)
|
||||
l.Page("/group/:id/forum", group.Forum)
|
||||
|
||||
// Notifications
|
||||
l.Page("/notifications", notifications.ByUser)
|
||||
l.Page("/notifications/all", notifications.All)
|
||||
|
||||
// User profiles
|
||||
l.Page("/user", user.Get)
|
||||
l.Page("/user/:nick", profile.Get)
|
||||
l.Page("/user/:nick/characters/liked", profilecharacters.Liked)
|
||||
l.Page("/user/:nick/forum/threads", profile.GetThreadsByUser)
|
||||
l.Page("/user/:nick/forum/posts", profile.GetPostsByUser)
|
||||
l.Page("/user/:nick/soundtracks/added", profiletracks.Added)
|
||||
l.Page("/user/:nick/soundtracks/added/from/:index", profiletracks.Added)
|
||||
l.Page("/user/:nick/soundtracks/liked", profiletracks.Liked)
|
||||
l.Page("/user/:nick/soundtracks/liked/from/:index", profiletracks.Liked)
|
||||
l.Page("/user/:nick/quotes/added", profilequotes.Added)
|
||||
l.Page("/user/:nick/quotes/added/from/:index", profilequotes.Added)
|
||||
l.Page("/user/:nick/quotes/liked", profilequotes.Liked)
|
||||
l.Page("/user/:nick/quotes/liked/from/:index", profilequotes.Liked)
|
||||
l.Page("/user/:nick/stats", profile.GetStatsByUser)
|
||||
l.Page("/user/:nick/followers", profile.GetFollowers)
|
||||
l.Page("/user/:nick/animelist/anime/:id", animelistitem.Get)
|
||||
l.Page("/user/:nick/recommended/anime", recommended.Anime)
|
||||
l.Page("/user/:nick/notifications", notifications.ByUser)
|
||||
l.Page("/user/:nick/edit", user.Edit)
|
||||
|
||||
// Anime list
|
||||
l.Page("/user/:nick/animelist/watching", animelist.FilterByStatus(arn.AnimeListStatusWatching))
|
||||
l.Page("/user/:nick/animelist/completed", animelist.FilterByStatus(arn.AnimeListStatusCompleted))
|
||||
l.Page("/user/:nick/animelist/planned", animelist.FilterByStatus(arn.AnimeListStatusPlanned))
|
||||
l.Page("/user/:nick/animelist/hold", animelist.FilterByStatus(arn.AnimeListStatusHold))
|
||||
l.Page("/user/:nick/animelist/dropped", animelist.FilterByStatus(arn.AnimeListStatusDropped))
|
||||
|
||||
l.Page("/user/:nick/animelist/watching/from/:index", animelist.FilterByStatus(arn.AnimeListStatusWatching))
|
||||
l.Page("/user/:nick/animelist/completed/from/:index", animelist.FilterByStatus(arn.AnimeListStatusCompleted))
|
||||
l.Page("/user/:nick/animelist/planned/from/:index", animelist.FilterByStatus(arn.AnimeListStatusPlanned))
|
||||
l.Page("/user/:nick/animelist/hold/from/:index", animelist.FilterByStatus(arn.AnimeListStatusHold))
|
||||
l.Page("/user/:nick/animelist/dropped/from/:index", animelist.FilterByStatus(arn.AnimeListStatusDropped))
|
||||
|
||||
l.Page("/animelist/watching", animelist.Redirect)
|
||||
l.Page("/animelist/completed", animelist.Redirect)
|
||||
l.Page("/animelist/planned", animelist.Redirect)
|
||||
l.Page("/animelist/hold", animelist.Redirect)
|
||||
l.Page("/animelist/dropped", animelist.Redirect)
|
||||
|
||||
// Compare
|
||||
l.Page("/compare/animelist/:nick-1/:nick-2", compare.AnimeList)
|
||||
|
||||
// Search
|
||||
l.Page("/search/*term", search.Get)
|
||||
l.Page("/empty-search", search.GetEmptySearch)
|
||||
l.Page("/anime-search/*term", search.Anime)
|
||||
l.Page("/character-search/*term", search.Characters)
|
||||
l.Page("/forum-search/*term", search.Forum)
|
||||
l.Page("/soundtrack-search/*term", search.SoundTracks)
|
||||
l.Page("/user-search/*term", search.Users)
|
||||
l.Page("/company-search/*term", search.Companies)
|
||||
l.Page("/multisearch/anime", multisearch.Anime)
|
||||
|
||||
// Shop
|
||||
// Shop
|
||||
l.Page("/support", support.Get)
|
||||
l.Page("/shop", shop.Get)
|
||||
l.Page("/inventory", inventory.Get)
|
||||
l.Page("/charge", charge.Get)
|
||||
l.Page("/shop/history", shop.PurchaseHistory)
|
||||
app.Post("/api/shop/buy/:item/:quantity", shop.BuyItem)
|
||||
|
||||
// Import anime
|
||||
app.Post("/api/import/kitsu/anime/:id", animeimport.Kitsu)
|
||||
app.Post("/api/delete/kitsu/anime/:id", animeimport.DeleteKitsu)
|
||||
|
||||
// Upload
|
||||
app.Post("/api/upload/avatar", upload.Avatar)
|
||||
app.Post("/api/upload/cover", upload.Cover)
|
||||
app.Post("/api/upload/anime/:id/image", upload.AnimeImage)
|
||||
app.Post("/api/upload/character/:id/image", upload.CharacterImage)
|
||||
app.Post("/api/upload/amv/:id/file", upload.AMVFile)
|
||||
|
||||
// Admin
|
||||
l.Page("/admin", admin.Get)
|
||||
l.Page("/admin/webdev", admin.WebDev)
|
||||
l.Page("/admin/registrations", admin.UserRegistrations)
|
||||
l.Page("/admin/errors/client", admin.ClientErrors)
|
||||
l.Page("/admin/purchases", admin.PurchaseHistory)
|
||||
|
||||
// Editor
|
||||
l.Page("/editor", editor.Get)
|
||||
|
||||
// Editor links can be filtered by year, status and type
|
||||
editorFilterable := func(route string, handler func(ctx *aero.Context) string) {
|
||||
l.Page(route+"/:year/:season/:status/:type", handler)
|
||||
}
|
||||
|
||||
// Editor - Anime
|
||||
editorFilterable("/editor/anime/mapping/shoboi", filteranime.Shoboi)
|
||||
editorFilterable("/editor/anime/mapping/anilist", filteranime.AniList)
|
||||
editorFilterable("/editor/anime/mapping/mal", filteranime.MAL)
|
||||
editorFilterable("/editor/anime/mapping/duplicate", filteranime.DuplicateMappings)
|
||||
|
||||
editorFilterable("/editor/anime/image/lowres", filteranime.LowResolutionAnimeImages)
|
||||
editorFilterable("/editor/anime/image/ultralowres", filteranime.UltraLowResolutionAnimeImages)
|
||||
|
||||
editorFilterable("/editor/anime/companies/studios", filteranime.Studios)
|
||||
editorFilterable("/editor/anime/companies/producers", filteranime.Producers)
|
||||
editorFilterable("/editor/anime/companies/licensors", filteranime.Licensors)
|
||||
|
||||
editorFilterable("/editor/anime/connections/relations", filteranime.Relations)
|
||||
editorFilterable("/editor/anime/connections/characters", filteranime.Characters)
|
||||
|
||||
editorFilterable("/editor/anime/details/synopsis", filteranime.Synopsis)
|
||||
editorFilterable("/editor/anime/details/genres", filteranime.Genres)
|
||||
editorFilterable("/editor/anime/details/trailers", filteranime.Trailers)
|
||||
editorFilterable("/editor/anime/details/startdate", filteranime.StartDate)
|
||||
editorFilterable("/editor/anime/details/episodelength", filteranime.EpisodeLength)
|
||||
editorFilterable("/editor/anime/details/source", filteranime.Source)
|
||||
|
||||
editorFilterable("/editor/anime/all", filteranime.All)
|
||||
|
||||
// Editor - MALdiff
|
||||
editorFilterable("/editor/mal/diff/anime", editor.CompareMAL)
|
||||
|
||||
// Editor - Kitsu
|
||||
l.Page("/editor/kitsu/new/anime", editor.NewKitsuAnime)
|
||||
|
||||
// Editor - Companies
|
||||
l.Page("/editor/companies/description", filtercompanies.NoDescription)
|
||||
|
||||
// Editor - Soundtracks
|
||||
l.Page("/editor/soundtracks/links", filtersoundtracks.Links)
|
||||
l.Page("/editor/soundtracks/lyrics/missing", filtersoundtracks.MissingLyrics)
|
||||
l.Page("/editor/soundtracks/lyrics/unaligned", filtersoundtracks.UnalignedLyrics)
|
||||
l.Page("/editor/soundtracks/tags", filtersoundtracks.Tags)
|
||||
l.Page("/editor/soundtracks/file", filtersoundtracks.File)
|
||||
|
||||
// Log
|
||||
l.Page("/log", editlog.Get)
|
||||
l.Page("/log/from/:index", editlog.Get)
|
||||
l.Page("/user/:nick/log", editlog.Get)
|
||||
l.Page("/user/:nick/log/from/:index", editlog.Get)
|
||||
// Register the routes
|
||||
coreroutes.Register(l)
|
||||
userroutes.Register(l)
|
||||
characterroutes.Register(l)
|
||||
exploreroutes.Register(l)
|
||||
amvroutes.Register(l)
|
||||
forumroutes.Register(l)
|
||||
animeroutes.Register(l)
|
||||
userlistroutes.Register(l)
|
||||
quoteroutes.Register(l)
|
||||
companyroutes.Register(l)
|
||||
soundtrackroutes.Register(l)
|
||||
grouproutes.Register(l)
|
||||
searchroutes.Register(l)
|
||||
importroutes.Register(l)
|
||||
shoproutes.Register(l, app)
|
||||
settingsroutes.Register(l)
|
||||
staffroutes.Register(l)
|
||||
apiroutes.Register(l, app)
|
||||
|
||||
// Mixed
|
||||
// l.Page("/database", database.Get)
|
||||
// app.Get("/api/select/:data-type/where/:field/is/:field-value", database.Select)
|
||||
|
||||
// Import
|
||||
l.Page("/import", listimport.Get)
|
||||
l.Page("/import/anilist/animelist", listimportanilist.Preview)
|
||||
l.Page("/import/anilist/animelist/finish", listimportanilist.Finish)
|
||||
l.Page("/import/myanimelist/animelist", listimportmyanimelist.Preview)
|
||||
l.Page("/import/myanimelist/animelist/finish", listimportmyanimelist.Finish)
|
||||
l.Page("/import/kitsu/animelist", listimportkitsu.Preview)
|
||||
l.Page("/import/kitsu/animelist/finish", listimportkitsu.Finish)
|
||||
|
||||
// Browser extension
|
||||
l.Page("/extension/embed", embed.Get)
|
||||
|
||||
// API
|
||||
app.Get("/api/me", me.Get)
|
||||
app.Get("/api/popular/anime/titles/:count", popular.AnimeTitles)
|
||||
app.Get("/api/test/notification", notifications.Test)
|
||||
app.Get("/api/count/notifications/unseen", notifications.CountUnseen)
|
||||
app.Get("/api/mark/notifications/seen", notifications.MarkNotificationsAsSeen)
|
||||
app.Get("/api/random/soundtrack", soundtrack.Random)
|
||||
app.Get("/api/next/soundtrack", soundtrack.Next)
|
||||
|
||||
// Legal stuff
|
||||
l.Page("/terms", terms.Get)
|
||||
|
||||
// PayPal
|
||||
l.Page("/paypal/success", paypal.Success)
|
||||
l.Page("/paypal/cancel", paypal.Cancel)
|
||||
app.Post("/api/paypal/payment/create", paypal.CreatePayment)
|
||||
|
||||
// Genres
|
||||
l.Page("/genres", genres.Get)
|
||||
l.Page("/genre/:name", genre.Get)
|
||||
}
|
||||
|
21
pages/index/amvroutes/amvroutes.go
Normal file
21
pages/index/amvroutes/amvroutes.go
Normal file
@ -0,0 +1,21 @@
|
||||
package amvroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/amv"
|
||||
"github.com/animenotifier/notify.moe/pages/amvs"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// AMV
|
||||
l.Page("/amv/:id", amv.Get)
|
||||
l.Page("/amv/:id/edit", amv.Edit)
|
||||
l.Page("/amv/:id/history", amv.History)
|
||||
|
||||
// AMVs
|
||||
l.Page("/amvs", amvs.Latest)
|
||||
l.Page("/amvs/from/:index", amvs.Latest)
|
||||
l.Page("/amvs/best", amvs.Best)
|
||||
l.Page("/amvs/best/from/:index", amvs.Best)
|
||||
}
|
38
pages/index/animeroutes/animeroutes.go
Normal file
38
pages/index/animeroutes/animeroutes.go
Normal file
@ -0,0 +1,38 @@
|
||||
package animeroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/anime"
|
||||
"github.com/animenotifier/notify.moe/pages/editanime"
|
||||
"github.com/animenotifier/notify.moe/pages/episode"
|
||||
"github.com/animenotifier/notify.moe/pages/genre"
|
||||
"github.com/animenotifier/notify.moe/pages/genres"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Anime
|
||||
l.Page("/anime/:id", anime.Get)
|
||||
l.Page("/anime/:id/episodes", anime.Episodes)
|
||||
l.Page("/anime/:id/characters", anime.Characters)
|
||||
l.Page("/anime/:id/tracks", anime.Tracks)
|
||||
l.Page("/anime/:id/relations", anime.Relations)
|
||||
l.Page("/anime/:id/episode/:episode-number", episode.Get)
|
||||
|
||||
// Anime redirects
|
||||
l.Page("/kitsu/anime/:id", anime.RedirectByMapping("kitsu/anime"))
|
||||
l.Page("/mal/anime/:id", anime.RedirectByMapping("myanimelist/anime"))
|
||||
l.Page("/anilist/anime/:id", anime.RedirectByMapping("anilist/anime"))
|
||||
|
||||
// Edit anime
|
||||
l.Page("/anime/:id/edit", editanime.Main)
|
||||
l.Page("/anime/:id/edit/images", editanime.Images)
|
||||
l.Page("/anime/:id/edit/characters", editanime.Characters)
|
||||
l.Page("/anime/:id/edit/relations", editanime.Relations)
|
||||
l.Page("/anime/:id/edit/episodes", editanime.Episodes)
|
||||
l.Page("/anime/:id/edit/history", editanime.History)
|
||||
|
||||
// Genres
|
||||
l.Page("/genres", genres.Get)
|
||||
l.Page("/genre/:name", genre.Get)
|
||||
}
|
48
pages/index/apiroutes/apiroutes.go
Normal file
48
pages/index/apiroutes/apiroutes.go
Normal file
@ -0,0 +1,48 @@
|
||||
package apiroutes
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/pages/animeimport"
|
||||
"github.com/animenotifier/notify.moe/pages/apiview"
|
||||
"github.com/animenotifier/notify.moe/pages/apiview/apidocs"
|
||||
"github.com/animenotifier/notify.moe/pages/me"
|
||||
"github.com/animenotifier/notify.moe/pages/notifications"
|
||||
"github.com/animenotifier/notify.moe/pages/popular"
|
||||
"github.com/animenotifier/notify.moe/pages/soundtrack"
|
||||
"github.com/animenotifier/notify.moe/pages/upload"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout, app *aero.Application) {
|
||||
// API pages
|
||||
l.Page("/api", apiview.Get)
|
||||
|
||||
for name := range arn.DB.Types() {
|
||||
l.Page("/api/"+strings.ToLower(name), apidocs.ByType(name))
|
||||
}
|
||||
|
||||
// API
|
||||
app.Get("/api/me", me.Get)
|
||||
app.Get("/api/popular/anime/titles/:count", popular.AnimeTitles)
|
||||
app.Get("/api/test/notification", notifications.Test)
|
||||
app.Get("/api/count/notifications/unseen", notifications.CountUnseen)
|
||||
app.Get("/api/mark/notifications/seen", notifications.MarkNotificationsAsSeen)
|
||||
app.Get("/api/random/soundtrack", soundtrack.Random)
|
||||
app.Get("/api/next/soundtrack", soundtrack.Next)
|
||||
|
||||
// Upload
|
||||
app.Post("/api/upload/avatar", upload.Avatar)
|
||||
app.Post("/api/upload/cover", upload.Cover)
|
||||
app.Post("/api/upload/anime/:id/image", upload.AnimeImage)
|
||||
app.Post("/api/upload/character/:id/image", upload.CharacterImage)
|
||||
app.Post("/api/upload/amv/:id/file", upload.AMVFile)
|
||||
|
||||
// Import anime
|
||||
app.Post("/api/import/kitsu/anime/:id", animeimport.Kitsu)
|
||||
app.Post("/api/delete/kitsu/anime/:id", animeimport.DeleteKitsu)
|
||||
}
|
22
pages/index/characterroutes/characterroutes.go
Normal file
22
pages/index/characterroutes/characterroutes.go
Normal file
@ -0,0 +1,22 @@
|
||||
package characterroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/character"
|
||||
"github.com/animenotifier/notify.moe/pages/characters"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Characters
|
||||
l.Page("/characters", characters.Latest)
|
||||
l.Page("/characters/from/:index", characters.Latest)
|
||||
l.Page("/characters/best", characters.Best)
|
||||
l.Page("/characters/best/from/:index", characters.Best)
|
||||
|
||||
// Character
|
||||
l.Page("/character/:id", character.Get)
|
||||
l.Page("/character/:id/edit", character.Edit)
|
||||
l.Page("/character/:id/edit/images", character.EditImages)
|
||||
l.Page("/character/:id/history", character.History)
|
||||
}
|
18
pages/index/companyroutes/companyroutes.go
Normal file
18
pages/index/companyroutes/companyroutes.go
Normal file
@ -0,0 +1,18 @@
|
||||
package companyroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/companies"
|
||||
"github.com/animenotifier/notify.moe/pages/company"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Companies
|
||||
l.Page("/company/:id", company.Get)
|
||||
l.Page("/company/:id/edit", company.Edit)
|
||||
l.Page("/company/:id/history", company.History)
|
||||
l.Page("/companies", companies.Popular)
|
||||
l.Page("/companies/from/:index", companies.Popular)
|
||||
l.Page("/companies/all", companies.All)
|
||||
}
|
33
pages/index/coreroutes/coreroutes.go
Normal file
33
pages/index/coreroutes/coreroutes.go
Normal file
@ -0,0 +1,33 @@
|
||||
package coreroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/calendar"
|
||||
"github.com/animenotifier/notify.moe/pages/embed"
|
||||
"github.com/animenotifier/notify.moe/pages/home"
|
||||
"github.com/animenotifier/notify.moe/pages/login"
|
||||
"github.com/animenotifier/notify.moe/pages/statistics"
|
||||
"github.com/animenotifier/notify.moe/pages/terms"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Front page
|
||||
l.Page("/", home.Get)
|
||||
|
||||
// Login
|
||||
l.Page("/login", login.Get)
|
||||
|
||||
// Calendar
|
||||
l.Page("/calendar", calendar.Get)
|
||||
|
||||
// Statistics
|
||||
l.Page("/statistics", statistics.Get)
|
||||
l.Page("/statistics/anime", statistics.Anime)
|
||||
|
||||
// Legal stuff
|
||||
l.Page("/terms", terms.Get)
|
||||
|
||||
// Browser extension
|
||||
l.Page("/extension/embed", embed.Get)
|
||||
}
|
20
pages/index/exploreroutes/exploreroutes.go
Normal file
20
pages/index/exploreroutes/exploreroutes.go
Normal file
@ -0,0 +1,20 @@
|
||||
package exploreroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/explore"
|
||||
"github.com/animenotifier/notify.moe/pages/explore/explorecolor"
|
||||
"github.com/animenotifier/notify.moe/pages/explore/explorerelations"
|
||||
"github.com/animenotifier/notify.moe/pages/explore/halloffame"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Explore
|
||||
l.Page("/explore", explore.Filter)
|
||||
l.Page("/explore/anime/:year/:season/:status/:type", explore.Filter)
|
||||
l.Page("/explore/color/:color/anime", explorecolor.AnimeByAverageColor)
|
||||
l.Page("/explore/color/:color/anime/from/:index", explorecolor.AnimeByAverageColor)
|
||||
l.Page("/explore/sequels", explorerelations.Sequels)
|
||||
l.Page("/halloffame", halloffame.Get)
|
||||
}
|
23
pages/index/forumroutes/forumroutes.go
Normal file
23
pages/index/forumroutes/forumroutes.go
Normal file
@ -0,0 +1,23 @@
|
||||
package forumroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/forum"
|
||||
"github.com/animenotifier/notify.moe/pages/newthread"
|
||||
"github.com/animenotifier/notify.moe/pages/post"
|
||||
"github.com/animenotifier/notify.moe/pages/thread"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Forum
|
||||
l.Page("/forum", forum.Get)
|
||||
l.Page("/forum/:tag", forum.Get)
|
||||
|
||||
// Thread
|
||||
l.Page("/thread/:id", thread.Get)
|
||||
l.Page("/new/thread", newthread.Get)
|
||||
|
||||
// Post
|
||||
l.Page("/post/:id", post.Get)
|
||||
}
|
16
pages/index/grouproutes/grouproutes.go
Normal file
16
pages/index/grouproutes/grouproutes.go
Normal file
@ -0,0 +1,16 @@
|
||||
package grouproutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/group"
|
||||
"github.com/animenotifier/notify.moe/pages/groups"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Groups
|
||||
l.Page("/groups", groups.Get)
|
||||
l.Page("/group/:id", group.Get)
|
||||
l.Page("/group/:id/edit", group.Edit)
|
||||
l.Page("/group/:id/forum", group.Forum)
|
||||
}
|
21
pages/index/importroutes/importroutes.go
Normal file
21
pages/index/importroutes/importroutes.go
Normal file
@ -0,0 +1,21 @@
|
||||
package importroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport/listimportanilist"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport/listimportkitsu"
|
||||
"github.com/animenotifier/notify.moe/pages/listimport/listimportmyanimelist"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Import
|
||||
l.Page("/import", listimport.Get)
|
||||
l.Page("/import/anilist/animelist", listimportanilist.Preview)
|
||||
l.Page("/import/anilist/animelist/finish", listimportanilist.Finish)
|
||||
l.Page("/import/myanimelist/animelist", listimportmyanimelist.Preview)
|
||||
l.Page("/import/myanimelist/animelist/finish", listimportmyanimelist.Finish)
|
||||
l.Page("/import/kitsu/animelist", listimportkitsu.Preview)
|
||||
l.Page("/import/kitsu/animelist/finish", listimportkitsu.Finish)
|
||||
}
|
19
pages/index/quoteroutes/quoteroutes.go
Normal file
19
pages/index/quoteroutes/quoteroutes.go
Normal file
@ -0,0 +1,19 @@
|
||||
package quoteroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/quote"
|
||||
"github.com/animenotifier/notify.moe/pages/quotes"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Quotes
|
||||
l.Page("/quote/:id", quote.Get)
|
||||
l.Page("/quote/:id/edit", quote.Edit)
|
||||
l.Page("/quote/:id/history", quote.History)
|
||||
l.Page("/quotes", quotes.Latest)
|
||||
l.Page("/quotes/from/:index", quotes.Latest)
|
||||
l.Page("/quotes/best", quotes.Best)
|
||||
l.Page("/quotes/best/from/:index", quotes.Best)
|
||||
}
|
23
pages/index/searchroutes/searchroutes.go
Normal file
23
pages/index/searchroutes/searchroutes.go
Normal file
@ -0,0 +1,23 @@
|
||||
package searchroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/search"
|
||||
"github.com/animenotifier/notify.moe/pages/search/multisearch"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Search
|
||||
l.Page("/search/*term", search.Get)
|
||||
l.Page("/empty-search", search.GetEmptySearch)
|
||||
l.Page("/anime-search/*term", search.Anime)
|
||||
l.Page("/character-search/*term", search.Characters)
|
||||
l.Page("/forum-search/*term", search.Forum)
|
||||
l.Page("/soundtrack-search/*term", search.SoundTracks)
|
||||
l.Page("/user-search/*term", search.Users)
|
||||
l.Page("/company-search/*term", search.Companies)
|
||||
|
||||
// Multi-search
|
||||
l.Page("/multisearch/anime", multisearch.Anime)
|
||||
}
|
18
pages/index/settingsroutes/settingsroutes.go
Normal file
18
pages/index/settingsroutes/settingsroutes.go
Normal file
@ -0,0 +1,18 @@
|
||||
package settingsroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
"github.com/animenotifier/notify.moe/pages/settings"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Settings
|
||||
l.Page("/settings", settings.Get(components.SettingsPersonal))
|
||||
l.Page("/settings/accounts", settings.Get(components.SettingsAccounts))
|
||||
l.Page("/settings/notifications", settings.Get(components.SettingsNotifications))
|
||||
l.Page("/settings/apps", settings.Get(components.SettingsApps))
|
||||
l.Page("/settings/formatting", settings.Get(components.SettingsFormatting))
|
||||
l.Page("/settings/pro", settings.Get(components.SettingsPro))
|
||||
}
|
31
pages/index/shoproutes/shoproutes.go
Normal file
31
pages/index/shoproutes/shoproutes.go
Normal file
@ -0,0 +1,31 @@
|
||||
package shoproutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/charge"
|
||||
"github.com/animenotifier/notify.moe/pages/inventory"
|
||||
"github.com/animenotifier/notify.moe/pages/paypal"
|
||||
"github.com/animenotifier/notify.moe/pages/shop"
|
||||
"github.com/animenotifier/notify.moe/pages/support"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout, app *aero.Application) {
|
||||
// Shop
|
||||
l.Page("/support", support.Get)
|
||||
l.Page("/shop", shop.Get)
|
||||
l.Page("/inventory", inventory.Get)
|
||||
l.Page("/charge", charge.Get)
|
||||
l.Page("/shop/history", shop.PurchaseHistory)
|
||||
|
||||
// PayPal
|
||||
l.Page("/paypal/success", paypal.Success)
|
||||
l.Page("/paypal/cancel", paypal.Cancel)
|
||||
|
||||
// API: Create payment
|
||||
app.Post("/api/paypal/payment/create", paypal.CreatePayment)
|
||||
|
||||
// API: Buy item
|
||||
app.Post("/api/shop/buy/:item/:quantity", shop.BuyItem)
|
||||
}
|
22
pages/index/soundtrackroutes/soundtrackroutes.go
Normal file
22
pages/index/soundtrackroutes/soundtrackroutes.go
Normal file
@ -0,0 +1,22 @@
|
||||
package soundtrackroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/soundtrack"
|
||||
"github.com/animenotifier/notify.moe/pages/soundtracks"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Soundtracks
|
||||
l.Page("/soundtracks", soundtracks.Latest)
|
||||
l.Page("/soundtracks/from/:index", soundtracks.Latest)
|
||||
l.Page("/soundtracks/best", soundtracks.Best)
|
||||
l.Page("/soundtracks/best/from/:index", soundtracks.Best)
|
||||
l.Page("/soundtracks/tag/:tag", soundtracks.FilterByTag)
|
||||
l.Page("/soundtracks/tag/:tag/from/:index", soundtracks.FilterByTag)
|
||||
l.Page("/soundtrack/:id", soundtrack.Get)
|
||||
l.Page("/soundtrack/:id/lyrics", soundtrack.Lyrics)
|
||||
l.Page("/soundtrack/:id/edit", soundtrack.Edit)
|
||||
l.Page("/soundtrack/:id/history", soundtrack.History)
|
||||
}
|
77
pages/index/staffroutes/staffroutes.go
Normal file
77
pages/index/staffroutes/staffroutes.go
Normal file
@ -0,0 +1,77 @@
|
||||
package staffroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/admin"
|
||||
"github.com/animenotifier/notify.moe/pages/editlog"
|
||||
"github.com/animenotifier/notify.moe/pages/editor"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filteranime"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filtercompanies"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filtersoundtracks"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// Editor
|
||||
l.Page("/editor", editor.Get)
|
||||
|
||||
// Editor links can be filtered by year, status and type
|
||||
editorFilterable := func(route string, handler func(ctx *aero.Context) string) {
|
||||
l.Page(route+"/:year/:season/:status/:type", handler)
|
||||
}
|
||||
|
||||
// Editor - Anime
|
||||
editorFilterable("/editor/anime/mapping/shoboi", filteranime.Shoboi)
|
||||
editorFilterable("/editor/anime/mapping/anilist", filteranime.AniList)
|
||||
editorFilterable("/editor/anime/mapping/mal", filteranime.MAL)
|
||||
editorFilterable("/editor/anime/mapping/duplicate", filteranime.DuplicateMappings)
|
||||
|
||||
editorFilterable("/editor/anime/image/lowres", filteranime.LowResolutionAnimeImages)
|
||||
editorFilterable("/editor/anime/image/ultralowres", filteranime.UltraLowResolutionAnimeImages)
|
||||
|
||||
editorFilterable("/editor/anime/companies/studios", filteranime.Studios)
|
||||
editorFilterable("/editor/anime/companies/producers", filteranime.Producers)
|
||||
editorFilterable("/editor/anime/companies/licensors", filteranime.Licensors)
|
||||
|
||||
editorFilterable("/editor/anime/connections/relations", filteranime.Relations)
|
||||
editorFilterable("/editor/anime/connections/characters", filteranime.Characters)
|
||||
|
||||
editorFilterable("/editor/anime/details/synopsis", filteranime.Synopsis)
|
||||
editorFilterable("/editor/anime/details/genres", filteranime.Genres)
|
||||
editorFilterable("/editor/anime/details/trailers", filteranime.Trailers)
|
||||
editorFilterable("/editor/anime/details/startdate", filteranime.StartDate)
|
||||
editorFilterable("/editor/anime/details/episodelength", filteranime.EpisodeLength)
|
||||
editorFilterable("/editor/anime/details/source", filteranime.Source)
|
||||
|
||||
editorFilterable("/editor/anime/all", filteranime.All)
|
||||
|
||||
// Editor - MALdiff
|
||||
editorFilterable("/editor/mal/diff/anime", editor.CompareMAL)
|
||||
|
||||
// Editor - Kitsu
|
||||
l.Page("/editor/kitsu/new/anime", editor.NewKitsuAnime)
|
||||
|
||||
// Editor - Companies
|
||||
l.Page("/editor/companies/description", filtercompanies.NoDescription)
|
||||
|
||||
// Editor - Soundtracks
|
||||
l.Page("/editor/soundtracks/links", filtersoundtracks.Links)
|
||||
l.Page("/editor/soundtracks/lyrics/missing", filtersoundtracks.MissingLyrics)
|
||||
l.Page("/editor/soundtracks/lyrics/unaligned", filtersoundtracks.UnalignedLyrics)
|
||||
l.Page("/editor/soundtracks/tags", filtersoundtracks.Tags)
|
||||
l.Page("/editor/soundtracks/file", filtersoundtracks.File)
|
||||
|
||||
// Log
|
||||
l.Page("/log", editlog.Get)
|
||||
l.Page("/log/from/:index", editlog.Get)
|
||||
l.Page("/user/:nick/log", editlog.Get)
|
||||
l.Page("/user/:nick/log/from/:index", editlog.Get)
|
||||
|
||||
// Admin
|
||||
l.Page("/admin", admin.Get)
|
||||
l.Page("/admin/webdev", admin.WebDev)
|
||||
l.Page("/admin/registrations", admin.UserRegistrations)
|
||||
l.Page("/admin/errors/client", admin.ClientErrors)
|
||||
l.Page("/admin/purchases", admin.PurchaseHistory)
|
||||
}
|
19
pages/index/userlistroutes/userlistroutes.go
Normal file
19
pages/index/userlistroutes/userlistroutes.go
Normal file
@ -0,0 +1,19 @@
|
||||
package userlistroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/notify.moe/pages/users"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// User lists
|
||||
l.Page("/users", users.Active)
|
||||
l.Page("/users/map", users.Map)
|
||||
l.Page("/users/noavatar", users.ActiveNoAvatar)
|
||||
l.Page("/users/games/osu", users.Osu)
|
||||
l.Page("/users/games/overwatch", users.Overwatch)
|
||||
l.Page("/users/staff", users.Staff)
|
||||
l.Page("/users/pro", users.Pro)
|
||||
l.Page("/users/editors", users.Editors)
|
||||
}
|
67
pages/index/userroutes/userroutes.go
Normal file
67
pages/index/userroutes/userroutes.go
Normal file
@ -0,0 +1,67 @@
|
||||
package userroutes
|
||||
|
||||
import (
|
||||
"github.com/aerogo/layout"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/pages/animelist"
|
||||
"github.com/animenotifier/notify.moe/pages/animelistitem"
|
||||
"github.com/animenotifier/notify.moe/pages/compare"
|
||||
"github.com/animenotifier/notify.moe/pages/notifications"
|
||||
"github.com/animenotifier/notify.moe/pages/profile"
|
||||
"github.com/animenotifier/notify.moe/pages/profile/profilecharacters"
|
||||
"github.com/animenotifier/notify.moe/pages/profile/profilequotes"
|
||||
"github.com/animenotifier/notify.moe/pages/profile/profiletracks"
|
||||
"github.com/animenotifier/notify.moe/pages/recommended"
|
||||
"github.com/animenotifier/notify.moe/pages/user"
|
||||
)
|
||||
|
||||
// Register registers the page routes.
|
||||
func Register(l *layout.Layout) {
|
||||
// User profiles
|
||||
l.Page("/user", user.Get)
|
||||
l.Page("/user/:nick", profile.Get)
|
||||
l.Page("/user/:nick/characters/liked", profilecharacters.Liked)
|
||||
l.Page("/user/:nick/forum/threads", profile.GetThreadsByUser)
|
||||
l.Page("/user/:nick/forum/posts", profile.GetPostsByUser)
|
||||
l.Page("/user/:nick/soundtracks/added", profiletracks.Added)
|
||||
l.Page("/user/:nick/soundtracks/added/from/:index", profiletracks.Added)
|
||||
l.Page("/user/:nick/soundtracks/liked", profiletracks.Liked)
|
||||
l.Page("/user/:nick/soundtracks/liked/from/:index", profiletracks.Liked)
|
||||
l.Page("/user/:nick/quotes/added", profilequotes.Added)
|
||||
l.Page("/user/:nick/quotes/added/from/:index", profilequotes.Added)
|
||||
l.Page("/user/:nick/quotes/liked", profilequotes.Liked)
|
||||
l.Page("/user/:nick/quotes/liked/from/:index", profilequotes.Liked)
|
||||
l.Page("/user/:nick/stats", profile.GetStatsByUser)
|
||||
l.Page("/user/:nick/followers", profile.GetFollowers)
|
||||
l.Page("/user/:nick/animelist/anime/:id", animelistitem.Get)
|
||||
l.Page("/user/:nick/recommended/anime", recommended.Anime)
|
||||
l.Page("/user/:nick/notifications", notifications.ByUser)
|
||||
l.Page("/user/:nick/edit", user.Edit)
|
||||
|
||||
// Anime list
|
||||
l.Page("/user/:nick/animelist/watching", animelist.FilterByStatus(arn.AnimeListStatusWatching))
|
||||
l.Page("/user/:nick/animelist/completed", animelist.FilterByStatus(arn.AnimeListStatusCompleted))
|
||||
l.Page("/user/:nick/animelist/planned", animelist.FilterByStatus(arn.AnimeListStatusPlanned))
|
||||
l.Page("/user/:nick/animelist/hold", animelist.FilterByStatus(arn.AnimeListStatusHold))
|
||||
l.Page("/user/:nick/animelist/dropped", animelist.FilterByStatus(arn.AnimeListStatusDropped))
|
||||
|
||||
l.Page("/user/:nick/animelist/watching/from/:index", animelist.FilterByStatus(arn.AnimeListStatusWatching))
|
||||
l.Page("/user/:nick/animelist/completed/from/:index", animelist.FilterByStatus(arn.AnimeListStatusCompleted))
|
||||
l.Page("/user/:nick/animelist/planned/from/:index", animelist.FilterByStatus(arn.AnimeListStatusPlanned))
|
||||
l.Page("/user/:nick/animelist/hold/from/:index", animelist.FilterByStatus(arn.AnimeListStatusHold))
|
||||
l.Page("/user/:nick/animelist/dropped/from/:index", animelist.FilterByStatus(arn.AnimeListStatusDropped))
|
||||
|
||||
// Redirects
|
||||
l.Page("/animelist/watching", animelist.Redirect)
|
||||
l.Page("/animelist/completed", animelist.Redirect)
|
||||
l.Page("/animelist/planned", animelist.Redirect)
|
||||
l.Page("/animelist/hold", animelist.Redirect)
|
||||
l.Page("/animelist/dropped", animelist.Redirect)
|
||||
|
||||
// Compare
|
||||
l.Page("/compare/animelist/:nick-1/:nick-2", compare.AnimeList)
|
||||
|
||||
// Notifications
|
||||
l.Page("/notifications", notifications.ByUser)
|
||||
l.Page("/notifications/all", notifications.All)
|
||||
}
|
@ -14,6 +14,8 @@ func Get(ctx *aero.Context) string {
|
||||
id := ctx.Get("id")
|
||||
user := utils.GetUser(ctx)
|
||||
post, err := arn.GetPost(id)
|
||||
// a := 0
|
||||
// a++
|
||||
|
||||
if err != nil {
|
||||
return ctx.Error(http.StatusNotFound, "Post not found", err)
|
||||
|
@ -364,7 +364,8 @@ var routeTests = map[string][]string{
|
||||
"/user/:nick/log/from/:index": nil,
|
||||
"/editor/soundtracks/file": nil,
|
||||
"/editor/soundtracks/links": nil,
|
||||
"/editor/soundtracks/lyrics": nil,
|
||||
"/editor/soundtracks/lyrics/missing": nil,
|
||||
"/editor/soundtracks/lyrics/unaligned": nil,
|
||||
"/editor/soundtracks/tags": nil,
|
||||
"/api/test/notification": nil,
|
||||
"/api/paypal/payment/create": nil,
|
||||
|
Loading…
Reference in New Issue
Block a user