mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 05:31:10 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
130 lines
3.7 KiB
JavaScript
130 lines
3.7 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import AdapterError from '@ember-data/adapter/error';
|
|
import RESTAdapter from '@ember-data/adapter/rest';
|
|
import { inject as service } from '@ember/service';
|
|
import { assign } from '@ember/polyfills';
|
|
import { set } from '@ember/object';
|
|
import RSVP from 'rsvp';
|
|
import config from '../config/environment';
|
|
import fetch from 'fetch';
|
|
|
|
const { APP } = config;
|
|
const { POLLING_URLS, NAMESPACE_ROOT_URLS } = APP;
|
|
|
|
export default RESTAdapter.extend({
|
|
auth: service(),
|
|
namespaceService: service('namespace'),
|
|
controlGroup: service(),
|
|
|
|
flashMessages: service(),
|
|
|
|
namespace: 'v1/sys',
|
|
|
|
shouldReloadAll() {
|
|
return true;
|
|
},
|
|
|
|
shouldReloadRecord() {
|
|
return true;
|
|
},
|
|
|
|
shouldBackgroundReloadRecord() {
|
|
return false;
|
|
},
|
|
|
|
addHeaders(url, options) {
|
|
const token = options.clientToken || this.auth.currentToken;
|
|
const headers = {};
|
|
if (token && !options.unauthenticated) {
|
|
headers['X-Vault-Token'] = token;
|
|
}
|
|
if (options.wrapTTL) {
|
|
headers['X-Vault-Wrap-TTL'] = options.wrapTTL;
|
|
}
|
|
const namespace =
|
|
typeof options.namespace === 'undefined' ? this.namespaceService.path : options.namespace;
|
|
if (namespace && !NAMESPACE_ROOT_URLS.some((str) => url.includes(str))) {
|
|
headers['X-Vault-Namespace'] = namespace;
|
|
}
|
|
options.headers = assign(options.headers || {}, headers);
|
|
},
|
|
|
|
_preRequest(url, options) {
|
|
this.addHeaders(url, options);
|
|
const isPolling = POLLING_URLS.some((str) => url.includes(str));
|
|
if (!isPolling) {
|
|
this.auth.setLastFetch(Date.now());
|
|
}
|
|
options.timeout = 60000;
|
|
return options;
|
|
},
|
|
|
|
ajax(intendedUrl, method, passedOptions = {}) {
|
|
let url = intendedUrl;
|
|
let type = method;
|
|
let options = passedOptions;
|
|
const controlGroup = this.controlGroup;
|
|
const controlGroupToken = controlGroup.tokenForUrl(url);
|
|
// if we have a Control Group token that matches the intendedUrl,
|
|
// then we want to unwrap it and return the unwrapped response as
|
|
// if it were the initial request
|
|
// To do this, we rewrite the function args
|
|
if (controlGroupToken) {
|
|
url = '/v1/sys/wrapping/unwrap';
|
|
type = 'POST';
|
|
options = {
|
|
clientToken: controlGroupToken.token,
|
|
data: {
|
|
token: controlGroupToken.token,
|
|
},
|
|
};
|
|
}
|
|
const opts = this._preRequest(url, options);
|
|
|
|
return this._super(url, type, opts).then((...args) => {
|
|
if (controlGroupToken) {
|
|
controlGroup.deleteControlGroupToken(controlGroupToken.accessor);
|
|
}
|
|
const [resp] = args;
|
|
if (resp && resp.warnings) {
|
|
const flash = this.flashMessages;
|
|
resp.warnings.forEach((message) => {
|
|
flash.info(message);
|
|
});
|
|
}
|
|
return controlGroup.checkForControlGroup(args, resp, options.wrapTTL);
|
|
});
|
|
},
|
|
|
|
// for use on endpoints that don't return JSON responses
|
|
rawRequest(url, type, options = {}) {
|
|
const opts = this._preRequest(url, options);
|
|
return fetch(url, {
|
|
method: type || 'GET',
|
|
headers: opts.headers || {},
|
|
body: opts.body,
|
|
signal: opts.signal,
|
|
}).then((response) => {
|
|
if (response.status >= 200 && response.status < 300) {
|
|
return RSVP.resolve(response);
|
|
} else {
|
|
return RSVP.reject(response);
|
|
}
|
|
});
|
|
},
|
|
|
|
handleResponse(status, headers, payload, requestData) {
|
|
const returnVal = this._super(...arguments);
|
|
// ember data errors don't have the status code, so we add it here
|
|
if (returnVal instanceof AdapterError) {
|
|
set(returnVal, 'httpStatus', status);
|
|
set(returnVal, 'path', requestData.url);
|
|
}
|
|
return returnVal;
|
|
},
|
|
});
|