mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
5a6c827f0b
Conflicts: js/components/ascribe_detail/edition_container.js js/components/ascribe_detail/piece_container.js
173 lines
5.3 KiB
JavaScript
173 lines
5.3 KiB
JavaScript
'use strict';
|
|
|
|
import Q from 'q';
|
|
|
|
import AppConstants from '../constants/application_constants';
|
|
|
|
import { getCookie } from '../utils/fetch_api_utils';
|
|
import { omitFromObject } from '../utils/general_utils';
|
|
import { argsToQueryParams } from '../utils/url_utils';
|
|
|
|
|
|
class Requests {
|
|
unpackResponse(response) {
|
|
if (response.status >= 500) {
|
|
throw new Error(response.status + ' - ' + response.statusText + ' - on URL:' + response.url);
|
|
}
|
|
|
|
return Q.Promise((resolve, reject) => {
|
|
response.text()
|
|
.then((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') {
|
|
let body = JSON.parse(responseText);
|
|
|
|
if(body && body.errors) {
|
|
let error = new Error('Form Error');
|
|
error.json = body;
|
|
reject(error);
|
|
} else if(body && body.detail) {
|
|
reject(new Error(body.detail));
|
|
} else if(!body.success) {
|
|
let error = new Error('Client Request Error');
|
|
error.json = {
|
|
status: response.status,
|
|
statusText: response.statusText,
|
|
type: response.type,
|
|
url: response.url
|
|
};
|
|
reject(error);
|
|
} else {
|
|
resolve(body);
|
|
}
|
|
|
|
} else {
|
|
if(response.status >= 400) {
|
|
reject(new Error(response.status + ' - ' + response.statusText + ' - on URL:' + response.url));
|
|
} else {
|
|
resolve({});
|
|
}
|
|
}
|
|
}).catch((err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
handleError(url) {
|
|
return (err) => {
|
|
if (err instanceof TypeError) {
|
|
throw new Error('For: ' + url + ' - Server did not respond to the request. (Not even displayed a 500)');
|
|
} else {
|
|
throw err;
|
|
}
|
|
};
|
|
}
|
|
|
|
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 Error(`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 = Object.assign({}, 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)
|
|
.catch(this.handleError(url));
|
|
}
|
|
|
|
get(url, params) {
|
|
if (url === undefined) {
|
|
throw new Error('Url undefined');
|
|
}
|
|
let paramsCopy = Object.assign({}, params);
|
|
let newUrl = this.prepareUrl(url, paramsCopy, true);
|
|
return this.request('get', newUrl);
|
|
}
|
|
|
|
delete(url, params) {
|
|
let paramsCopy = Object.assign({}, params);
|
|
let newUrl = this.prepareUrl(url, paramsCopy, true);
|
|
return this.request('delete', newUrl);
|
|
}
|
|
|
|
_putOrPost(url, paramsAndBody, method) {
|
|
let paramsCopy = Object.assign({}, paramsAndBody);
|
|
let params = omitFromObject(paramsAndBody, ['body']);
|
|
let newUrl = this.prepareUrl(url, params);
|
|
let body = null;
|
|
if (paramsCopy && paramsCopy.body) {
|
|
body = JSON.stringify(paramsCopy.body);
|
|
}
|
|
return this.request(method, newUrl, { body });
|
|
}
|
|
|
|
post(url, params) {
|
|
return this._putOrPost(url, params, 'post');
|
|
}
|
|
|
|
put(url, params) {
|
|
return this._putOrPost(url, params, 'put');
|
|
}
|
|
|
|
patch(url, params) {
|
|
return this._putOrPost(url, params, 'patch');
|
|
}
|
|
|
|
defaults(options) {
|
|
this.httpOptions = options.http || {};
|
|
this.urlMap = options.urlMap || {};
|
|
}
|
|
}
|
|
|
|
|
|
let requests = new Requests();
|
|
|
|
export default requests;
|