mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
154 lines
4.2 KiB
JavaScript
154 lines
4.2 KiB
JavaScript
'use strict';
|
|
|
|
import { argsToQueryParams, getCookie } from '../utils/fetch_api_utils';
|
|
import AppConstants from '../constants/application_constants';
|
|
|
|
class UrlMapError extends Error {}
|
|
class ServerError extends Error {}
|
|
class APIError extends Error {}
|
|
|
|
|
|
class Requests {
|
|
_merge(defaults, options) {
|
|
let merged = {};
|
|
for (let key in defaults) {
|
|
merged[key] = defaults[key];
|
|
}
|
|
for (let key in options) {
|
|
merged[key] = options[key];
|
|
}
|
|
return merged;
|
|
}
|
|
|
|
unpackResponse(response) {
|
|
if (response.status >= 500) {
|
|
throw new ServerError();
|
|
} else if(response.status === 403) {
|
|
Raven.captureException('csrftoken error');
|
|
}
|
|
return response.text();
|
|
}
|
|
|
|
customJSONparse(responseText) {
|
|
// If the responses' body does not contain any data,
|
|
// fetch will resolve responseText to the string 'None'.
|
|
// If this is the case, we can not try to parse it as JSON.
|
|
if(responseText !== 'None') {
|
|
return JSON.parse(responseText);
|
|
} else {
|
|
return {};
|
|
}
|
|
}
|
|
|
|
handleFatalError(err) {
|
|
this.fatalErrorHandler(err);
|
|
throw new ServerError(err);
|
|
}
|
|
|
|
handleAPIError(json) {
|
|
if (json.success === false) {
|
|
let error = new APIError();
|
|
error.json = json;
|
|
//console.error(new Error('The \'success\' property is missing in the server\'s response.'));
|
|
throw error;
|
|
}
|
|
return json;
|
|
}
|
|
|
|
getUrl(url) {
|
|
// Handle case, that the url string is not defined at all
|
|
if (!url) {
|
|
throw new Error('Url was not defined and could therefore not be mapped.');
|
|
}
|
|
|
|
let name = url;
|
|
if (!url.match(/^http/)) {
|
|
url = this.urlMap[url];
|
|
if (!url) {
|
|
throw new UrlMapError(`Cannot find a mapping for "${name}"`);
|
|
}
|
|
}
|
|
|
|
return url;
|
|
}
|
|
|
|
prepareUrl(url, params, attachParamsToQuery) {
|
|
let newUrl;
|
|
let re = /\${(\w+)}/g;
|
|
|
|
// catch errors and throw them to react
|
|
try {
|
|
newUrl = this.getUrl(url);
|
|
} catch(err) {
|
|
throw err;
|
|
}
|
|
|
|
newUrl = newUrl.replace(re, (match, key) => {
|
|
let val = params[key];
|
|
if (!val) {
|
|
throw new Error(`Cannot find param ${key}`);
|
|
}
|
|
delete params[key];
|
|
return val;
|
|
});
|
|
|
|
if (attachParamsToQuery && params && Object.keys(params).length > 0) {
|
|
newUrl += argsToQueryParams(params);
|
|
}
|
|
|
|
return newUrl;
|
|
}
|
|
|
|
request(verb, url, options) {
|
|
options = options || {};
|
|
let merged = this._merge(this.httpOptions, options);
|
|
let csrftoken = getCookie(AppConstants.csrftoken);
|
|
if (csrftoken) {
|
|
merged.headers['X-CSRFToken'] = csrftoken;
|
|
}
|
|
merged.method = verb;
|
|
return fetch(url, merged)
|
|
.then(this.unpackResponse)
|
|
.then(this.customJSONparse)
|
|
.catch(this.handleFatalError.bind(this))
|
|
.then(this.handleAPIError);
|
|
}
|
|
|
|
get(url, params) {
|
|
if (url === undefined){
|
|
throw new Error('Url undefined');
|
|
}
|
|
let paramsCopy = this._merge(params);
|
|
let newUrl = this.prepareUrl(url, paramsCopy, true);
|
|
return this.request('get', newUrl);
|
|
}
|
|
|
|
delete(url, params) {
|
|
let paramsCopy = this._merge(params);
|
|
let newUrl = this.prepareUrl(url, paramsCopy, true);
|
|
return this.request('delete', newUrl);
|
|
}
|
|
|
|
post(url, params) {
|
|
let paramsCopy = this._merge(params);
|
|
let newUrl = this.prepareUrl(url, paramsCopy);
|
|
let body = null;
|
|
|
|
if (paramsCopy && paramsCopy.body) {
|
|
body = JSON.stringify(paramsCopy.body);
|
|
}
|
|
return this.request('post', newUrl, { body });
|
|
}
|
|
|
|
defaults(options) {
|
|
this.httpOptions = options.http || {};
|
|
this.urlMap = options.urlMap || {};
|
|
this.fatalErrorHandler = options.fatalErrorHandler || (() => {});
|
|
}
|
|
}
|
|
|
|
|
|
let requests = new Requests();
|
|
|
|
export default requests;
|