2018-04-03 14:16:57 +00:00
|
|
|
import Ember from 'ember';
|
|
|
|
import DS from 'ember-data';
|
|
|
|
import fetch from 'fetch';
|
|
|
|
|
|
|
|
const POLLING_URL_PATTERNS = ['sys/seal-status', 'sys/health', 'sys/replication/status'];
|
2018-07-19 01:59:04 +00:00
|
|
|
const { inject, assign, set, RSVP } = Ember;
|
2018-04-03 14:16:57 +00:00
|
|
|
|
|
|
|
export default DS.RESTAdapter.extend({
|
2018-07-19 01:59:04 +00:00
|
|
|
auth: inject.service(),
|
|
|
|
controlGroup: inject.service(),
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-07-19 01:59:04 +00:00
|
|
|
flashMessages: inject.service(),
|
2018-04-03 14:16:57 +00:00
|
|
|
|
|
|
|
namespace: 'v1/sys',
|
|
|
|
|
|
|
|
shouldReloadAll() {
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
shouldReloadRecord() {
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
shouldBackgroundReloadRecord() {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_preRequest(url, options) {
|
2018-07-05 18:28:12 +00:00
|
|
|
const token = options.clientToken || this.get('auth.currentToken');
|
2018-04-03 14:16:57 +00:00
|
|
|
if (token && !options.unauthenticated) {
|
2018-07-19 01:59:04 +00:00
|
|
|
options.headers = assign(options.headers || {}, {
|
2018-04-03 14:16:57 +00:00
|
|
|
'X-Vault-Token': token,
|
|
|
|
});
|
|
|
|
if (options.wrapTTL) {
|
2018-07-19 01:59:04 +00:00
|
|
|
assign(options.headers, { 'X-Vault-Wrap-TTL': options.wrapTTL });
|
2018-04-03 14:16:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const isPolling = POLLING_URL_PATTERNS.some(str => url.includes(str));
|
|
|
|
if (!isPolling) {
|
|
|
|
this.get('auth').setLastFetch(Date.now());
|
|
|
|
}
|
|
|
|
if (this.get('auth.shouldRenew')) {
|
|
|
|
this.get('auth').renew();
|
|
|
|
}
|
|
|
|
options.timeout = 60000;
|
|
|
|
return options;
|
|
|
|
},
|
|
|
|
|
2018-07-19 01:59:04 +00:00
|
|
|
ajax(intendedUrl, method, passedOptions = {}) {
|
|
|
|
let url = intendedUrl;
|
|
|
|
let type = method;
|
|
|
|
let options = passedOptions;
|
|
|
|
let controlGroup = this.get('controlGroup');
|
|
|
|
let 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,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
2018-04-03 14:16:57 +00:00
|
|
|
let opts = this._preRequest(url, options);
|
|
|
|
|
|
|
|
return this._super(url, type, opts).then((...args) => {
|
2018-07-19 01:59:04 +00:00
|
|
|
if (controlGroupToken) {
|
|
|
|
controlGroup.deleteControlGroupToken(controlGroupToken.accessor);
|
|
|
|
}
|
2018-04-03 14:16:57 +00:00
|
|
|
const [resp] = args;
|
|
|
|
if (resp && resp.warnings) {
|
2018-07-19 01:59:04 +00:00
|
|
|
let flash = this.get('flashMessages');
|
2018-04-03 14:16:57 +00:00
|
|
|
resp.warnings.forEach(message => {
|
|
|
|
flash.info(message);
|
|
|
|
});
|
|
|
|
}
|
2018-07-19 01:59:04 +00:00
|
|
|
return controlGroup.checkForControlGroup(args, resp, options.wrapTTL);
|
2018-04-03 14:16:57 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// for use on endpoints that don't return JSON responses
|
|
|
|
rawRequest(url, type, options = {}) {
|
|
|
|
let opts = this._preRequest(url, options);
|
|
|
|
return fetch(url, {
|
|
|
|
method: type | 'GET',
|
|
|
|
headers: opts.headers | {},
|
|
|
|
}).then(response => {
|
|
|
|
if (response.status >= 200 && response.status < 300) {
|
2018-07-19 01:59:04 +00:00
|
|
|
return RSVP.resolve(response);
|
2018-04-03 14:16:57 +00:00
|
|
|
} else {
|
2018-07-19 01:59:04 +00:00
|
|
|
return RSVP.reject();
|
2018-04-03 14:16:57 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
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 DS.AdapterError) {
|
2018-07-19 01:59:04 +00:00
|
|
|
set(returnVal, 'httpStatus', status);
|
|
|
|
set(returnVal, 'path', requestData.url);
|
2018-04-03 14:16:57 +00:00
|
|
|
}
|
|
|
|
return returnVal;
|
|
|
|
},
|
|
|
|
});
|