97 lines
2.9 KiB
Go
97 lines
2.9 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
"github.com/aerogo/api"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/notify.moe/auth"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/layout"
|
|
"github.com/animenotifier/notify.moe/middleware"
|
|
"github.com/animenotifier/notify.moe/pages/admin"
|
|
"github.com/animenotifier/notify.moe/pages/airing"
|
|
"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/dashboard"
|
|
"github.com/animenotifier/notify.moe/pages/forum"
|
|
"github.com/animenotifier/notify.moe/pages/forums"
|
|
"github.com/animenotifier/notify.moe/pages/login"
|
|
"github.com/animenotifier/notify.moe/pages/popularanime"
|
|
"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/threads"
|
|
"github.com/animenotifier/notify.moe/pages/user"
|
|
"github.com/animenotifier/notify.moe/pages/users"
|
|
"github.com/animenotifier/notify.moe/pages/webdev"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
var app = aero.New()
|
|
|
|
func main() {
|
|
// Configure and start
|
|
configure(app).Run()
|
|
}
|
|
|
|
func configure(app *aero.Application) *aero.Application {
|
|
// HTTPS
|
|
app.Security.Load("security/fullchain.pem", "security/privkey.pem")
|
|
|
|
// CSS
|
|
app.SetStyle(components.CSS())
|
|
|
|
// Sessions
|
|
app.Sessions.Duration = 3600 * 24
|
|
app.Sessions.Store = arn.NewAerospikeStore("Session", app.Sessions.Duration)
|
|
|
|
// Layout
|
|
app.Layout = layout.Render
|
|
|
|
// Ajax routes
|
|
app.Ajax("/", dashboard.Get)
|
|
app.Ajax("/anime", popularanime.Get)
|
|
app.Ajax("/anime/:id", anime.Get)
|
|
app.Ajax("/forum", forums.Get)
|
|
app.Ajax("/forum/:tag", forum.Get)
|
|
app.Ajax("/threads/:id", threads.Get)
|
|
app.Ajax("/posts/:id", posts.Get)
|
|
app.Ajax("/user", user.Get)
|
|
app.Ajax("/user/:nick", profile.Get)
|
|
app.Ajax("/user/:nick/threads", profile.GetThreadsByUser)
|
|
app.Ajax("/user/:nick/posts", profile.GetPostsByUser)
|
|
app.Ajax("/user/:nick/animelist", animelist.Get)
|
|
app.Ajax("/user/:nick/animelist/:id", animelistitem.Get)
|
|
app.Ajax("/settings", settings.Get)
|
|
app.Ajax("/admin", admin.Get)
|
|
app.Ajax("/search/:term", search.Get)
|
|
app.Ajax("/users", users.Get)
|
|
app.Ajax("/login", login.Get)
|
|
app.Ajax("/airing", airing.Get)
|
|
app.Ajax("/webdev", webdev.Get)
|
|
// app.Ajax("/genres", genres.Get)
|
|
// app.Ajax("/genres/:name", genre.Get)
|
|
|
|
// Middleware
|
|
app.Use(middleware.Log())
|
|
app.Use(middleware.Session())
|
|
app.Use(middleware.UserInfo())
|
|
app.Use(middleware.IPToHost())
|
|
|
|
// API
|
|
api := api.New("/api/", arn.DB)
|
|
api.Install(app)
|
|
|
|
// Domain
|
|
if utils.IsDevelopment() {
|
|
app.Config.Domain = "beta.notify.moe"
|
|
}
|
|
|
|
// Authentication
|
|
auth.Install(app)
|
|
|
|
return app
|
|
}
|