mirror of https://github.com/rocboss/paopao-ce
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.
46 lines
1.1 KiB
46 lines
1.1 KiB
package middleware
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rocboss/paopao-ce/internal/model"
|
|
"github.com/rocboss/paopao-ce/pkg/app"
|
|
"github.com/rocboss/paopao-ce/pkg/cfg"
|
|
"github.com/rocboss/paopao-ce/pkg/errcode"
|
|
)
|
|
|
|
func Priv() gin.HandlerFunc {
|
|
if cfg.If("PhoneBind") {
|
|
return func(c *gin.Context) {
|
|
if u, exist := c.Get("USER"); exist {
|
|
if user, ok := u.(*model.User); ok {
|
|
if user.Status == model.UserStatusNormal {
|
|
if user.Phone == "" {
|
|
response := app.NewResponse(c)
|
|
response.ToErrorResponse(errcode.AccountNoPhoneBind)
|
|
c.Abort()
|
|
return
|
|
}
|
|
c.Next()
|
|
return
|
|
}
|
|
}
|
|
}
|
|
response := app.NewResponse(c)
|
|
response.ToErrorResponse(errcode.UserHasBeenBanned)
|
|
c.Abort()
|
|
}
|
|
} else {
|
|
return func(c *gin.Context) {
|
|
if u, exist := c.Get("USER"); exist {
|
|
if user, ok := u.(*model.User); ok && user.Status == model.UserStatusNormal {
|
|
c.Next()
|
|
return
|
|
}
|
|
}
|
|
response := app.NewResponse(c)
|
|
response.ToErrorResponse(errcode.UserHasBeenBanned)
|
|
c.Abort()
|
|
}
|
|
}
|
|
}
|