2016-11-09 20:32:19 +09:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-11-09 22:11:49 +09:00
|
|
|
"github.com/aerogo/aero"
|
2017-06-08 23:26:58 +02:00
|
|
|
"github.com/animenotifier/arn"
|
2016-11-13 01:40:16 +09:00
|
|
|
"github.com/animenotifier/notify.moe/components"
|
2016-11-23 12:44:28 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/airing"
|
2016-11-19 23:54:31 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/anime"
|
2017-06-08 11:51:34 +02:00
|
|
|
"github.com/animenotifier/notify.moe/pages/awards"
|
2017-06-02 16:17:58 +02:00
|
|
|
"github.com/animenotifier/notify.moe/pages/dashboard"
|
2016-11-19 23:54:31 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/forum"
|
2016-11-20 03:02:33 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/forums"
|
2016-11-22 12:34:59 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/posts"
|
2016-11-20 19:26:11 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/profile"
|
2016-11-22 12:34:59 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/search"
|
2016-11-19 23:54:31 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/threads"
|
2016-12-06 12:36:31 +09:00
|
|
|
"github.com/animenotifier/notify.moe/pages/users"
|
2016-11-09 20:32:19 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
var app = aero.New()
|
|
|
|
|
|
|
|
func main() {
|
2016-12-03 00:23:05 +09:00
|
|
|
// HTTPS
|
2016-12-06 12:36:31 +09:00
|
|
|
app.Security.Load("security/fullchain.pem", "security/privkey.pem")
|
2016-12-03 00:23:05 +09:00
|
|
|
|
2017-06-11 11:13:59 +02:00
|
|
|
// CSS
|
|
|
|
app.SetStyle(components.CSS())
|
|
|
|
|
2017-06-08 23:26:58 +02:00
|
|
|
// Session store
|
|
|
|
app.Sessions.Store = arn.NewAerospikeStore("Session")
|
|
|
|
|
2016-11-29 01:06:00 +09:00
|
|
|
// Layout
|
2016-11-09 20:32:19 +09:00
|
|
|
app.Layout = func(ctx *aero.Context, content string) string {
|
2016-11-13 01:40:16 +09:00
|
|
|
return components.Layout(content)
|
2016-11-09 20:32:19 +09:00
|
|
|
}
|
|
|
|
|
2016-11-29 01:06:00 +09:00
|
|
|
// Ajax routes
|
2017-06-02 16:17:58 +02:00
|
|
|
app.Ajax("/", dashboard.Get)
|
2016-11-22 12:34:59 +09:00
|
|
|
app.Ajax("/anime", search.Get)
|
2016-11-19 23:54:31 +09:00
|
|
|
app.Ajax("/anime/:id", anime.Get)
|
2016-11-20 03:02:33 +09:00
|
|
|
app.Ajax("/forum", forums.Get)
|
2016-11-19 23:54:31 +09:00
|
|
|
app.Ajax("/forum/:tag", forum.Get)
|
|
|
|
app.Ajax("/threads/:id", threads.Get)
|
2016-11-22 12:34:59 +09:00
|
|
|
app.Ajax("/posts/:id", posts.Get)
|
2016-11-20 19:26:11 +09:00
|
|
|
app.Ajax("/user/:nick", profile.Get)
|
2017-06-08 14:46:38 +02:00
|
|
|
app.Ajax("/user/:nick/threads", threads.GetByUser)
|
2016-12-06 12:36:31 +09:00
|
|
|
app.Ajax("/users", users.Get)
|
2017-06-10 02:19:31 +02:00
|
|
|
app.Ajax("/airing", airing.Get)
|
2017-06-08 11:51:34 +02:00
|
|
|
app.Ajax("/awards", awards.Get)
|
2017-06-11 11:13:59 +02:00
|
|
|
// app.Ajax("/genres", genres.Get)
|
|
|
|
// app.Ajax("/genres/:name", genre.Get)
|
2017-06-06 16:59:04 +02:00
|
|
|
|
2017-06-06 13:07:42 +02:00
|
|
|
// Favicon
|
|
|
|
app.Get("/favicon.ico", func(ctx *aero.Context) string {
|
|
|
|
return ctx.File("images/icons/favicon.ico")
|
2017-06-01 15:38:08 +02:00
|
|
|
})
|
|
|
|
|
2017-06-11 11:13:59 +02:00
|
|
|
// Scripts
|
|
|
|
app.Get("/scripts.js", func(ctx *aero.Context) string {
|
|
|
|
return ctx.File("temp/scripts.js")
|
|
|
|
})
|
|
|
|
|
2017-06-06 13:07:42 +02:00
|
|
|
// Web manifest
|
|
|
|
app.Get("/manifest.json", func(ctx *aero.Context) string {
|
|
|
|
return ctx.JSON(app.Config.Manifest)
|
2017-06-05 20:21:06 +02:00
|
|
|
})
|
|
|
|
|
2017-06-11 11:13:59 +02:00
|
|
|
// Cover image
|
|
|
|
app.Get("/images/cover/:file", func(ctx *aero.Context) string {
|
|
|
|
format := ".jpg"
|
|
|
|
|
|
|
|
if ctx.CanUseWebP() {
|
|
|
|
format = ".webp"
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.File("images/cover/" + ctx.Get("file") + format)
|
2017-06-06 15:51:22 +02:00
|
|
|
})
|
|
|
|
|
2017-06-12 20:06:31 +02:00
|
|
|
app.Get("/images/elements/:file", func(ctx *aero.Context) string {
|
|
|
|
return ctx.File("images/elements/" + ctx.Get("file"))
|
|
|
|
})
|
|
|
|
|
2017-06-05 20:21:06 +02:00
|
|
|
// For benchmarks
|
|
|
|
app.Get("/hello", func(ctx *aero.Context) string {
|
|
|
|
return ctx.Text("Hello World")
|
2017-06-04 01:17:00 +02:00
|
|
|
})
|
|
|
|
|
2016-11-29 01:06:00 +09:00
|
|
|
// Let's go
|
2016-11-09 20:32:19 +09:00
|
|
|
app.Run()
|
|
|
|
}
|