aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/middleware.go
diff options
context:
space:
mode:
Diffstat (limited to 'backend/middleware.go')
-rw-r--r--backend/middleware.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/backend/middleware.go b/backend/middleware.go
deleted file mode 100644
index 13234df..0000000
--- a/backend/middleware.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package main
-
-import (
- "github.com/labstack/echo/v4"
- "undef.ninja/x/feedaka/auth"
- appcontext "undef.ninja/x/feedaka/context"
-)
-
-// SessionAuthMiddleware validates session and adds user info to context
-func SessionAuthMiddleware(sessionConfig *auth.SessionConfig) echo.MiddlewareFunc {
- return func(next echo.HandlerFunc) echo.HandlerFunc {
- return func(c echo.Context) error {
- // Try to get user ID from session
- userID, err := sessionConfig.GetUserID(c)
- if err == nil {
- // Add user ID to context
- ctx := appcontext.SetUserID(c.Request().Context(), userID)
- c.SetRequest(c.Request().WithContext(ctx))
- }
- // If no valid session, continue without authentication
-
- return next(c)
- }
- }
-}