21 lines
784 B
JavaScript
21 lines
784 B
JavaScript
import AbstractAbility from './abstract';
|
|
import { computed, get } from '@ember/object';
|
|
import { or } from '@ember/object/computed';
|
|
|
|
export default AbstractAbility.extend({
|
|
// Map abilities to policy options (which are coarse for nodes)
|
|
// instead of specific behaviors.
|
|
canWrite: or('bypassAuthorization', 'selfTokenIsManagement', 'policiesIncludeNodeWrite'),
|
|
|
|
policiesIncludeNodeWrite: computed('token.selfTokenPolicies.[]', function() {
|
|
// For each policy record, extract the Node policy
|
|
const policies = (this.get('token.selfTokenPolicies') || [])
|
|
.toArray()
|
|
.map(policy => get(policy, 'rulesJSON.Node.Policy'))
|
|
.compact();
|
|
|
|
// Node write is allowed if any policy allows it
|
|
return policies.some(policy => policy === 'write');
|
|
}),
|
|
});
|