72 lines
2.5 KiB
JavaScript
72 lines
2.5 KiB
JavaScript
|
import { Ability } from 'ember-can';
|
||
|
import { inject as service } from '@ember/service';
|
||
|
import { computed, get } from '@ember/object';
|
||
|
import { equal, not } from '@ember/object/computed';
|
||
|
|
||
|
export default Ability.extend({
|
||
|
system: service(),
|
||
|
token: service(),
|
||
|
|
||
|
bypassAuthorization: not('token.aclEnabled'),
|
||
|
selfTokenIsManagement: equal('token.selfToken.type', 'management'),
|
||
|
|
||
|
activeNamespace: computed('system.activeNamespace.name', function() {
|
||
|
return this.get('system.activeNamespace.name') || 'default';
|
||
|
}),
|
||
|
|
||
|
rulesForActiveNamespace: computed('activeNamespace', 'token.selfTokenPolicies.[]', function() {
|
||
|
let activeNamespace = this.activeNamespace;
|
||
|
|
||
|
return (this.get('token.selfTokenPolicies') || []).toArray().reduce((rules, policy) => {
|
||
|
let policyNamespaces = get(policy, 'rulesJSON.Namespaces') || [];
|
||
|
|
||
|
let matchingNamespace = this._findMatchingNamespace(policyNamespaces, activeNamespace);
|
||
|
|
||
|
if (matchingNamespace) {
|
||
|
rules.push(policyNamespaces.find(namespace => namespace.Name === matchingNamespace));
|
||
|
}
|
||
|
|
||
|
return rules;
|
||
|
}, []);
|
||
|
}),
|
||
|
|
||
|
// Chooses the closest namespace as described at the bottom here:
|
||
|
// https://www.nomadproject.io/guides/security/acl.html#namespace-rules
|
||
|
_findMatchingNamespace(policyNamespaces, activeNamespace) {
|
||
|
let namespaceNames = policyNamespaces.mapBy('Name');
|
||
|
|
||
|
if (namespaceNames.includes(activeNamespace)) {
|
||
|
return activeNamespace;
|
||
|
}
|
||
|
|
||
|
let globNamespaceNames = namespaceNames.filter(namespaceName => namespaceName.includes('*'));
|
||
|
|
||
|
let matchingNamespaceName = globNamespaceNames.reduce(
|
||
|
(mostMatching, namespaceName) => {
|
||
|
// Convert * wildcards to .* for regex matching
|
||
|
let namespaceNameRegExp = new RegExp(namespaceName.replace(/\*/g, '.*'));
|
||
|
let characterDifference = activeNamespace.length - namespaceName.length;
|
||
|
|
||
|
if (
|
||
|
characterDifference < mostMatching.mostMatchingCharacterDifference &&
|
||
|
activeNamespace.match(namespaceNameRegExp)
|
||
|
) {
|
||
|
return {
|
||
|
mostMatchingNamespaceName: namespaceName,
|
||
|
mostMatchingCharacterDifference: characterDifference,
|
||
|
};
|
||
|
} else {
|
||
|
return mostMatching;
|
||
|
}
|
||
|
},
|
||
|
{ mostMatchingNamespaceName: null, mostMatchingCharacterDifference: Number.MAX_SAFE_INTEGER }
|
||
|
).mostMatchingNamespaceName;
|
||
|
|
||
|
if (matchingNamespaceName) {
|
||
|
return matchingNamespaceName;
|
||
|
} else if (namespaceNames.includes('default')) {
|
||
|
return 'default';
|
||
|
}
|
||
|
},
|
||
|
});
|