package pages

import (
	"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/anime"
	"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/character"
	"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/database"
	"github.com/animenotifier/notify.moe/pages/editanime"
	"github.com/animenotifier/notify.moe/pages/editor"
	"github.com/animenotifier/notify.moe/pages/embed"
	"github.com/animenotifier/notify.moe/pages/explore"
	"github.com/animenotifier/notify.moe/pages/forum"
	"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/posts"
	"github.com/animenotifier/notify.moe/pages/profile"
	"github.com/animenotifier/notify.moe/pages/search"
	"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/terms"
	"github.com/animenotifier/notify.moe/pages/threads"
	"github.com/animenotifier/notify.moe/pages/user"
	"github.com/animenotifier/notify.moe/pages/users"
)

// Configure registers the page routes in the application.
func Configure(app *aero.Application) {
	l := layout.New(app)

	// Set render function for the layout
	l.Render = fullpage.Render

	// Main menu
	l.Page("/", home.Get)
	l.Page("/explore", explore.Get)
	l.Page("/explore/anime/:year/:status/:type", explore.Filter)
	l.Page("/login", login.Get)
	l.Page("/api", apiview.Get)
	// l.Ajax("/dashboard", dashboard.Get)
	// l.Ajax("/best/anime", best.Get)
	// l.Ajax("/artworks", artworks.Get)
	// l.Ajax("/amvs", amvs.Get)

	// Forum
	l.Page("/forum", forum.Get)
	l.Page("/forum/:tag", forum.Get)
	l.Page("/thread/:id", threads.Get)
	l.Page("/post/:id", posts.Get)
	l.Page("/new/thread", newthread.Get)

	// User lists
	l.Page("/users", users.Active)
	l.Page("/users/osu", users.Osu)
	l.Page("/users/staff", users.Staff)

	// 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/edit", editanime.Get)

	// Characters
	l.Page("/character/:id", character.Get)

	// Companies
	l.Page("/company/:id", company.Get)
	l.Page("/companies", companies.Get)

	// 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.Get)
	l.Page("/soundtracks/from/:index", soundtracks.From)
	l.Page("/soundtrack/:id", soundtrack.Get)
	l.Page("/soundtrack/:id/edit", soundtrack.Edit)

	// 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)

	// User profiles
	l.Page("/user", user.Get)
	l.Page("/user/:nick", profile.Get)
	l.Page("/user/:nick/forum/threads", profile.GetThreadsByUser)
	l.Page("/user/:nick/forum/posts", profile.GetPostsByUser)
	l.Page("/user/:nick/soundtracks", profile.GetSoundTracksByUser)
	l.Page("/user/:nick/stats", profile.GetStatsByUser)
	l.Page("/user/:nick/followers", profile.GetFollowers)
	l.Page("/user/:nick/animelist", animelist.Get)
	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/anime/:id", animelistitem.Get)

	// Anime list
	l.Page("/animelist/watching", home.FilterByStatus(arn.AnimeListStatusWatching))
	l.Page("/animelist/completed", home.FilterByStatus(arn.AnimeListStatusCompleted))
	l.Page("/animelist/planned", home.FilterByStatus(arn.AnimeListStatusPlanned))
	l.Page("/animelist/hold", home.FilterByStatus(arn.AnimeListStatusHold))
	l.Page("/animelist/dropped", home.FilterByStatus(arn.AnimeListStatusDropped))

	// Compare
	l.Page("/compare/animelist/:nick-1/:nick-2", compare.AnimeList)

	// Search
	l.Page("/search/*term", search.Get)

	// Shop
	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)

	// Admin
	l.Page("/admin", admin.Get)
	l.Page("/admin/webdev", admin.WebDev)
	l.Page("/admin/purchases", admin.PurchaseHistory)

	// Editor
	l.Page("/editor", editor.Get)
	l.Page("/editor/anilist", editor.AniList)
	l.Page("/editor/shoboi", editor.Shoboi)

	// 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)

	// 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.Ajax("/genres", genres.Get)
	// l.Ajax("/genres/:name", genre.Get)
}