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
75 lines
1.7 KiB
JavaScript
75 lines
1.7 KiB
JavaScript
import { isEmpty } from '@ember/utils';
|
|
import ApplicationAdapter from './application';
|
|
import { encodePath } from 'vault/utils/path-encoding-helpers';
|
|
|
|
export default ApplicationAdapter.extend({
|
|
namespace: 'v1',
|
|
|
|
createOrUpdate(store, type, snapshot) {
|
|
const serializer = store.serializerFor(type.modelName);
|
|
const data = serializer.serialize(snapshot);
|
|
const { id } = snapshot;
|
|
|
|
return this.ajax(this.urlForSecret(snapshot.attr('backend'), id), 'POST', { data });
|
|
},
|
|
|
|
createRecord() {
|
|
return this.createOrUpdate(...arguments);
|
|
},
|
|
|
|
updateRecord() {
|
|
return this.createOrUpdate(...arguments);
|
|
},
|
|
|
|
deleteRecord(store, type, snapshot) {
|
|
const { id } = snapshot;
|
|
return this.ajax(this.urlForSecret(snapshot.attr('backend'), id), 'DELETE');
|
|
},
|
|
|
|
urlForSecret(backend, id) {
|
|
let url = `${this.buildURL()}/${encodePath(backend)}/`;
|
|
if (!isEmpty(id)) {
|
|
url = url + encodePath(id);
|
|
}
|
|
|
|
return url;
|
|
},
|
|
|
|
pathForType() {
|
|
return 'mounts';
|
|
},
|
|
|
|
optionsForQuery(id, action, wrapTTL) {
|
|
let data = {};
|
|
if (action === 'query') {
|
|
data.list = true;
|
|
}
|
|
if (wrapTTL) {
|
|
return { data, wrapTTL };
|
|
}
|
|
return { data };
|
|
},
|
|
|
|
fetchByQuery(query, action) {
|
|
const { id, backend, wrapTTL } = query;
|
|
return this.ajax(this.urlForSecret(backend, id), 'GET', this.optionsForQuery(id, action, wrapTTL)).then(
|
|
resp => {
|
|
if (wrapTTL) {
|
|
return resp;
|
|
}
|
|
resp.id = id;
|
|
resp.backend = backend;
|
|
return resp;
|
|
}
|
|
);
|
|
},
|
|
|
|
query(store, type, query) {
|
|
return this.fetchByQuery(query, 'query');
|
|
},
|
|
|
|
queryRecord(store, type, query) {
|
|
return this.fetchByQuery(query, 'queryRecord');
|
|
},
|
|
});
|