2 Star 2 Fork 4

联犀/中台模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
roleApiAuthLogic.go 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-17 15:53 . feat: 日志添加
package rolemanagelogic
import (
"context"
"gitee.com/unitedrhino/core/service/syssvr/domain/access"
"gitee.com/unitedrhino/core/service/syssvr/internal/svc"
"gitee.com/unitedrhino/core/service/syssvr/pb/sys"
"gitee.com/unitedrhino/core/service/syssvr/sysExport"
"gitee.com/unitedrhino/share/ctxs"
"gitee.com/unitedrhino/share/def"
"gitee.com/unitedrhino/share/errors"
"github.com/zeromicro/go-zero/core/logx"
)
type RoleApiAuthLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewRoleApiAuthLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RoleApiAuthLogic {
return &RoleApiAuthLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *RoleApiAuthLogic) RoleApiAuth(in *sys.RoleApiAuthReq) (*sys.RoleApiAuthResp, error) {
uc := ctxs.GetUserCtx(l.ctx)
//if uc.IsAdmin {
// return &sys.RoleApiAuthResp{}, nil
//}
//api, err := relationDB.NewApiInfoRepo(l.ctx).FindOneByFilter(l.ctx, relationDB.ApiInfoFilter{
// Route: in.Path,
// Method: in.Method,
//})
api, err := l.svcCtx.ApiCache.GetData(l.ctx, sysExport.GenApiCacheKey(in.Method, in.Path))
if err != nil {
if errors.Cmp(err, errors.NotFind) { //没有导入的不校验
return &sys.RoleApiAuthResp{}, nil
}
return nil, err
}
if uc.IsSuperAdmin {
return &sys.RoleApiAuthResp{BusinessType: api.BusinessType, Name: api.Name}, nil
}
if api.Access == nil {
l.Errorf("api.Access == nil api:%#v", api)
return nil, errors.Permissions
}
if api.Access.IsNeedAuth != def.True {
return &sys.RoleApiAuthResp{BusinessType: api.BusinessType, Name: api.Name}, nil
}
if api.Access.AuthType == access.AuthTypeSupper && uc.TenantCode != def.TenantCodeDefault {
return nil, errors.Permissions.AddDetail("只有租户管理员才能操作")
}
ras, err := l.svcCtx.RoleAccessCache.GetData(l.ctx, api.AccessCode)
if err != nil {
l.Errorf("RoleAccessCache get err:%v", err)
return nil, err
}
for _, roleID := range uc.RoleIDs {
if _, ok := (*ras)[roleID]; ok {
return &sys.RoleApiAuthResp{BusinessType: api.BusinessType, Name: api.Name}, nil
}
}
return nil, errors.Permissions
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/core.git
git@gitee.com:unitedrhino/core.git
unitedrhino
core
中台模块
v1.1.3

搜索帮助

0d507c66 1850385 C8b1a773 1850385