-
Notifications
You must be signed in to change notification settings - Fork 11
/
rbac.js
270 lines (240 loc) · 7.49 KB
/
rbac.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/**
* RBAC module
*
* Implementation for simple RBAC module.
* This module consist from 2 parts: '$rbac' service and directive 'allow'.
*
* Note: each permission has 3 state: 'undefined', 'true' and 'false'. 'undefined' means that checking was never requested. So that's additional $digest for watches!
*
* @author Gayvoronsky Andrey <[email protected]>
* @version 1.0
*/
angular.module('rbac', [])
.provider('$rbac', function() {
/**
* Holds all permissions for AuthItems that were requests from server
* @type {object}
*/
var permissions = {};
/**
* Holds array of AuthItems that were enqueue to check for permissions
* @type {Array}
*/
var queue = [];
/**
* Holds AuthItems that are already in process of checking
* @type {object}
*/
var processing = {};
/**
* Settings for service, you can overwrite it during 'config' phase.
* @type {object}
*/
var settings = {
/**
* URL that will be used to request permissions for AuthItems
*/
url: undefined,
/**
* Name of RBAC service at scope. Used for auto-injection to controller's scope. If omit, then no auto-injection.
* You need to inject at least one to use this feature (E.g.: at run() of application)
*/
scopeName: undefined,
/**
* Function that will be executed to request authItems for checking. Must return 'promise' object.
* @param {string[]} authItems - array of authItems to check permissions
* @returns {promise}
*/
serverRequest: undefined
};
/**
* Setup service during config phase
* @param {object} config - settings for service
*/
this.setup = function(config) {
settings = angular.extend(settings, config);
};
/**
* return Singleton of RBAC service
* @type {Array}
*/
this.$get = ['$rootScope', '$http', '$q', function($rootScope, $http, $q) {
if(!(angular.isDefined(settings.serverRequest))) {
if(!(angular.isDefined(settings.url)))
throw 'RBAC is not configured properly. Configure URL via setup().';
settings.serverRequest = function(authItems) {
return $http.post(settings.url, { items: authItems });
};
}
/**
* Watch for changes of queue each $digest
*/
$rootScope.$watch(function() { return queue.length; }, function(length) {
if (length) {
requestFn(queue);
queue.length = 0;
}
});
/**
* Our actual request to server
* @param {(string|string[])} authItems - AuthItem or array of AuthItems to check for permissions
* @returns {promise}
*/
var requestFn = function(authItems) {
var request = [];
var deferred = $q.defer();
/**
* We don't wanna spam the server, so let's check only permissions that were not requested before
*/
if(angular.isArray(authItems)) {
angular.forEach(authItems, function(value) {
if(angular.isDefined(allowFn(value)) || angular.isDefined(processing[value]))
return;
processing[value] = deferred.promise;
request.push(value);
});
} else if(!(angular.isDefined(allowFn(authItems)))) {
request.push(authItems);
processing[authItems] = deferred.promise;
}
/**
* New permissions to check?
*/
if(request.length) {
settings.serverRequest(request).then(function(response) {
angular.forEach(response.data, function(value, key) {
permissions[key] = value;
});
deferred.resolve(response.data);
return response.data;
}, function(response) {
deferred.reject(response);
return false;
});
} else {
/**
* So, looks like no new unique checking and requested checking are already in processing.
*/
var pending = {};
if(angular.isArray(authItems)) {
angular.forEach(authItems, function(value) {
pending[value] = processing[value];
});
} else {
pending[authItems] = processing[authItems];
}
/**
* return new 'promise' that will wait till all previously requested items will be resolved.
*/
return $q.all(pending);
}
return deferred.promise;
};
/**
* Direct checking for permissions. Can be executed from controllers.
* @param {(string|string[])} authItems - AuthItem or array of AuthItems to check for permissions
* @returns {promise}
*/
var checkAccessFn = function(authItems) {
return requestFn(authItems).then(function(resolved) {
if(angular.isArray(authItems))
return resolved;
return allowFn(authItems);
});
};
/**
* Put AuthItem in queue for checking of permission. Can be used from directives. Checking will be delayed till next $digest.
* @param {string} authItem - AuthItem to check for permission
*/
var enqueueCheckingFn = function(authItem) {
queue.push(authItem);
};
/**
* Return current state of permission for AuthItem. Don't use it directly, used at watch function inside of directive
* @param {string} authItem - AuthItem to get
* @returns {(boolean|undefined)}
*/
var allowFn = function(authItem) {
return permissions[authItem];
};
/**
* Grant permission for AuthItem. That's only local operation, that can be used after some special tasks at client-side. No any server processing.
* @param {string} authItem - AuhItem to grant permission
*/
var grantFn = function(authItem) {
permissions[authItem] = true;
};
/**
* Revoke permission for AuthItem. That's only local operation, that can be used after some special tasks at client-side. No any server processing.
* @param {string} authItem - AuthItem to revoke permission
*/
var revokeFn = function(authItem) {
permissions[authItem] = false;
};
/**
* Resets permissions that were locally stored.
* @param {[string|string[]]} authItems - AuthItems to reset permissions. If omit - reset all permissions
*/
var resetFn = function(authItems) {
if(angular.isArray(authItems)) {
angular.forEach(authItems, function(value, key) {
permissions[key] = undefined;
processing[key] = undefined;
});
} else if(angular.isDefined(authItems)) {
permissions[authItems] = undefined;
processing[authItems] = undefined;
} else {
permissions = {};
processing = {};
}
};
var $rbac = {
checkAccess: checkAccessFn,
enqueueChecking: enqueueCheckingFn,
allow: allowFn,
grant: grantFn,
revoke: revokeFn,
reset: resetFn
};
/**
* Do we want to use auto-injection for controller's scope? We will not need inject RBAC service manually in that case
*/
if(angular.isDefined(settings.scopeName))
$rootScope[settings.scopeName] = $rbac;
return $rbac;
}];
}).directive("allow", ['$animate', '$rbac', function ($animate, $rbac) {
return {
transclude: 'element',
priority: 1000,
terminal: true,
restrict: 'A',
$$tlb: true,
compile: function (element, attr, transclude) {
return function ($scope, $element, $attr) {
var childElement, childScope;
$scope.$watch(function() { return $rbac.allow($attr.allow); }, function (newVal) {
if (!angular.isDefined(newVal))
return;
if (childElement) {
$animate.leave(childElement);
childElement = undefined;
}
if (childScope) {
childScope.$destroy();
childScope = undefined;
}
if(newVal) {
childScope = $scope.$new();
transclude(childScope, function (clone) {
childElement = clone;
$animate.enter(clone, $element.parent(), $element);
});
}
});
$rbac.enqueueChecking($attr.allow);
}
}
};
}]);