mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-21 18:51:41 +01:00
53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
import { computed } from '@ember/object';
|
||
import DS from 'ember-data';
|
||
import { apiPath } from 'vault/macros/lazy-capabilities';
|
||
import attachCapabilities from 'vault/lib/attach-capabilities';
|
||
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
|
||
|
||
const { attr } = DS;
|
||
|
||
const Model = DS.Model.extend({
|
||
idPrefix: 'template/',
|
||
idForNav: computed('id', 'idPrefix', function() {
|
||
let modelId = this.id || '';
|
||
return `${this.idPrefix}${modelId}`;
|
||
}),
|
||
|
||
name: attr('string', {
|
||
label: 'Name',
|
||
fieldValue: 'id',
|
||
readOnly: true,
|
||
subText:
|
||
'Templates allow Vault to determine what and how to capture the value to be transformed. This cannot be edited later.',
|
||
}),
|
||
type: attr('string', { defaultValue: 'regex' }),
|
||
pattern: attr('string', {
|
||
subText: 'The template’s pattern defines the data format. Expressed in regex.',
|
||
}),
|
||
alphabet: attr('array', {
|
||
subText:
|
||
'Alphabet defines a set of characters (UTF-8) that is used for FPE to determine the validity of plaintext and ciphertext values. You can choose a built-in one, or create your own.',
|
||
editType: 'searchSelect',
|
||
fallbackComponent: 'string-list',
|
||
label: 'Alphabet',
|
||
models: ['transform/alphabet'],
|
||
selectLimit: 1,
|
||
}),
|
||
|
||
attrs: computed('pattern', 'alphabet', function() {
|
||
let keys = ['name', 'pattern', 'alphabet'];
|
||
return expandAttributeMeta(this, keys);
|
||
}),
|
||
|
||
editableAttrs: computed('pattern', 'alphabet', function() {
|
||
let keys = ['pattern', 'alphabet'];
|
||
return expandAttributeMeta(this, keys);
|
||
}),
|
||
|
||
backend: attr('string', { readOnly: true }),
|
||
});
|
||
|
||
export default attachCapabilities(Model, {
|
||
updatePath: apiPath`${'backend'}/template/${'id'}`,
|
||
});
|