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.
go-fly/middleware/rbac.go

67 lines
1.3 KiB

package middleware
import (
"fmt"
"github.com/gin-gonic/gin"
"github.com/taoshihan1991/imaptool/models"
"strings"
)
func RbacAuth(c *gin.Context) {
roleId, _ := c.Get("role_id")
role := models.FindRole(roleId)
var flag bool
rPaths := strings.Split(c.Request.RequestURI, "?")
uriParam := fmt.Sprintf("%s:%s", c.Request.Method, rPaths[0])
if role.Method != "*" || role.Path != "*" {
paths := strings.Split(role.Path, ",")
for _, p := range paths {
if uriParam == p {
flag = true
break
}
}
if !flag {
c.JSON(200, gin.H{
"code": 403,
"msg": "没有权限:" + uriParam,
})
c.Abort()
return
}
//methods := strings.Split(role.Method, ",")
//for _, m := range methods {
// if c.Request.Method == m {
// methodFlag = true
// break
// }
//}
//if !methodFlag {
// c.JSON(200, gin.H{
// "code": 403,
// "msg": "没有权限:" + c.Request.Method + "," + rPaths[0],
// })
// c.Abort()
// return
//}
}
//var flag bool
//if role.Path != "*" {
// paths := strings.Split(role.Path, ",")
// for _, p := range paths {
// if rPaths[0] == p {
// flag = true
// break
// }
// }
// if !flag {
// c.JSON(200, gin.H{
// "code": 403,
// "msg": "没有权限:" + rPaths[0],
// })
// c.Abort()
// return
// }
//}
}