2022-09-29 16:15:59 +08:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2022-11-21 15:20:04 +08:00
|
|
|
"strconv"
|
2022-12-02 10:23:35 +08:00
|
|
|
"time"
|
2022-11-21 15:20:04 +08:00
|
|
|
|
2022-10-17 16:32:31 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/app/api/v1/helper"
|
2022-11-21 15:20:04 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/app/repo"
|
2022-10-17 16:32:31 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
2022-09-29 16:15:59 +08:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func PasswordExpired() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
2022-11-21 15:20:04 +08:00
|
|
|
settingRepo := repo.NewISettingRepo()
|
|
|
|
setting, err := settingRepo.Get(settingRepo.WithByKey("ExpirationDays"))
|
2022-09-29 16:15:59 +08:00
|
|
|
if err != nil {
|
2022-12-02 10:23:35 +08:00
|
|
|
helper.ErrorWithDetail(c, constant.CodePasswordExpired, constant.ErrTypePasswordExpired, err)
|
|
|
|
return
|
2022-11-21 15:20:04 +08:00
|
|
|
}
|
|
|
|
expiredDays, _ := strconv.Atoi(setting.Value)
|
|
|
|
if expiredDays == 0 {
|
|
|
|
c.Next()
|
2022-11-24 23:56:48 +08:00
|
|
|
return
|
2022-11-21 15:20:04 +08:00
|
|
|
}
|
|
|
|
|
2022-12-02 10:23:35 +08:00
|
|
|
extime, err := settingRepo.Get(settingRepo.WithByKey("ExpirationTime"))
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodePasswordExpired, constant.ErrTypePasswordExpired, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
expiredTime, err := time.Parse("2006-01-02 15:04:05", extime.Value)
|
|
|
|
if err != nil {
|
|
|
|
helper.ErrorWithDetail(c, constant.CodePasswordExpired, constant.ErrTypePasswordExpired, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if time.Now().After(expiredTime) {
|
2022-09-29 16:15:59 +08:00
|
|
|
helper.ErrorWithDetail(c, constant.CodePasswordExpired, constant.ErrTypePasswordExpired, nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.Next()
|
|
|
|
}
|
|
|
|
}
|