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.
26 lines
563 B
26 lines
563 B
2 years ago
|
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/errcode"
|
||
|
)
|
||
|
|
||
|
func Admin() gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {
|
||
|
if user, exist := c.Get("USER"); exist {
|
||
|
if userModel, ok := user.(*model.User); ok {
|
||
|
if userModel.Status == model.UserStatusNormal && userModel.IsAdmin {
|
||
|
c.Next()
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
response := app.NewResponse(c)
|
||
|
response.ToErrorResponse(errcode.NoAdminPermission)
|
||
|
c.Abort()
|
||
|
}
|
||
|
}
|