2024-02-01 15:26:17 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2024-02-14 14:03:45 +00:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2024-02-01 15:26:17 +00:00
|
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/view"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
"github.com/gofiber/fiber/v2/middleware/cache"
|
|
|
|
"github.com/gofiber/fiber/v2/middleware/cors"
|
|
|
|
"github.com/gofiber/fiber/v2/middleware/filesystem"
|
|
|
|
"github.com/gofiber/fiber/v2/middleware/idempotency"
|
|
|
|
"github.com/gofiber/fiber/v2/middleware/logger"
|
|
|
|
jsoniter "github.com/json-iterator/go"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
var A *fiber.App
|
|
|
|
|
|
|
|
func NewServer() {
|
|
|
|
A = fiber.New(fiber.Config{
|
|
|
|
DisableStartupMessage: true,
|
|
|
|
EnableIPValidation: true,
|
|
|
|
ServerHeader: "Hydrogen.Interactive",
|
|
|
|
AppName: "Hydrogen.Interactive",
|
|
|
|
ProxyHeader: fiber.HeaderXForwardedFor,
|
|
|
|
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
|
|
|
|
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
|
2024-02-06 12:02:47 +00:00
|
|
|
BodyLimit: 50 * 1024 * 1024,
|
2024-02-01 15:26:17 +00:00
|
|
|
EnablePrintRoutes: viper.GetBool("debug"),
|
|
|
|
})
|
|
|
|
|
|
|
|
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,
|
|
|
|
}))
|
|
|
|
|
|
|
|
A.Get("/.well-known", getMetadata)
|
|
|
|
|
|
|
|
api := A.Group("/api").Name("API")
|
|
|
|
{
|
2024-02-04 10:40:20 +00:00
|
|
|
api.Get("/auth", doLogin)
|
|
|
|
api.Get("/auth/callback", postLogin)
|
|
|
|
api.Post("/auth/refresh", doRefreshToken)
|
|
|
|
|
2024-02-01 16:53:22 +00:00
|
|
|
api.Get("/users/me", auth, getUserinfo)
|
2024-02-03 11:22:50 +00:00
|
|
|
api.Get("/users/:accountId", getOthersInfo)
|
2024-02-03 12:44:16 +00:00
|
|
|
api.Get("/users/:accountId/follow", auth, getAccountFollowed)
|
2024-02-03 11:22:50 +00:00
|
|
|
api.Post("/users/:accountId/follow", auth, doFollowAccount)
|
2024-02-01 16:53:22 +00:00
|
|
|
|
2024-02-04 10:40:20 +00:00
|
|
|
api.Get("/attachments/o/:fileId", openAttachment)
|
|
|
|
api.Post("/attachments", auth, uploadAttachment)
|
2024-02-02 15:42:42 +00:00
|
|
|
|
|
|
|
api.Get("/posts", listPost)
|
2024-02-05 17:10:22 +00:00
|
|
|
api.Get("/posts/:postId", getPost)
|
2024-02-02 15:42:42 +00:00
|
|
|
api.Post("/posts", auth, createPost)
|
2024-02-02 16:50:23 +00:00
|
|
|
api.Post("/posts/:postId/react/:reactType", auth, reactPost)
|
2024-02-03 17:08:31 +00:00
|
|
|
api.Put("/posts/:postId", auth, editPost)
|
|
|
|
api.Delete("/posts/:postId", auth, deletePost)
|
2024-02-05 07:51:31 +00:00
|
|
|
|
2024-02-14 14:03:45 +00:00
|
|
|
api.Get("/categories", listCategroies)
|
|
|
|
api.Post("/categories", auth, newCategory)
|
|
|
|
api.Put("/categories/:categoryId", auth, editCategory)
|
|
|
|
api.Delete("/categories/:categoryId", auth, deleteCategory)
|
|
|
|
|
2024-02-11 05:12:37 +00:00
|
|
|
api.Get("/creators/posts", auth, listOwnPost)
|
|
|
|
api.Get("/creators/posts/:postId", auth, getOwnPost)
|
|
|
|
|
2024-02-05 11:25:56 +00:00
|
|
|
api.Get("/realms", listRealm)
|
|
|
|
api.Get("/realms/me", auth, listOwnedRealm)
|
2024-02-11 05:12:37 +00:00
|
|
|
api.Get("/realms/me/available", auth, listAvailableRealm)
|
2024-02-05 11:25:56 +00:00
|
|
|
api.Get("/realms/:realmId", getRealm)
|
2024-02-05 07:51:31 +00:00
|
|
|
api.Post("/realms", auth, createRealm)
|
2024-02-09 04:36:39 +00:00
|
|
|
api.Post("/realms/:realmId/invite", auth, inviteRealm)
|
2024-02-09 07:19:43 +00:00
|
|
|
api.Post("/realms/:realmId/kick", auth, kickRealm)
|
2024-02-05 07:51:31 +00:00
|
|
|
api.Put("/realms/:realmId", auth, editRealm)
|
|
|
|
api.Delete("/realms/:realmId", auth, deleteRealm)
|
2024-02-01 15:26:17 +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",
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func Listen() {
|
|
|
|
if err := A.Listen(viper.GetString("bind")); err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("An error occurred when starting server...")
|
|
|
|
}
|
|
|
|
}
|