open-vault/ui/app/adapters/kmip/base.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

70 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',
pathForType(type) {
return type.replace('kmip/', '');
},
_url(modelType, meta = {}, id) {
const { backend, scope, role } = meta;
const type = this.pathForType(modelType);
let base;
switch (type) {
case 'scope':
base = `${encodePath(backend)}/scope`;
break;
case 'role':
base = `${encodePath(backend)}/scope/${encodePath(scope)}/role`;
break;
case 'credential':
base = `${encodePath(backend)}/scope/${encodePath(scope)}/role/${encodePath(role)}/credential`;
break;
}
if (id && type === 'credential') {
return `/v1/${base}/lookup?serial_number=${encodePath(id)}`;
}
if (id) {
return `/v1/${base}/${encodePath(id)}`;
}
return `/v1/${base}`;
},
urlForQuery(query, modelType) {
const base = this._url(modelType, query);
return base + '?list=true';
},
query(store, type, query) {
return this.ajax(this.urlForQuery(query, type.modelName), 'GET').then((resp) => {
// remove pagination query items here
const { ...modelAttrs } = query;
resp._requestQuery = modelAttrs;
return resp;
});
},
queryRecord(store, type, query) {
const id = query.id;
delete query.id;
return this.ajax(this._url(type.modelName, query, id), 'GET').then((resp) => {
resp.id = id;
resp = { ...resp, ...query };
return resp;
});
},
buildURL(modelName, id, snapshot, requestType, query) {
if (requestType === 'createRecord') {
return this._super(...arguments);
}
return this._super(`${modelName}`, id, snapshot, requestType, query);
},
});