mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package http
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/GeertJohan/go.rice"
|
|
"github.com/pressly/chi"
|
|
"github.com/pressly/chi/middleware"
|
|
"go.rls.moe/nyx/config"
|
|
"go.rls.moe/nyx/http/admin"
|
|
"go.rls.moe/nyx/http/board"
|
|
"go.rls.moe/nyx/http/middle"
|
|
"net/http"
|
|
)
|
|
|
|
var riceConf = rice.Config{
|
|
LocateOrder: []rice.LocateMethod{
|
|
rice.LocateWorkingDirectory,
|
|
rice.LocateEmbedded,
|
|
rice.LocateAppended,
|
|
},
|
|
}
|
|
|
|
func Start(config *config.Config) {
|
|
r := chi.NewRouter()
|
|
|
|
fmt.Println("Setting up Router")
|
|
r.Use(middleware.Logger)
|
|
r.Use(middleware.Recoverer)
|
|
r.Use(middleware.CloseNotify)
|
|
r.Use(middleware.DefaultCompress)
|
|
|
|
r.Use(middle.ConfigCtx(config))
|
|
|
|
r.Use(middle.CSRFProtect)
|
|
{
|
|
mw, err := middle.Database(config)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
r.Use(mw)
|
|
}
|
|
|
|
r.Route("/admin/", admin.AdminRouter)
|
|
r.Route("/mod/", admin.ModRouter)
|
|
{
|
|
box := riceConf.MustFindBox("http/res")
|
|
atFileServer := http.StripPrefix("/@/", http.FileServer(box.HTTPBox()))
|
|
r.Mount("/@/", atFileServer)
|
|
}
|
|
r.Group(board.Router)
|
|
|
|
fmt.Println("Setup Complete, Starting Web Server...")
|
|
http.ListenAndServe(config.ListenOn, r)
|
|
}
|