2016-06-06 10:09:01 -04:00
|
|
|
|
var defaults = require('lodash.defaults');
|
2016-08-10 15:33:17 -04:00
|
|
|
|
var defaultsDeep = require('lodash.defaultsdeep');
|
2016-06-06 10:09:01 -04:00
|
|
|
|
var xhr = require('xhr');
|
|
|
|
|
|
|
|
|
|
var jar = require('./jar');
|
|
|
|
|
var log = require('./log');
|
|
|
|
|
var urlParams = require('./url-params');
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Helper method that constructs requests to the scratch api.
|
|
|
|
|
* Custom arguments:
|
|
|
|
|
* - useCsrf [boolean] – handles unique csrf token retrieval for POST requests. This prevents
|
|
|
|
|
* CSRF forgeries (see: https://www.squarefree.com/securitytips/web-developers.html#CSRF)
|
|
|
|
|
*
|
|
|
|
|
* It also takes in other arguments specified in the xhr library spec.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
module.exports = function (opts, callback) {
|
2016-08-10 15:33:17 -04:00
|
|
|
|
defaultsDeep(opts, {
|
2016-06-06 10:09:01 -04:00
|
|
|
|
host: process.env.API_HOST,
|
2016-08-11 14:54:13 -04:00
|
|
|
|
headers: {},
|
2016-06-16 17:24:31 -04:00
|
|
|
|
responseType: 'json',
|
2016-06-06 10:09:01 -04:00
|
|
|
|
useCsrf: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
opts.uri = opts.host + opts.uri;
|
|
|
|
|
|
|
|
|
|
if (opts.params) {
|
|
|
|
|
opts.uri = [opts.uri, urlParams(opts.params)]
|
|
|
|
|
.join(opts.uri.indexOf('?') === -1 ? '?' : '&');
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-16 17:24:31 -04:00
|
|
|
|
if (opts.formData) {
|
|
|
|
|
opts.body = urlParams(opts.formData);
|
|
|
|
|
opts.headers['Content-Type'] = 'application/x-www-form-urlencoded';
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-06 10:09:01 -04:00
|
|
|
|
var apiRequest = function (opts) {
|
|
|
|
|
if (opts.host !== '') {
|
|
|
|
|
// For IE < 10, we must use XDR for cross-domain requests. XDR does not support
|
|
|
|
|
// custom headers.
|
|
|
|
|
defaults(opts, {useXDR: true});
|
2016-08-10 15:33:17 -04:00
|
|
|
|
if (opts.useXDR) {
|
|
|
|
|
delete opts.headers;
|
|
|
|
|
}
|
2016-06-06 10:09:01 -04:00
|
|
|
|
if (opts.authentication) {
|
|
|
|
|
var authenticationParams = ['x-token=' + opts.authentication];
|
|
|
|
|
var parts = opts.uri.split('?');
|
|
|
|
|
var qs = (parts[1] || '').split('&').concat(authenticationParams).join('&');
|
|
|
|
|
opts.uri = parts[0] + '?' + qs;
|
|
|
|
|
|
|
|
|
|
}
|
2016-08-11 14:54:13 -04:00
|
|
|
|
} else {
|
|
|
|
|
opts['X-Requested-With'] = 'XMLHttpRequest';
|
2016-06-06 10:09:01 -04:00
|
|
|
|
}
|
|
|
|
|
xhr(opts, function (err, res, body) {
|
|
|
|
|
if (err) log.error(err);
|
2016-07-03 15:54:37 -04:00
|
|
|
|
if (opts.responseType === 'json' && typeof body === 'string') {
|
|
|
|
|
// IE doesn't parse responses as JSON without the json attribute,
|
|
|
|
|
// even with responseType: 'json'.
|
|
|
|
|
// See https://github.com/Raynos/xhr/issues/123
|
|
|
|
|
try {
|
|
|
|
|
body = JSON.parse(body);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
// Not parseable anyway, don't worry about it
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-06 10:09:01 -04:00
|
|
|
|
// Legacy API responses come as lists, and indicate to redirect the client like
|
|
|
|
|
// [{success: true, redirect: "/location/to/redirect"}]
|
|
|
|
|
try {
|
|
|
|
|
if ('redirect' in body[0]) window.location = body[0].redirect;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
callback(err, body, res);
|
|
|
|
|
});
|
|
|
|
|
}.bind(this);
|
|
|
|
|
|
|
|
|
|
if (typeof jar.get('scratchlanguage') !== 'undefined') {
|
|
|
|
|
opts.headers['Accept-Language'] = jar.get('scratchlanguage') + ', en;q=0.8';
|
|
|
|
|
}
|
|
|
|
|
if (opts.authentication) {
|
|
|
|
|
opts.headers['X-Token'] = opts.authentication;
|
|
|
|
|
}
|
|
|
|
|
if (opts.useCsrf) {
|
|
|
|
|
jar.use('scratchcsrftoken', '/csrf_token/', function (err, csrftoken) {
|
|
|
|
|
if (err) return log.error('Error while retrieving CSRF token', err);
|
|
|
|
|
opts.headers['X-CSRFToken'] = csrftoken;
|
|
|
|
|
apiRequest(opts);
|
|
|
|
|
}.bind(this));
|
|
|
|
|
} else {
|
|
|
|
|
apiRequest(opts);
|
|
|
|
|
}
|
|
|
|
|
};
|