mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
706 B
27 lines
706 B
2 years ago
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"github.com/1Panel-dev/1Panel/app/api/v1/helper"
|
||
|
"github.com/1Panel-dev/1Panel/constant"
|
||
|
"github.com/1Panel-dev/1Panel/global"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func SessionAuth() gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {
|
||
|
if method, exist := c.Get("authMethod"); exist && method == constant.AuthMethodJWT {
|
||
|
c.Next()
|
||
|
}
|
||
|
sId, err := c.Cookie(global.CONF.Session.SessionName)
|
||
|
if err != nil {
|
||
|
helper.ErrorWithDetail(c, constant.CodeErrUnauthorized, constant.ErrTypeToken, nil)
|
||
|
return
|
||
|
}
|
||
|
if _, err := global.SESSION.Get(sId); err != nil {
|
||
|
helper.ErrorWithDetail(c, constant.CodeErrUnauthorized, constant.ErrTypeToken, nil)
|
||
|
return
|
||
|
}
|
||
|
c.Next()
|
||
|
}
|
||
|
}
|