Skip to content

Commit bef57b4

Browse files
Update membership filter to use MEMBERSHIP_WHITELIST in Constants.js
1 parent fe5fdfe commit bef57b4

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

app/scripts/constants.js

+10
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,16 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
150150
{resource: 'services', group: ''},
151151
{resource: 'statefulsets', group: 'apps'}
152152
],
153+
MEMBERSHIP_WHITELIST: [
154+
"admin",
155+
"basic-user",
156+
"edit",
157+
"system:deployer",
158+
"system:image-builder",
159+
"system:image-puller",
160+
"system:image-pusher",
161+
"view",
162+
],
153163
// TODO:
154164
// This map can drive both the drawer & toast messages by
155165
// updating it to the following format:

app/scripts/services/membership/membership.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
angular
44
.module('openshiftConsole')
5-
.factory('MembershipService', function($filter) {
5+
.factory('MembershipService', function($filter, Constants) {
66

77
var annotation = $filter('annotation');
88

@@ -118,13 +118,20 @@ angular
118118
return _.sortBy(roles, 'metadata.name');
119119
};
120120

121-
var filterRoles = function(roles) {
121+
var filterRoles_PREV = function(roles) {
122122
return _.filter(roles, function(item) {
123123
// system-only must be explicitly <string> 'true' to hide the annotation
124124
return annotation(item, 'systemOnly') !== 'true';
125125
});
126126
};
127127

128+
129+
var filterRoles = function(roles) {
130+
return _.filter(roles, function(item) {
131+
return _.includes(Constants.MEMBERSHIP_WHITELIST, item.metadata.name);
132+
});
133+
};
134+
128135
var keyedRoles = function(roles) {
129136
return _.reduce(
130137
roles,

dist/scripts/scripts.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -712,6 +712,7 @@ group: ""
712712
resource: "statefulsets",
713713
group: "apps"
714714
} ],
715+
MEMBERSHIP_WHITELIST: [ "admin", "basic-user", "edit", "system:deployer", "system:image-builder", "system:image-puller", "system:image-pusher", "view" ],
715716
EVENTS_TO_SHOW: {
716717
FailedCreate: !0,
717718
FailedDelete: !0,
@@ -2343,8 +2344,9 @@ t[e.tag] = t[e.tag] || {}, t[e.tag].name = e.tag, t[e.tag].status = angular.copy
23432344
}), t;
23442345
}
23452346
};
2346-
}), angular.module("openshiftConsole").factory("MembershipService", [ "$filter", function(e) {
2347-
var t = e("annotation"), n = function() {
2347+
}), angular.module("openshiftConsole").factory("MembershipService", [ "$filter", "Constants", function(e, t) {
2348+
e("annotation");
2349+
var n = function() {
23482350
return _.reduce(_.slice(arguments), function(e, t, n) {
23492351
return t ? _.isEqual(n, 0) ? t : e + "-" + t : e;
23502352
}, "");
@@ -2398,7 +2400,7 @@ return _.sortBy(e, "metadata.name");
23982400
},
23992401
filterRoles: function(e) {
24002402
return _.filter(e, function(e) {
2401-
return "true" !== t(e, "systemOnly");
2403+
return _.includes(t.MEMBERSHIP_WHITELIST, e.metadata.name);
24022404
});
24032405
},
24042406
mapRolesForUI: function(e, t) {

0 commit comments

Comments
 (0)