2018-08-08 23:10:22 +00:00
|
|
|
import Service, { inject as service } from '@ember/service';
|
2017-12-15 21:39:18 +00:00
|
|
|
import { computed } from '@ember/object';
|
|
|
|
import { assign } from '@ember/polyfills';
|
2018-08-08 23:10:22 +00:00
|
|
|
import queryString from 'query-string';
|
2017-11-14 18:50:29 +00:00
|
|
|
import fetch from 'nomad-ui/utils/fetch';
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
export default Service.extend({
|
2018-08-08 23:10:22 +00:00
|
|
|
system: service(),
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
secret: computed({
|
|
|
|
get() {
|
|
|
|
return window.sessionStorage.nomadTokenSecret;
|
|
|
|
},
|
|
|
|
set(key, value) {
|
|
|
|
if (value == null) {
|
|
|
|
window.sessionStorage.removeItem('nomadTokenSecret');
|
|
|
|
} else {
|
|
|
|
window.sessionStorage.nomadTokenSecret = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
},
|
|
|
|
}),
|
2017-10-07 00:14:08 +00:00
|
|
|
|
2018-08-08 23:10:22 +00:00
|
|
|
// All non Ember Data requests should go through authorizedRequest.
|
|
|
|
// However, the request that gets regions falls into that category.
|
|
|
|
// This authorizedRawRequest is necessary in order to fetch data
|
|
|
|
// with the guarantee of a token but without the automatic region
|
|
|
|
// param since the region cannot be known at this point.
|
|
|
|
authorizedRawRequest(url, options = { credentials: 'include' }) {
|
2017-10-07 00:14:08 +00:00
|
|
|
const headers = {};
|
|
|
|
const token = this.get('secret');
|
|
|
|
|
|
|
|
if (token) {
|
|
|
|
headers['X-Nomad-Token'] = token;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fetch(url, assign(options, { headers }));
|
|
|
|
},
|
2018-08-08 23:10:22 +00:00
|
|
|
|
|
|
|
authorizedRequest(url, options) {
|
2018-08-09 02:39:32 +00:00
|
|
|
if (this.get('system.shouldIncludeRegion')) {
|
|
|
|
const region = this.get('system.activeRegion');
|
|
|
|
if (region) {
|
|
|
|
url = addParams(url, { region });
|
|
|
|
}
|
2018-08-08 23:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return this.authorizedRawRequest(url, options);
|
|
|
|
},
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
2018-08-08 23:10:22 +00:00
|
|
|
|
|
|
|
function addParams(url, params) {
|
|
|
|
const paramsStr = queryString.stringify(params);
|
|
|
|
const delimiter = url.includes('?') ? '&' : '?';
|
|
|
|
return `${url}${delimiter}${paramsStr}`;
|
|
|
|
}
|