1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-02-01 06:28:06 +08:00
1Panel/core/middleware/session.go

46 lines
1.2 KiB
Go
Raw Normal View History

2024-07-19 19:04:11 +08:00
package middleware
import (
"strconv"
2024-07-25 18:13:57 +08:00
"strings"
2024-07-19 19:04:11 +08:00
"github.com/1Panel-dev/1Panel/core/app/api/v2/helper"
2024-07-19 19:04:11 +08:00
"github.com/1Panel-dev/1Panel/core/app/repo"
"github.com/1Panel-dev/1Panel/core/constant"
"github.com/1Panel-dev/1Panel/core/global"
"github.com/gin-gonic/gin"
)
func SessionAuth() gin.HandlerFunc {
return func(c *gin.Context) {
2024-07-25 18:13:57 +08:00
if strings.HasPrefix(c.Request.URL.Path, "/api/v2/core/auth") {
c.Next()
return
}
2024-07-19 19:04:11 +08:00
if method, exist := c.Get("authMethod"); exist && method == constant.AuthMethodJWT {
c.Next()
return
}
psession, err := global.SESSION.Get(c)
2024-07-19 19:04:11 +08:00
if err != nil {
helper.ErrorWithDetail(c, constant.CodeErrUnauthorized, constant.ErrTypeNotLogin, nil)
return
}
settingRepo := repo.NewISettingRepo()
commonRepo := repo.NewICommonRepo()
setting, err := settingRepo.Get(commonRepo.WithByKey("SessionTimeout"))
2024-07-19 19:04:11 +08:00
if err != nil {
global.LOG.Errorf("create operation record failed, err: %v", err)
return
2024-07-19 19:04:11 +08:00
}
lifeTime, _ := strconv.Atoi(setting.Value)
httpsSetting, err := settingRepo.Get(commonRepo.WithByKey("SSL"))
if err != nil {
global.LOG.Errorf("create operation record failed, err: %v", err)
return
}
_ = global.SESSION.Set(c, psession, httpsSetting.Value == "enable", lifeTime)
2024-07-19 19:04:11 +08:00
c.Next()
}
}