|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|