mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-27 20:25:41 +00:00
128 lines
3.2 KiB
Go
128 lines
3.2 KiB
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"io/fs"
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
"tinyauth/internal/assets"
|
|
"tinyauth/internal/handlers"
|
|
"tinyauth/internal/types"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type Server struct {
|
|
Config types.ServerConfig
|
|
Handlers *handlers.Handlers
|
|
Router *gin.Engine
|
|
}
|
|
|
|
func NewServer(config types.ServerConfig, handlers *handlers.Handlers) (*Server, error) {
|
|
// Disable gin logs
|
|
gin.SetMode(gin.ReleaseMode)
|
|
|
|
// Create router and use zerolog for logs
|
|
log.Debug().Msg("Setting up router")
|
|
router := gin.New()
|
|
router.Use(zerolog())
|
|
|
|
// Read UI assets
|
|
log.Debug().Msg("Setting up assets")
|
|
dist, err := fs.Sub(assets.Assets, "dist")
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Create file server
|
|
log.Debug().Msg("Setting up file server")
|
|
fileServer := http.FileServer(http.FS(dist))
|
|
|
|
// UI middleware
|
|
router.Use(func(c *gin.Context) {
|
|
// If not an API request, serve the UI
|
|
if !strings.HasPrefix(c.Request.URL.Path, "/api") {
|
|
// Check if the file exists
|
|
_, err := fs.Stat(dist, strings.TrimPrefix(c.Request.URL.Path, "/"))
|
|
|
|
// If the file doesn't exist, serve the index.html
|
|
if os.IsNotExist(err) {
|
|
c.Request.URL.Path = "/"
|
|
}
|
|
|
|
// Serve the file
|
|
fileServer.ServeHTTP(c.Writer, c.Request)
|
|
|
|
// Stop further processing
|
|
c.Abort()
|
|
}
|
|
})
|
|
|
|
// Proxy routes
|
|
router.GET("/api/auth/:proxy", handlers.AuthHandler)
|
|
|
|
// Auth routes
|
|
router.POST("/api/login", handlers.LoginHandler)
|
|
router.POST("/api/totp", handlers.TotpHandler)
|
|
router.POST("/api/logout", handlers.LogoutHandler)
|
|
|
|
// Context routes
|
|
router.GET("/api/app", handlers.AppHandler)
|
|
router.GET("/api/user", handlers.UserHandler)
|
|
|
|
// OAuth routes
|
|
router.GET("/api/oauth/url/:provider", handlers.OauthUrlHandler)
|
|
router.GET("/api/oauth/callback/:provider", handlers.OauthCallbackHandler)
|
|
|
|
// App routes
|
|
router.GET("/api/healthcheck", handlers.HealthcheckHandler)
|
|
|
|
// Return the server
|
|
return &Server{
|
|
Config: config,
|
|
Handlers: handlers,
|
|
Router: router,
|
|
}, nil
|
|
}
|
|
|
|
func (s *Server) Start() error {
|
|
// Run server
|
|
log.Info().Str("address", s.Config.Address).Int("port", s.Config.Port).Msg("Starting server")
|
|
|
|
return s.Router.Run(fmt.Sprintf("%s:%d", s.Config.Address, s.Config.Port))
|
|
}
|
|
|
|
// zerolog is a middleware for gin that logs requests using zerolog
|
|
func zerolog() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
// Get initial time
|
|
tStart := time.Now()
|
|
|
|
// Process request
|
|
c.Next()
|
|
|
|
// Get status code, address, method and path
|
|
code := c.Writer.Status()
|
|
address := c.Request.RemoteAddr
|
|
method := c.Request.Method
|
|
path := c.Request.URL.Path
|
|
|
|
// Get latency
|
|
latency := time.Since(tStart).String()
|
|
|
|
// Log request
|
|
switch {
|
|
case code >= 200 && code < 300:
|
|
log.Info().Str("method", method).Str("path", path).Str("address", address).Int("status", code).Str("latency", latency).Msg("Request")
|
|
case code >= 300 && code < 400:
|
|
log.Warn().Str("method", method).Str("path", path).Str("address", address).Int("status", code).Str("latency", latency).Msg("Request")
|
|
case code >= 400:
|
|
log.Error().Str("method", method).Str("path", path).Str("address", address).Int("status", code).Str("latency", latency).Msg("Request")
|
|
}
|
|
}
|
|
}
|