package middleware import ( "net/http" "strings" "bugulma/backend/internal/service" "github.com/gin-gonic/gin" ) func AuthMiddleware(authService *service.AuthService) gin.HandlerFunc { return func(c *gin.Context) { authHeader := c.GetHeader("Authorization") if authHeader == "" { c.JSON(http.StatusUnauthorized, gin.H{"error": "Authorization header required"}) c.Abort() return } tokenString := strings.TrimPrefix(authHeader, "Bearer ") if tokenString == authHeader { c.JSON(http.StatusUnauthorized, gin.H{"error": "Invalid authorization format"}) c.Abort() return } user, err := authService.ValidateToken(c.Request.Context(), tokenString) if err != nil { c.JSON(http.StatusUnauthorized, gin.H{"error": err.Error()}) c.Abort() return } c.Set("user_id", user.ID) c.Set("user_email", user.Email) c.Set("user_role", string(user.Role)) c.Next() } } func RequireRole(role string) gin.HandlerFunc { return func(c *gin.Context) { userRole, exists := c.Get("user_role") if !exists { c.JSON(http.StatusForbidden, gin.H{"error": "No role found"}) c.Abort() return } if userRole != role { c.JSON(http.StatusForbidden, gin.H{"error": "Insufficient permissions"}) c.Abort() return } c.Next() } }