Messaging/pkg/server/startup.go

127 lines
4.0 KiB
Go
Raw Normal View History

2024-03-26 15:05:13 +00:00
package server
import (
2024-03-30 05:15:21 +00:00
"git.solsynth.dev/hydrogen/messaging/pkg"
2024-03-30 09:10:36 +00:00
"github.com/gofiber/contrib/websocket"
2024-03-30 05:15:21 +00:00
"github.com/gofiber/fiber/v2/middleware/favicon"
2024-03-26 15:05:13 +00:00
"net/http"
"strings"
"time"
"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/idempotency"
"github.com/gofiber/fiber/v2/middleware/logger"
2024-03-30 05:15:21 +00:00
"github.com/gofiber/template/html/v2"
2024-03-26 15:05:13 +00:00
jsoniter "github.com/json-iterator/go"
"github.com/rs/zerolog/log"
"github.com/spf13/viper"
)
var A *fiber.App
func NewServer() {
2024-03-30 05:15:21 +00:00
templates := html.NewFileSystem(http.FS(pkg.FS), ".gohtml")
2024-03-26 15:05:13 +00:00
A = fiber.New(fiber.Config{
DisableStartupMessage: true,
EnableIPValidation: true,
ServerHeader: "Hydrogen.Messaging",
AppName: "Hydrogen.Messaging",
ProxyHeader: fiber.HeaderXForwardedFor,
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
BodyLimit: 50 * 1024 * 1024,
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
2024-03-30 05:15:21 +00:00
Views: templates,
ViewsLayout: "views/index",
2024-03-26 15:05:13 +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,
}))
A.Get("/.well-known", getMetadata)
api := A.Group("/api").Name("API")
{
api.Get("/users/me", authMiddleware, getUserinfo)
api.Get("/users/:accountId", getOthersInfo)
api.Get("/attachments/o/:fileId", cache.New(cache.Config{
Expiration: 365 * 24 * time.Hour,
CacheControl: true,
}), readAttachment)
api.Post("/attachments", authMiddleware, uploadAttachment)
api.Delete("/attachments/:id", authMiddleware, deleteAttachment)
channels := api.Group("/channels").Name("Channels API")
{
channels.Get("/", listChannel)
2024-03-30 10:40:21 +00:00
channels.Get("/:channel", getChannel)
2024-03-26 15:05:13 +00:00
channels.Get("/me", authMiddleware, listOwnedChannel)
channels.Get("/me/available", authMiddleware, listAvailableChannel)
2024-03-30 10:40:21 +00:00
2024-03-26 15:05:13 +00:00
channels.Post("/", authMiddleware, createChannel)
channels.Put("/:channelId", authMiddleware, editChannel)
channels.Delete("/:channelId", authMiddleware, deleteChannel)
2024-03-30 10:40:21 +00:00
channels.Get("/:channelId/members", listChannelMembers)
2024-04-06 08:08:33 +00:00
channels.Put("/:channelId/members", authMiddleware, editChannelMembership)
2024-03-30 10:40:21 +00:00
channels.Post("/:channelId/invite", authMiddleware, inviteChannel)
channels.Post("/:channelId/kick", authMiddleware, kickChannel)
2024-04-06 06:36:36 +00:00
channels.Post("/:channelId/leave", authMiddleware, leaveChannel)
2024-03-30 10:40:21 +00:00
channels.Get("/:channel/messages", listMessage)
channels.Post("/:channel/messages", authMiddleware, newTextMessage)
channels.Put("/:channel/messages/:messageId", authMiddleware, editMessage)
channels.Delete("/:channel/messages/:messageId", authMiddleware, deleteMessage)
2024-04-06 09:08:01 +00:00
channels.Get("/:channel/calls", listCall)
channels.Get("/:channel/calls/ongoing", getOngoingCall)
channels.Post("/:channel/calls", authMiddleware, startCall)
channels.Delete("/:channel/calls", authMiddleware, endCall)
channels.Post("/:channel/calls/ongoing/token", authMiddleware, exchangeCallToken)
2024-03-26 15:05:13 +00:00
}
2024-03-30 09:10:36 +00:00
api.Get("/unified", authMiddleware, websocket.New(unifiedGateway))
2024-03-26 15:05:13 +00:00
}
2024-03-30 05:15:21 +00:00
A.Use(favicon.New(favicon.Config{
FileSystem: http.FS(pkg.FS),
File: "views/favicon.png",
URL: "/favicon.png",
2024-03-26 15:05:13 +00:00
}))
2024-03-30 05:15:21 +00:00
A.Get("/", func(c *fiber.Ctx) error {
return c.Render("views/open", fiber.Map{
"frontend": viper.GetString("frontend"),
})
})
2024-03-26 15:05:13 +00:00
}
func Listen() {
if err := A.Listen(viper.GetString("bind")); err != nil {
log.Fatal().Err(err).Msg("An error occurred when starting server...")
}
}