83 lines
1.9 KiB
JavaScript
83 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
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;
|
|
const path = snapshot.record.path;
|
|
return this.ajax(this.urlForSecret(snapshot.attr('backend'), path || id), 'POST', { data }).then(() => {
|
|
data.id = path || id;
|
|
return 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) {
|
|
const 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');
|
|
},
|
|
});
|