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';
|
2020-01-20 20:57:01 +00:00
|
|
|
import { alias } from '@ember/object/computed';
|
|
|
|
import { getOwner } from '@ember/application';
|
2017-12-15 21:39:18 +00:00
|
|
|
import { assign } from '@ember/polyfills';
|
2020-01-20 20:57:01 +00:00
|
|
|
import { task } from 'ember-concurrency';
|
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({
|
2020-01-20 20:57:01 +00:00
|
|
|
store: service(),
|
2018-08-08 23:10:22 +00:00
|
|
|
system: service(),
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
secret: computed({
|
|
|
|
get() {
|
2018-08-28 17:05:15 +00:00
|
|
|
return window.localStorage.nomadTokenSecret;
|
2017-09-19 14:47:10 +00:00
|
|
|
},
|
|
|
|
set(key, value) {
|
|
|
|
if (value == null) {
|
2018-08-28 17:05:15 +00:00
|
|
|
window.localStorage.removeItem('nomadTokenSecret');
|
2017-09-19 14:47:10 +00:00
|
|
|
} else {
|
2018-08-28 17:05:15 +00:00
|
|
|
window.localStorage.nomadTokenSecret = value;
|
2017-09-19 14:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
},
|
|
|
|
}),
|
2017-10-07 00:14:08 +00:00
|
|
|
|
2020-01-20 20:57:01 +00:00
|
|
|
fetchSelfToken: task(function*() {
|
|
|
|
const TokenAdapter = getOwner(this).lookup('adapter:token');
|
|
|
|
try {
|
|
|
|
return yield TokenAdapter.findSelf();
|
|
|
|
} catch (e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
selfToken: alias('fetchSelfToken.lastSuccessful.value'),
|
|
|
|
|
|
|
|
fetchSelfTokenPolicies: task(function*() {
|
|
|
|
try {
|
|
|
|
if (this.selfToken) {
|
|
|
|
return yield this.selfToken.get('policies');
|
|
|
|
} else {
|
|
|
|
let policy = yield this.store.findRecord('policy', 'anonymous');
|
|
|
|
return [policy];
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
selfTokenPolicies: alias('fetchSelfTokenPolicies.lastSuccessful.value'),
|
|
|
|
|
|
|
|
fetchSelfTokenAndPolicies: task(function*() {
|
|
|
|
yield this.fetchSelfToken.perform();
|
|
|
|
yield this.fetchSelfTokenPolicies.perform();
|
|
|
|
}),
|
|
|
|
|
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 = {};
|
2019-03-26 07:46:44 +00:00
|
|
|
const token = this.secret;
|
2017-10-07 00:14:08 +00:00
|
|
|
|
|
|
|
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}`;
|
|
|
|
}
|