93 lines
2.9 KiB
JavaScript
93 lines
2.9 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
import { computed } from '@ember/object';
|
|
import fieldToAttrs, { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
|
import apiPath from 'vault/utils/api-path';
|
|
import attachCapabilities from 'vault/lib/attach-capabilities';
|
|
|
|
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']);
|
|
}),
|
|
|
|
tlsFields: computed(function () {
|
|
return ['tlsClientKeyBits', 'tlsClientKeyType', 'tlsClientTtl'];
|
|
}),
|
|
|
|
// For rendering on the create/edit pages
|
|
defaultFields: computed('newFields', 'operationFields', 'tlsFields', function () {
|
|
const excludeFields = ['role'].concat(this.operationFields, this.tlsFields);
|
|
return this.newFields.slice().removeObjects(excludeFields);
|
|
}),
|
|
|
|
// For adapter/serializer
|
|
nonOperationFields: computed('newFields', 'operationFields', function () {
|
|
return this.newFields.slice().removeObjects(this.operationFields);
|
|
}),
|
|
};
|
|
|
|
const ModelExport = Model.extend(COMPUTEDS, {
|
|
useOpenAPI: true,
|
|
backend: attr({ readOnly: true }),
|
|
scope: attr({ readOnly: true }),
|
|
name: attr({ readOnly: true }),
|
|
getHelpUrl(path) {
|
|
return `/v1/${path}/scope/example/role/example?help=1`;
|
|
},
|
|
fieldGroups: computed('fields', 'defaultFields.length', 'tlsFields', function () {
|
|
const groups = [{ TLS: this.tlsFields }];
|
|
if (this.defaultFields.length) {
|
|
groups.unshift({ default: this.defaultFields });
|
|
}
|
|
const ret = fieldToAttrs(this, groups);
|
|
return ret;
|
|
}),
|
|
|
|
operationFormFields: computed('operationFieldsWithoutSpecial', function () {
|
|
const objects = [
|
|
'operationCreate',
|
|
'operationActivate',
|
|
'operationGet',
|
|
'operationLocate',
|
|
'operationRekey',
|
|
'operationRevoke',
|
|
'operationDestroy',
|
|
];
|
|
|
|
const attributes = ['operationAddAttribute', 'operationGetAttributes'];
|
|
const server = ['operationDiscoverVersions'];
|
|
const others = this.operationFieldsWithoutSpecial
|
|
.slice()
|
|
.removeObjects(objects.concat(attributes, server));
|
|
const groups = [
|
|
{ 'Managed Cryptographic Objects': objects },
|
|
{ 'Object Attributes': attributes },
|
|
{ Server: server },
|
|
];
|
|
if (others.length) {
|
|
groups.push({
|
|
Other: others,
|
|
});
|
|
}
|
|
return fieldToAttrs(this, groups);
|
|
}),
|
|
tlsFormFields: computed('tlsFields', function () {
|
|
return expandAttributeMeta(this, this.tlsFields);
|
|
}),
|
|
fields: computed('defaultFields', function () {
|
|
return expandAttributeMeta(this, this.defaultFields);
|
|
}),
|
|
});
|
|
|
|
export default attachCapabilities(ModelExport, {
|
|
updatePath: apiPath`${'backend'}/scope/${'scope'}/role/${'id'}`,
|
|
});
|