salix/client/core/src/lib/acl-service.js

36 lines
1.0 KiB
JavaScript
Raw Normal View History

2018-02-10 15:18:01 +00:00
import ngModule from '../module';
var acl = window.salix ? window.salix.acl : {};
2018-02-10 15:18:01 +00:00
ngModule.constant('aclConstant', acl);
2017-05-25 09:52:53 +00:00
2017-05-31 07:46:05 +00:00
aclService.$inject = ['aclConstant'];
function aclService(aclConstant) {
this.roles = aclConstant.roles || undefined;
2017-05-25 09:52:53 +00:00
this.routeHasPermission = function(route) {
let hasPermission;
2017-05-31 07:46:05 +00:00
if (!this.roles)
hasPermission = false;
else if (!route.acl)
2017-05-25 09:52:53 +00:00
hasPermission = true;
else if (!this.roles || !Object.keys(this.roles).length)
hasPermission = false;
else
hasPermission = this.aclPermission(route.acl);
return hasPermission;
};
this.aclPermission = function(aclCollection) {
let hasPermission = false;
let total = aclCollection.length;
for (let i = 0; i < total; i++) {
if (this.roles[aclCollection[i]]) {
hasPermission = true;
break;
}
}
return hasPermission;
};
}
2018-02-10 15:18:01 +00:00
ngModule.service('aclService', aclService);