@@ -65,29 +65,25 @@ func (da *defaultAuth) Allow(platformID, platformToken string) bool {
65
65
66
66
// CheckPermission 权限检查
67
67
func (da * defaultAuth ) CheckPermission (reqCtx interface {}, authRule interface {}) (bool , error ) {
68
-
69
68
ctx , ok := reqCtx .(* model.AcquireContext )
70
69
if ! ok {
71
70
return false , ErrorInvalidParameter
72
71
}
73
72
74
73
userId := utils .ParseUserID (ctx .GetRequestContext ())
75
- strategies , ok := authRule .([]* model.StrategyDetail )
76
-
74
+ strategies , _ := authRule .([]* model.StrategyDetail )
77
75
if len (strategies ) == 0 {
78
76
return true , nil
79
77
}
80
78
81
79
reqRes := ctx .GetAccessResources ()
82
80
var (
83
- checkNamespace bool = false
84
- checkService bool = true
85
- checkConfigGroup bool = true
81
+ checkNamespace = false
82
+ checkService = true
83
+ checkConfigGroup = true
86
84
)
87
85
88
- for index := range strategies {
89
- rule := strategies [index ]
90
-
86
+ for _ , rule := range strategies {
91
87
if ! da .checkAction (rule .Action , ctx .GetOperation ()) {
92
88
continue
93
89
}
@@ -133,18 +129,15 @@ func (da *defaultAuth) checkAction(expect string, actual model.ResourceOperation
133
129
// @param searchMaps 鉴权策略中某一类型的资源列表信息
134
130
// @return bool 是否可以操作本次被访问的所有资源
135
131
func checkAnyElementExist (userId string , waitSearch []model.ResourceEntry , searchMaps * SearchMap ) bool {
136
- if len (waitSearch ) == 0 {
137
- return true
138
- }
139
- if searchMaps .passAll {
132
+ if len (waitSearch ) == 0 || searchMaps .passAll {
140
133
return true
141
134
}
142
135
143
- for i := range waitSearch {
144
- entry := waitSearch [i ]
136
+ for _ , entry := range waitSearch {
145
137
if entry .Owner == userId {
146
138
continue
147
139
}
140
+
148
141
if _ , ok := searchMaps .items [entry .ID ]; ! ok {
149
142
return false
150
143
}
@@ -168,8 +161,7 @@ func buildSearchMap(ss []model.StrategyResource) []*SearchMap {
168
161
passAll : false ,
169
162
}
170
163
171
- for i := range ss {
172
- val := ss [i ]
164
+ for _ , val := range ss {
173
165
if val .ResType == int32 (api .ResourceType_Namespaces ) {
174
166
nsSearchMaps .items [val .ResID ] = emptyVal
175
167
nsSearchMaps .passAll = (val .ResID == "*" ) || nsSearchMaps .passAll
0 commit comments