mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-20 12:27:50 +08:00
29 lines
661 B
Go
29 lines
661 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"github.com/1Panel-dev/1Panel/core/app/api/v1/helper"
|
||
|
"github.com/1Panel-dev/1Panel/core/constant"
|
||
|
jwtUtils "github.com/1Panel-dev/1Panel/core/utils/jwt"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func JwtAuth() gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {
|
||
|
token := c.Request.Header.Get(constant.JWTHeaderName)
|
||
|
if token == "" {
|
||
|
c.Next()
|
||
|
return
|
||
|
}
|
||
|
j := jwtUtils.NewJWT()
|
||
|
claims, err := j.ParseToken(token)
|
||
|
if err != nil {
|
||
|
helper.ErrorWithDetail(c, constant.CodeErrUnauthorized, constant.ErrTypeInternalServer, err)
|
||
|
return
|
||
|
}
|
||
|
c.Set("claims", claims)
|
||
|
c.Set("authMethod", constant.AuthMethodJWT)
|
||
|
c.Next()
|
||
|
}
|
||
|
}
|