d56f0ccb72
* wait for all hash promises to be settled * skeleton tests with policies for write without read * adjust what gets returned from the model hook * refactor secret-edit model hook to use async/await * return a stub version if we can't read secret data * return a stub model for v1 kv * tweak tests to make re-runs friendlier * allow write without CAS if both v2 models cannot be read * show warnings on edit pages for different write without read scenarios * add no read empty states on secret show pages * review feedback * make message language consistent * use version models from metadata if we can read it * refresh route on delete / undelete / destroy * hide controls in the toolbar when you can't read the secret data * show deleted / destroyed messaging over cannot read messaging on the show page * fix test with model stub * refactor large model hook into several functions * comment clarifications
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
import { computed } from '@ember/object';
|
|
import { alias } from '@ember/object/computed';
|
|
import DS from 'ember-data';
|
|
import KeyMixin from 'vault/mixins/key-mixin';
|
|
const { attr } = DS;
|
|
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
|
|
|
|
export default DS.Model.extend(KeyMixin, {
|
|
auth: attr('string'),
|
|
lease_duration: attr('number'),
|
|
lease_id: attr('string'),
|
|
renewable: attr('boolean'),
|
|
|
|
secretData: attr('object'),
|
|
|
|
dataAsJSONString: computed('secretData', function() {
|
|
return JSON.stringify(this.get('secretData'), null, 2);
|
|
}),
|
|
|
|
isAdvancedFormat: computed('secretData', function() {
|
|
const data = this.get('secretData');
|
|
return data && Object.keys(data).some(key => typeof data[key] !== 'string');
|
|
}),
|
|
|
|
helpText: attr('string'),
|
|
// TODO this needs to be a relationship like `engine` on kv-v2
|
|
backend: attr('string'),
|
|
secretPath: lazyCapabilities(apiPath`${'backend'}/${'id'}`, 'backend', 'id'),
|
|
canEdit: alias('secretPath.canUpdate'),
|
|
canDelete: alias('secretPath.canDelete'),
|
|
canRead: alias('secretPath.canRead'),
|
|
});
|