2024-01-06 17:56:32 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2024-01-26 17:11:32 +00:00
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
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-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,
|
|
|
|
ServerHeader: "Hydrogen.Passport",
|
|
|
|
AppName: "Hydrogen.Passport",
|
|
|
|
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
|
|
|
|
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
|
|
|
|
})
|
2024-01-06 17:56:32 +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-28 08:17:38 +00:00
|
|
|
api.Get("/users/me", auth, getPrincipal)
|
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-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
|
|
|
}
|
|
|
|
}
|