open-vault/ui/app/models/pki-certificate-sign.js
Angel Garbarino b06573a903
Move PKI components to PKI Folder (#15963)
* params

* fix tests

* role-pki to pki-role

* role-pki-edit to pki/role-pki-edit

* configure-pki-secret component

* config-pki and config-pki-ca components

* fix tests

* pki-cert-show and pki-cert-popup

* fix
2022-06-14 10:18:06 -06:00

35 lines
986 B
JavaScript

import { attr } from '@ember-data/model';
import { copy } from 'ember-copy';
import { computed } from '@ember/object';
import Certificate from './pki/pki-certificate';
import { combineFieldGroups } from 'vault/utils/openapi-to-attrs';
export default Certificate.extend({
signVerbatim: attr('boolean', {
readOnly: true,
defaultValue: false,
}),
useOpenAPI: true,
csr: attr('string', {
label: 'Certificate Signing Request (CSR)',
editType: 'textarea',
}),
fieldGroups: computed('newFields', 'signVerbatim', function () {
const options = { Options: ['altNames', 'ipSans', 'ttl', 'excludeCnFromSans', 'otherSans'] };
let groups = [
{
default: ['csr', 'commonName', 'format', 'signVerbatim'],
},
];
if (this.newFields) {
groups = combineFieldGroups(groups, this.newFields, []);
}
if (this.signVerbatim === false) {
groups.push(options);
}
return this.fieldsToAttrs(copy(groups, true));
}),
});