mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-07 01:10:21 +03:00
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
package middleware
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/pocket-id/pocket-id/backend/internal/common"
|
|
"github.com/pocket-id/pocket-id/backend/internal/service"
|
|
"github.com/pocket-id/pocket-id/backend/internal/utils/cookie"
|
|
)
|
|
|
|
type JwtAuthMiddleware struct {
|
|
userService *service.UserService
|
|
jwtService *service.JwtService
|
|
}
|
|
|
|
func NewJwtAuthMiddleware(jwtService *service.JwtService, userService *service.UserService) *JwtAuthMiddleware {
|
|
return &JwtAuthMiddleware{jwtService: jwtService, userService: userService}
|
|
}
|
|
|
|
func (m *JwtAuthMiddleware) Add(adminRequired bool) gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
userID, isAdmin, err := m.Verify(c, adminRequired)
|
|
if err != nil {
|
|
c.Abort()
|
|
_ = c.Error(err)
|
|
return
|
|
}
|
|
|
|
c.Set("userID", userID)
|
|
c.Set("userIsAdmin", isAdmin)
|
|
c.Next()
|
|
}
|
|
}
|
|
|
|
func (m *JwtAuthMiddleware) Verify(c *gin.Context, adminRequired bool) (subject string, isAdmin bool, err error) {
|
|
// Extract the token from the cookie
|
|
accessToken, err := c.Cookie(cookie.AccessTokenCookieName)
|
|
if err != nil {
|
|
// Try to extract the token from the Authorization header if it's not in the cookie
|
|
var ok bool
|
|
_, accessToken, ok = strings.Cut(c.GetHeader("Authorization"), " ")
|
|
if !ok || accessToken == "" {
|
|
return "", false, &common.NotSignedInError{}
|
|
}
|
|
}
|
|
|
|
token, err := m.jwtService.VerifyAccessToken(accessToken)
|
|
if err != nil {
|
|
return "", false, &common.NotSignedInError{}
|
|
}
|
|
|
|
subject, ok := token.Subject()
|
|
if !ok {
|
|
_ = c.Error(&common.TokenInvalidError{})
|
|
return
|
|
}
|
|
|
|
user, err := m.userService.GetUser(c, subject)
|
|
if err != nil {
|
|
return "", false, &common.NotSignedInError{}
|
|
}
|
|
|
|
if user.Disabled {
|
|
return "", false, &common.UserDisabledError{}
|
|
}
|
|
|
|
if adminRequired && !user.IsAdmin {
|
|
return "", false, &common.MissingPermissionError{}
|
|
}
|
|
|
|
return subject, isAdmin, nil
|
|
}
|