-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathsecret.js
43 lines (37 loc) · 1.35 KB
/
secret.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import Model, { attr } from '@ember-data/model';
import { computed } from '@ember/object';
import { alias } from '@ember/object/computed';
import KeyMixin from 'vault/mixins/key-mixin';
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
export default Model.extend(KeyMixin, {
failedServerRead: attr('boolean'),
auth: attr('string'),
lease_duration: attr('number'),
lease_id: attr('string'),
renewable: attr('boolean'),
secretData: attr('object'),
secretKeyAndValue: computed('secretData', function () {
const data = this.secretData;
return Object.keys(data).map((key) => {
return { key, value: data[key] };
});
}),
dataAsJSONString: computed('secretData', function () {
return JSON.stringify(this.secretData, null, 2);
}),
isAdvancedFormat: computed('secretData', function () {
const data = this.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'),
});