mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
feat: 增加后端权限控制
This commit is contained in:
@@ -1,21 +1,95 @@
|
||||
package ctx
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"mayfly-go/base/biz"
|
||||
"mayfly-go/base/cache"
|
||||
"time"
|
||||
)
|
||||
|
||||
type Permission struct {
|
||||
Code string // 权限code
|
||||
Description string // 请求描述
|
||||
NeedToken bool // 是否需要token
|
||||
Code string // 权限code
|
||||
}
|
||||
|
||||
var permissionError = biz.NewBizErrCode(biz.TokenErrorCode, biz.TokenErrorMsg)
|
||||
func NewPermission(code string) *Permission {
|
||||
return &Permission{NeedToken: true, Code: code}
|
||||
}
|
||||
|
||||
func (p *Permission) WithNeedToken(needToken bool) *Permission {
|
||||
p.NeedToken = needToken
|
||||
return p
|
||||
}
|
||||
|
||||
type PermissionCodeRegistry interface {
|
||||
// 保存用户权限code
|
||||
SaveCodes(userId uint64, codes []string)
|
||||
|
||||
// 判断用户是否拥有该code的权限
|
||||
HasCode(userId uint64, code string) bool
|
||||
|
||||
Remove(userId uint64)
|
||||
}
|
||||
|
||||
type DefaultPermissionCodeRegistry struct {
|
||||
cache *cache.TimedCache
|
||||
}
|
||||
|
||||
func (r *DefaultPermissionCodeRegistry) SaveCodes(userId uint64, codes []string) {
|
||||
if r.cache == nil {
|
||||
r.cache = cache.NewTimedCache(30*time.Minute, 5*time.Second).WithUpdateAccessTime(true)
|
||||
}
|
||||
r.cache.Put(fmt.Sprintf("%v", userId), codes)
|
||||
}
|
||||
|
||||
func (r *DefaultPermissionCodeRegistry) HasCode(userId uint64, code string) bool {
|
||||
if r.cache == nil {
|
||||
return false
|
||||
}
|
||||
codes, found := r.cache.Get(fmt.Sprintf("%v", userId))
|
||||
if !found {
|
||||
return false
|
||||
}
|
||||
for _, v := range codes.([]string) {
|
||||
if v == code {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (r *DefaultPermissionCodeRegistry) Remove(userId uint64) {
|
||||
r.cache.Delete(fmt.Sprintf("%v", userId))
|
||||
}
|
||||
|
||||
// 保存用户权限code
|
||||
func SavePermissionCodes(userId uint64, codes []string) {
|
||||
permissionCodeRegistry.SaveCodes(userId, codes)
|
||||
}
|
||||
|
||||
// 删除用户权限code
|
||||
func DeletePermissionCodes(userId uint64) {
|
||||
permissionCodeRegistry.Remove(userId)
|
||||
}
|
||||
|
||||
// 设置权限code注册器
|
||||
func SetPermissionCodeRegistery(pcr PermissionCodeRegistry) {
|
||||
permissionCodeRegistry = pcr
|
||||
}
|
||||
|
||||
var (
|
||||
permissionCodeRegistry PermissionCodeRegistry = &DefaultPermissionCodeRegistry{}
|
||||
permissionError = biz.NewBizErrCode(biz.TokenErrorCode, biz.TokenErrorMsg)
|
||||
)
|
||||
|
||||
func PermissionHandler(rc *ReqCtx) error {
|
||||
if !rc.NeedToken {
|
||||
permission := rc.RequiredPermission
|
||||
// 如果需要的权限信息不为空,并且不需要token,则不返回错误,继续后续逻辑
|
||||
if permission != nil && !permission.NeedToken {
|
||||
return nil
|
||||
}
|
||||
tokenStr := rc.GinCtx.Request.Header.Get("Authorization")
|
||||
// header不存在则从查询参数token中获取
|
||||
if tokenStr == "" {
|
||||
tokenStr = rc.GinCtx.Query("token")
|
||||
}
|
||||
@@ -26,6 +100,13 @@ func PermissionHandler(rc *ReqCtx) error {
|
||||
if err != nil || loginAccount == nil {
|
||||
return permissionError
|
||||
}
|
||||
// 权限不为nil,并且permission code不为空,则校验是否有权限code
|
||||
if permission != nil && permission.Code != "" {
|
||||
if !permissionCodeRegistry.HasCode(loginAccount.Id, permission.Code) {
|
||||
return permissionError
|
||||
}
|
||||
}
|
||||
|
||||
rc.LoginAccount = loginAccount
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user