2019-06-21 21:05:45 +00:00
|
|
|
import DS from 'ember-data';
|
|
|
|
import { computed } from '@ember/object';
|
2019-06-25 20:57:50 +00:00
|
|
|
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
|
|
import fieldToAttrs from 'vault/utils/field-to-attrs';
|
2019-06-28 21:07:45 +00:00
|
|
|
import apiPath from 'vault/utils/api-path';
|
|
|
|
import attachCapabilities from 'vault/lib/attach-capabilities';
|
2019-06-21 21:05:45 +00:00
|
|
|
|
|
|
|
const { attr } = DS;
|
2019-07-02 21:23:07 +00:00
|
|
|
export const COMPUTEDS = {
|
|
|
|
operationFields: computed('newFields', function() {
|
|
|
|
return this.newFields.filter(key => key.startsWith('operation'));
|
|
|
|
}),
|
|
|
|
|
|
|
|
operationFieldsWithoutSpecial: computed('operationFields', function() {
|
|
|
|
return this.operationFields.slice().removeObjects(['operationAll', 'operationNone']);
|
|
|
|
}),
|
|
|
|
|
|
|
|
nonOperationFields: computed('operationFields', function() {
|
|
|
|
let excludeFields = ['role'].concat(this.operationFields);
|
|
|
|
return this.newFields.slice().removeObjects(excludeFields);
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
|
|
|
|
const Model = DS.Model.extend(COMPUTEDS, {
|
2019-06-21 21:05:45 +00:00
|
|
|
useOpenAPI: true,
|
|
|
|
backend: attr({ readOnly: true }),
|
|
|
|
scope: attr({ readOnly: true }),
|
2019-07-02 21:23:07 +00:00
|
|
|
name: attr({ readOnly: true }),
|
2019-06-21 21:05:45 +00:00
|
|
|
getHelpUrl(path) {
|
|
|
|
return `/v1/${path}/scope/example/role/example?help=1`;
|
|
|
|
},
|
2019-07-02 21:23:07 +00:00
|
|
|
fieldGroups: computed('fields', 'nonOperationFields', function() {
|
|
|
|
const groups = [{ default: this.nonOperationFields }, { 'Allowed Operations': this.operationFields }];
|
|
|
|
let ret = fieldToAttrs(this, groups);
|
|
|
|
return ret;
|
2019-06-21 21:05:45 +00:00
|
|
|
}),
|
2019-06-25 20:57:50 +00:00
|
|
|
|
2019-07-02 21:23:07 +00:00
|
|
|
operationFormFields: computed('operationFieldsWithoutSpecial', function() {
|
|
|
|
return expandAttributeMeta(this, this.operationFieldsWithoutSpecial);
|
|
|
|
}),
|
|
|
|
fields: computed('nonOperationFields', function() {
|
|
|
|
return expandAttributeMeta(this, this.nonOperationFields);
|
2019-06-25 20:57:50 +00:00
|
|
|
}),
|
2019-06-21 21:05:45 +00:00
|
|
|
});
|
2019-06-28 21:07:45 +00:00
|
|
|
|
|
|
|
export default attachCapabilities(Model, {
|
|
|
|
updatePath: apiPath`${'backend'}/scope/${'scope'}/role/${'id'}`,
|
|
|
|
});
|