Passport/pkg/server/startup.go

98 lines
2.7 KiB
Go
Raw Normal View History

2024-01-06 17:56:32 +00:00
package server
import (
2024-01-30 10:55:55 +00:00
"code.smartsheep.studio/hydrogen/passport/pkg/view"
2024-01-26 17:11:32 +00:00
"github.com/gofiber/fiber/v2"
2024-01-30 11:20:12 +00:00
"github.com/gofiber/fiber/v2/middleware/cache"
"github.com/gofiber/fiber/v2/middleware/cors"
2024-01-30 10:55:55 +00:00
"github.com/gofiber/fiber/v2/middleware/filesystem"
2024-01-30 11:20:12 +00:00
"github.com/gofiber/fiber/v2/middleware/idempotency"
"github.com/gofiber/fiber/v2/middleware/logger"
2024-01-26 17:11:32 +00:00
jsoniter "github.com/json-iterator/go"
"github.com/rs/zerolog/log"
2024-01-06 17:56:32 +00:00
"github.com/spf13/viper"
2024-01-30 10:55:55 +00:00
"net/http"
2024-01-30 11:20:12 +00:00
"strings"
"time"
2024-01-06 17:56:32 +00:00
)
2024-01-26 17:11:32 +00:00
var A *fiber.App
2024-01-06 17:56:32 +00:00
2024-01-26 17:11:32 +00:00
func NewServer() {
A = fiber.New(fiber.Config{
DisableStartupMessage: true,
EnableIPValidation: true,
2024-01-31 13:16:54 +00:00
ServerHeader: "Hydrogen.Passport",
AppName: "Hydrogen.Passport",
ProxyHeader: fiber.HeaderXForwardedFor,
2024-01-26 17:11:32 +00:00
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
2024-01-30 10:55:55 +00:00
EnablePrintRoutes: viper.GetBool("debug"),
2024-01-26 17:11:32 +00:00
})
2024-01-06 17:56:32 +00:00
2024-01-30 11:20:12 +00:00
A.Use(idempotency.New())
A.Use(cors.New(cors.Config{
AllowCredentials: true,
AllowMethods: strings.Join([]string{
fiber.MethodGet,
fiber.MethodPost,
fiber.MethodHead,
fiber.MethodOptions,
fiber.MethodPut,
fiber.MethodDelete,
fiber.MethodPatch,
}, ","),
AllowOriginsFunc: func(origin string) bool {
return true
},
}))
A.Use(logger.New(logger.Config{
Format: "${status} | ${latency} | ${method} ${path}\n",
Output: log.Logger,
2024-01-30 10:55:55 +00:00
}))
2024-01-28 16:32:39 +00:00
A.Get("/.well-known", getMetadata)
2024-01-30 08:04:12 +00:00
A.Get("/.well-known/openid-configuration", getOidcConfiguration)
2024-01-28 16:32:39 +00:00
2024-01-26 17:11:32 +00:00
api := A.Group("/api").Name("API")
{
2024-01-31 16:14:25 +00:00
api.Get("/avatar/:avatarId", getAvatar)
api.Put("/avatar", auth, setAvatar)
2024-01-31 13:16:54 +00:00
api.Get("/users/me", auth, getUserinfo)
api.Put("/users/me", auth, editUserinfo)
2024-01-30 09:57:23 +00:00
api.Get("/users/me/events", auth, getEvents)
2024-02-01 07:08:40 +00:00
api.Get("/users/me/challenges", auth, getChallenges)
api.Get("/users/me/sessions", auth, getSessions)
2024-01-30 10:18:25 +00:00
api.Delete("/users/me/sessions/:sessionId", auth, killSession)
2024-01-30 09:57:23 +00:00
2024-01-26 17:11:32 +00:00
api.Post("/users", doRegister)
2024-01-28 16:32:39 +00:00
api.Post("/users/me/confirm", doRegisterConfirm)
2024-01-06 17:56:32 +00:00
2024-01-26 17:11:32 +00:00
api.Put("/auth", startChallenge)
api.Post("/auth", doChallenge)
api.Post("/auth/token", exchangeToken)
api.Post("/auth/factors/:factorId", requestFactorToken)
2024-01-30 07:57:49 +00:00
api.Get("/auth/oauth/connect", auth, preConnect)
api.Post("/auth/oauth/connect", auth, doConnect)
2024-01-26 17:11:32 +00:00
}
2024-01-30 11:20:12 +00:00
A.Use("/", cache.New(cache.Config{
Expiration: 24 * time.Hour,
CacheControl: true,
}), filesystem.New(filesystem.Config{
Root: http.FS(view.FS),
PathPrefix: "dist",
Index: "index.html",
NotFoundFile: "dist/index.html",
}))
2024-01-06 17:56:32 +00:00
}
2024-01-26 17:11:32 +00:00
func Listen() {
if err := A.Listen(viper.GetString("bind")); err != nil {
log.Fatal().Err(err).Msg("An error occurred when starting server...")
2024-01-06 17:56:32 +00:00
}
}