2024-01-06 17:56:32 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2024-04-20 06:05:50 +00:00
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg"
|
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/i18n"
|
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/server/ui"
|
2024-03-31 05:04:48 +00:00
|
|
|
"github.com/gofiber/contrib/websocket"
|
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/cors"
|
2024-04-20 06:05:50 +00:00
|
|
|
"github.com/gofiber/fiber/v2/middleware/favicon"
|
2024-01-30 11:20:12 +00:00
|
|
|
"github.com/gofiber/fiber/v2/middleware/idempotency"
|
|
|
|
"github.com/gofiber/fiber/v2/middleware/logger"
|
2024-04-20 06:05:50 +00:00
|
|
|
"github.com/gofiber/template/html/v2"
|
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-04-20 06:05:50 +00:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
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() {
|
2024-04-20 06:05:50 +00:00
|
|
|
templates := html.NewFileSystem(http.FS(pkg.FS), ".gohtml")
|
|
|
|
|
2024-01-26 17:11:32 +00:00
|
|
|
A = fiber.New(fiber.Config{
|
|
|
|
DisableStartupMessage: true,
|
|
|
|
EnableIPValidation: true,
|
2024-04-20 06:05:50 +00:00
|
|
|
ServerHeader: "Hydrogen.Passport",
|
|
|
|
AppName: "Hydrogen.Passport",
|
2024-01-31 03:34:34 +00:00
|
|
|
ProxyHeader: fiber.HeaderXForwardedFor,
|
2024-01-26 17:11:32 +00:00
|
|
|
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
|
|
|
|
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
|
2024-03-22 16:28:27 +00:00
|
|
|
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
|
2024-04-20 06:05:50 +00:00
|
|
|
Views: templates,
|
|
|
|
ViewsLayout: "views/index",
|
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-04-20 06:05:50 +00:00
|
|
|
A.Use(i18n.I18nMiddleware)
|
|
|
|
|
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)
|
|
|
|
|
2024-03-31 05:04:48 +00:00
|
|
|
notify := api.Group("/notifications").Name("Notifications API")
|
|
|
|
{
|
|
|
|
notify.Get("/", authMiddleware, getNotifications)
|
|
|
|
notify.Put("/:notificationId/read", authMiddleware, markNotificationRead)
|
|
|
|
notify.Post("/subscribe", authMiddleware, addNotifySubscriber)
|
|
|
|
|
|
|
|
notify.Get("/listen", authMiddleware, websocket.New(listenNotifications))
|
|
|
|
}
|
2024-02-01 07:58:28 +00:00
|
|
|
|
2024-03-20 12:56:07 +00:00
|
|
|
me := api.Group("/users/me").Name("Myself Operations")
|
|
|
|
{
|
|
|
|
|
|
|
|
me.Put("/avatar", authMiddleware, setAvatar)
|
|
|
|
me.Put("/banner", authMiddleware, setBanner)
|
|
|
|
|
|
|
|
me.Get("/", authMiddleware, getUserinfo)
|
2024-04-02 12:23:25 +00:00
|
|
|
me.Get("/page", authMiddleware, getOwnPersonalPage)
|
2024-03-20 12:56:07 +00:00
|
|
|
me.Put("/", authMiddleware, editUserinfo)
|
2024-04-02 12:23:25 +00:00
|
|
|
me.Put("/page", authMiddleware, editPersonalPage)
|
2024-03-20 12:56:07 +00:00
|
|
|
me.Get("/events", authMiddleware, getEvents)
|
2024-04-20 11:04:33 +00:00
|
|
|
me.Get("/tickets", authMiddleware, getTickets)
|
2024-04-21 04:20:06 +00:00
|
|
|
me.Delete("/tickets/:ticketId", authMiddleware, killSession)
|
2024-03-20 12:56:07 +00:00
|
|
|
|
|
|
|
me.Post("/confirm", doRegisterConfirm)
|
2024-04-05 17:07:36 +00:00
|
|
|
|
|
|
|
friends := me.Group("/friends").Name("Friends")
|
|
|
|
{
|
|
|
|
friends.Get("/", authMiddleware, listFriendship)
|
|
|
|
friends.Get("/:relatedId", authMiddleware, getFriendship)
|
2024-04-05 17:40:48 +00:00
|
|
|
friends.Post("/", authMiddleware, makeFriendship)
|
2024-04-05 17:07:36 +00:00
|
|
|
friends.Post("/:relatedId", authMiddleware, makeFriendship)
|
|
|
|
friends.Put("/:relatedId", authMiddleware, editFriendship)
|
|
|
|
friends.Delete("/:relatedId", authMiddleware, deleteFriendship)
|
|
|
|
}
|
2024-03-20 12:56:07 +00:00
|
|
|
}
|
2024-01-30 09:57:23 +00:00
|
|
|
|
2024-04-02 12:23:25 +00:00
|
|
|
directory := api.Group("/users/:alias").Name("User Directory")
|
|
|
|
{
|
|
|
|
directory.Get("/", getOtherUserinfo)
|
|
|
|
directory.Get("/page", getPersonalPage)
|
|
|
|
}
|
|
|
|
|
2024-01-26 17:11:32 +00:00
|
|
|
api.Post("/users", doRegister)
|
2024-01-06 17:56:32 +00:00
|
|
|
|
2024-04-20 11:04:33 +00:00
|
|
|
api.Post("/auth", doAuthenticate)
|
|
|
|
api.Post("/auth/token", getToken)
|
2024-01-26 17:11:32 +00:00
|
|
|
api.Post("/auth/factors/:factorId", requestFactorToken)
|
2024-01-30 07:57:49 +00:00
|
|
|
|
2024-02-08 04:26:41 +00:00
|
|
|
developers := api.Group("/dev").Name("Developers API")
|
2024-02-06 04:28:12 +00:00
|
|
|
{
|
|
|
|
developers.Post("/notify", notifyUser)
|
|
|
|
}
|
2024-01-26 17:11:32 +00:00
|
|
|
}
|
2024-01-30 11:20:12 +00:00
|
|
|
|
2024-04-20 06:05:50 +00:00
|
|
|
A.Use(favicon.New(favicon.Config{
|
|
|
|
FileSystem: http.FS(pkg.FS),
|
|
|
|
File: "views/favicon.png",
|
|
|
|
URL: "/favicon.png",
|
2024-01-30 11:20:12 +00:00
|
|
|
}))
|
2024-04-20 06:05:50 +00:00
|
|
|
|
2024-04-20 17:33:42 +00:00
|
|
|
ui.MapUserInterface(A, authFunc)
|
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
|
|
|
}
|
|
|
|
}
|