81 lines
1.9 KiB
JavaScript
81 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import ApplicationAdapter from './application';
|
|
import { encodePath } from 'vault/utils/path-encoding-helpers';
|
|
|
|
export default ApplicationAdapter.extend({
|
|
namespace: 'v1',
|
|
|
|
createOrUpdate(store, type, snapshot, requestType) {
|
|
const { name, backend } = snapshot.record;
|
|
const serializer = store.serializerFor(type.modelName);
|
|
const data = serializer.serialize(snapshot, requestType);
|
|
const url = this.urlForRole(backend, name);
|
|
|
|
return this.ajax(url, 'POST', { data }).then((resp) => {
|
|
// Ember data doesn't like 204 responses except for DELETE method
|
|
const response = resp || { data: {} };
|
|
response.data.name = name;
|
|
response.data.backend = name;
|
|
return response;
|
|
});
|
|
},
|
|
|
|
createRecord() {
|
|
return this.createOrUpdate(...arguments);
|
|
},
|
|
|
|
updateRecord() {
|
|
return this.createOrUpdate(...arguments, 'update');
|
|
},
|
|
|
|
deleteRecord(store, type, snapshot) {
|
|
const { id } = snapshot;
|
|
return this.ajax(this.urlForRole(snapshot.record.get('backend'), id), 'DELETE');
|
|
},
|
|
|
|
pathForType() {
|
|
return 'roles';
|
|
},
|
|
|
|
urlForRole(backend, id) {
|
|
let url = `${this.buildURL()}/${encodePath(backend)}/roles`;
|
|
if (id) {
|
|
url = url + '/' + encodePath(id);
|
|
}
|
|
return url;
|
|
},
|
|
|
|
optionsForQuery(id) {
|
|
const data = {};
|
|
if (!id) {
|
|
data['list'] = true;
|
|
}
|
|
return { data };
|
|
},
|
|
|
|
fetchByQuery(store, query) {
|
|
const { id, backend } = query;
|
|
return this.ajax(this.urlForRole(backend, id), 'GET', this.optionsForQuery(id)).then((resp) => {
|
|
const data = {
|
|
id,
|
|
name: id,
|
|
backend,
|
|
};
|
|
|
|
return { ...resp, ...data };
|
|
});
|
|
},
|
|
|
|
query(store, type, query) {
|
|
return this.fetchByQuery(store, query);
|
|
},
|
|
|
|
queryRecord(store, type, query) {
|
|
return this.fetchByQuery(store, query);
|
|
},
|
|
});
|