mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-24 02:59:16 +08:00
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package middleware
|
|
|
|
import (
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/1Panel-dev/1Panel/backend/app/api/v1/helper"
|
|
"github.com/1Panel-dev/1Panel/backend/app/repo"
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
|
"github.com/1Panel-dev/1Panel/backend/utils/common"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func PasswordExpired() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
settingRepo := repo.NewISettingRepo()
|
|
setting, err := settingRepo.Get(settingRepo.WithByKey("ExpirationDays"))
|
|
if err != nil {
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypePasswordExpired, err)
|
|
return
|
|
}
|
|
expiredDays, _ := strconv.Atoi(setting.Value)
|
|
if expiredDays == 0 {
|
|
c.Next()
|
|
return
|
|
}
|
|
|
|
extime, err := settingRepo.Get(settingRepo.WithByKey("ExpirationTime"))
|
|
if err != nil {
|
|
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypePasswordExpired, err)
|
|
return
|
|
}
|
|
loc, _ := time.LoadLocation(common.LoadTimeZone())
|
|
expiredTime, err := time.ParseInLocation(constant.DateTimeLayout, extime.Value, loc)
|
|
if err != nil {
|
|
helper.ErrorWithDetail(c, constant.CodePasswordExpired, constant.ErrTypePasswordExpired, err)
|
|
return
|
|
}
|
|
if time.Now().After(expiredTime) {
|
|
helper.ErrorWithDetail(c, constant.CodePasswordExpired, constant.ErrTypePasswordExpired, err)
|
|
return
|
|
}
|
|
c.Next()
|
|
}
|
|
}
|