1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 13:41:57 +02:00
onion/js/utils/requests.js

174 lines
5.1 KiB
JavaScript
Raw Normal View History

'use strict';
2015-07-24 13:44:28 +02:00
import Q from 'q';
2015-07-17 15:41:09 +02:00
import AppConstants from '../constants/application_constants';
2015-06-01 14:22:04 +02:00
import { getCookie } from '../utils/fetch_api_utils';
import { excludePropFromObject } from '../utils/general_utils';
import { argsToQueryParams } from '../utils/url_utils';
2015-06-01 14:22:04 +02:00
class Requests {
2015-06-01 14:22:04 +02:00
_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) {
2015-07-17 16:23:25 +02:00
throw new Error(response.status + ' - ' + response.statusText + ' - on URL:' + response.url);
2015-06-01 14:22:04 +02:00
}
2015-07-24 13:44:28 +02:00
return Q.Promise((resolve, reject) => {
2015-07-17 16:44:24 +02:00
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);
2015-09-08 11:44:05 +02:00
2015-07-17 16:44:24 +02:00
if(body && body.errors) {
let error = new Error('Form Error');
error.json = body;
reject(error);
2015-07-17 18:10:11 +02:00
} else if(body && body.detail) {
reject(new Error(body.detail));
2015-07-17 16:44:24 +02:00
} 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);
});
});
2015-06-30 17:57:20 +02:00
}
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;
}
};
2015-06-01 14:22:04 +02:00
}
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.');
}
2015-06-01 14:22:04 +02:00
let name = url;
if (!url.match(/^http/)) {
url = this.urlMap[url];
if (!url) {
2015-07-17 15:41:09 +02:00
throw new Error(`Cannot find a mapping for "${name}"`);
2015-06-01 14:22:04 +02:00
}
}
return url;
}
2015-06-01 16:45:09 +02:00
prepareUrl(url, params, attachParamsToQuery) {
let newUrl;
2015-06-01 14:22:04 +02:00
let re = /\${(\w+)}/g;
2015-06-02 16:47:25 +02:00
// catch errors and throw them to react
try {
newUrl = this.getUrl(url);
} catch(err) {
throw err;
}
2015-08-06 10:09:25 +02:00
2015-06-01 14:22:04 +02:00
newUrl = newUrl.replace(re, (match, key) => {
let val = params[key];
2015-06-01 14:22:04 +02:00
if (!val) {
throw new Error(`Cannot find param ${key}`);
}
delete params[key];
return val;
});
2015-06-01 16:45:09 +02:00
if (attachParamsToQuery && params && Object.keys(params).length > 0) {
newUrl += argsToQueryParams(params);
2015-06-01 14:22:04 +02:00
}
return newUrl;
}
request(verb, url, options) {
options = options || {};
let merged = this._merge(this.httpOptions, options);
2015-07-16 18:17:45 +02:00
let csrftoken = getCookie(AppConstants.csrftoken);
2015-06-16 19:28:21 +02:00
if (csrftoken) {
merged.headers['X-CSRFToken'] = csrftoken;
}
merged.method = verb;
return fetch(url, merged)
2015-06-01 16:45:09 +02:00
.then(this.unpackResponse)
.catch(this.handleError(url));
2015-06-01 14:22:04 +02:00
}
2015-06-01 16:45:09 +02:00
get(url, params) {
2015-06-20 16:43:18 +02:00
if (url === undefined){
throw new Error('Url undefined');
}
2015-06-01 16:45:09 +02:00
let paramsCopy = this._merge(params);
2015-06-09 17:24:06 +02:00
let newUrl = this.prepareUrl(url, paramsCopy, true);
2015-06-02 14:33:00 +02:00
return this.request('get', newUrl);
2015-06-01 14:22:04 +02:00
}
2015-06-10 15:49:46 +02:00
delete(url, params) {
let paramsCopy = this._merge(params);
let newUrl = this.prepareUrl(url, paramsCopy, true);
return this.request('delete', newUrl);
}
2015-09-04 16:24:29 +02:00
_putOrPost(url, paramsAndBody, method){
2015-09-03 15:53:02 +02:00
let paramsCopy = this._merge(paramsAndBody);
2015-09-08 11:53:09 +02:00
let params = excludePropFromObject(paramsAndBody, ['body']);
2015-09-03 15:53:02 +02:00
let newUrl = this.prepareUrl(url, params);
2015-06-01 17:43:38 +02:00
let body = null;
2015-06-09 17:24:06 +02:00
if (paramsCopy && paramsCopy.body) {
body = JSON.stringify(paramsCopy.body);
2015-06-01 17:43:38 +02:00
}
2015-09-03 15:53:02 +02:00
return this.request(method, newUrl, { body });
}
post(url, params) {
2015-09-07 16:36:31 +02:00
return this._putOrPost(url, params, 'post');
2015-09-03 15:53:02 +02:00
}
put(url, params){
2015-09-07 16:36:31 +02:00
return this._putOrPost(url, params, 'put');
2015-06-01 14:22:04 +02:00
}
patch(url, params){
return this._putOrPost(url, params, 'patch');
}
2015-06-01 14:22:04 +02:00
defaults(options) {
this.httpOptions = options.http || {};
this.urlMap = options.urlMap || {};
}
}
let requests = new Requests();
2015-06-01 14:22:04 +02:00
export default requests;