/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: BUSL-1.1 */ /** * General use adapter to access specified paths on secrets engines * For example /:backend/config is a typical use case for this adapter * These types of records do not have an id and use the backend value of the secrets engine as the primaryKey in the serializer */ import ApplicationAdapter from 'vault/adapters/application'; import { encodePath } from 'vault/utils/path-encoding-helpers'; export default class SecretsEnginePathAdapter extends ApplicationAdapter { namespace = 'v1'; // define path value in extending class or pass into method directly _getURL(backend, path) { return `${this.buildURL()}/${encodePath(backend)}/${path || this.path}`; } urlForUpdateRecord(name, modelName, snapshot) { return this._getURL(snapshot.attr('backend')); } // primaryKey must be set to backend in serializer urlForDeleteRecord(backend) { return this._getURL(backend); } queryRecord(store, type, query) { const { backend } = query; return this.ajax(this._getURL(backend), 'GET').then((resp) => { resp.backend = backend; return resp; }); } createRecord() { return this._saveRecord(...arguments); } updateRecord() { return this._saveRecord(...arguments); } _saveRecord(store, { modelName }, snapshot) { const data = store.serializerFor(modelName).serialize(snapshot); const url = this._getURL(snapshot.attr('backend')); return this.ajax(url, 'POST', { data }).then(() => data); } }