mirror of
https://github.com/1f349/violet.git
synced 2024-11-09 22:22:50 +00:00
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
package servers
|
|
|
|
import (
|
|
"code.mrmelon54.com/melon/summer-utils/claims/auth"
|
|
"github.com/MrMelon54/violet/utils"
|
|
"github.com/julienschmidt/httprouter"
|
|
"github.com/mrmelon54/mjwt"
|
|
"log"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
// NewApiServer creates and runs a http server containing all the API
|
|
// endpoints for the software
|
|
//
|
|
// `/compile` - reloads all domains, routes and redirects
|
|
func NewApiServer(conf *Conf, compileTarget utils.MultiCompilable) *http.Server {
|
|
r := httprouter.New()
|
|
|
|
// Endpoint for compile action
|
|
r.POST("/compile", func(rw http.ResponseWriter, req *http.Request, _ httprouter.Params) {
|
|
// Get bearer token
|
|
bearer := utils.GetBearer(req)
|
|
if bearer == "" {
|
|
utils.RespondHttpStatus(rw, http.StatusForbidden)
|
|
return
|
|
}
|
|
|
|
// Read claims from mjwt
|
|
_, b, err := mjwt.ExtractClaims[auth.AccessTokenClaims](conf.Verify, bearer)
|
|
if err != nil {
|
|
utils.RespondHttpStatus(rw, http.StatusForbidden)
|
|
return
|
|
}
|
|
|
|
// Token must have `violet:compile` perm
|
|
if !b.Claims.Perms.Has("violet:compile") {
|
|
utils.RespondHttpStatus(rw, http.StatusForbidden)
|
|
return
|
|
}
|
|
|
|
// Trigger the compile action
|
|
compileTarget.Compile()
|
|
rw.WriteHeader(http.StatusAccepted)
|
|
})
|
|
|
|
// Create and run http server
|
|
s := &http.Server{
|
|
Addr: conf.ApiListen,
|
|
Handler: r,
|
|
ReadTimeout: time.Minute,
|
|
ReadHeaderTimeout: time.Minute,
|
|
WriteTimeout: time.Minute,
|
|
IdleTimeout: time.Minute,
|
|
MaxHeaderBytes: 2500,
|
|
}
|
|
log.Printf("[API] Starting API server on: '%s'\n", s.Addr)
|
|
go utils.RunBackgroundHttp("API", s)
|
|
return s
|
|
}
|