mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 19:48:12 +08:00
18 lines
419 B
Go
18 lines
419 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/app/api/v1/helper"
|
|
"github.com/1Panel-dev/1Panel/constant"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func PasswordExpired() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
_, err := c.Cookie(constant.PasswordExpiredName)
|
|
if err != nil {
|
|
helper.ErrorWithDetail(c, constant.CodePasswordExpired, constant.ErrTypePasswordExpired, nil)
|
|
return
|
|
}
|
|
c.Next()
|
|
}
|
|
}
|