c4cf16c3e3
* directly depend on route-recognizer * add path encode helper using route-recognizer normalizer methods * encode user-entered paths/ids for places we're not using the built-in ember data buildUrl method * encode secret link params * decode params from the url, and encode for linked-block and navigate-input components * add escape-string-regexp * use list-controller mixin and escape the string when contructing new Regex objects * encode paths in the console service * add acceptance tests for kv secrets * make encoding in linked-block an attribute, and use it on secret lists * egp endpoints are enterprise-only, so include 'enterprise' text in the test * fix routing test and exclude single quote from encoding tests * encode cli string before tokenizing * encode auth_path for use with urlFor * add test for single quote via UI input instead of web cli
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
import ApplicationAdapter from './application';
|
|
import { encodePath } from 'vault/utils/path-encoding-helpers';
|
|
|
|
export default ApplicationAdapter.extend({
|
|
revokePrefix(prefix) {
|
|
let url = this.buildURL() + '/leases/revoke-prefix/' + encodePath(prefix);
|
|
url = url.replace(/\/$/, '');
|
|
return this.ajax(url, 'PUT');
|
|
},
|
|
|
|
forceRevokePrefix(prefix) {
|
|
let url = this.buildURL() + '/leases/revoke-prefix/' + encodePath(prefix);
|
|
url = url.replace(/\/$/, '');
|
|
return this.ajax(url, 'PUT');
|
|
},
|
|
|
|
renew(lease_id, interval) {
|
|
let url = this.buildURL() + '/leases/renew';
|
|
return this.ajax(url, 'PUT', {
|
|
data: {
|
|
lease_id,
|
|
interval,
|
|
},
|
|
});
|
|
},
|
|
|
|
deleteRecord(store, type, snapshot) {
|
|
const lease_id = snapshot.id;
|
|
return this.ajax(this.buildURL() + '/leases/revoke', 'PUT', {
|
|
data: {
|
|
lease_id,
|
|
},
|
|
});
|
|
},
|
|
|
|
queryRecord(store, type, query) {
|
|
const { lease_id } = query;
|
|
return this.ajax(this.buildURL() + '/leases/lookup', 'PUT', {
|
|
data: {
|
|
lease_id,
|
|
},
|
|
});
|
|
},
|
|
|
|
query(store, type, query) {
|
|
const prefix = query.prefix || '';
|
|
return this.ajax(this.buildURL() + '/leases/lookup/' + encodePath(prefix), 'GET', {
|
|
data: {
|
|
list: true,
|
|
},
|
|
}).then(resp => {
|
|
if (prefix) {
|
|
resp.prefix = prefix;
|
|
}
|
|
return resp;
|
|
});
|
|
},
|
|
});
|