2023-01-09 03:34:30 +00:00
|
|
|
const { Errors } = require('./enig_error.js');
|
|
|
|
|
|
|
|
// deps
|
2023-02-12 19:38:52 +00:00
|
|
|
const { isString, isObject, truncate, get, has } = require('lodash');
|
2023-01-09 03:34:30 +00:00
|
|
|
const https = require('https');
|
|
|
|
const httpSignature = require('http-signature');
|
|
|
|
const crypto = require('crypto');
|
2023-02-12 19:38:52 +00:00
|
|
|
const Config = require('./config.js').get;
|
|
|
|
|
|
|
|
const TimeoutConfigPath = 'outbound.connectionTimeoutMilliseconds';
|
|
|
|
const DefaultTimeoutMilliseconds = 5000;
|
2023-01-09 03:34:30 +00:00
|
|
|
|
2023-01-12 05:37:09 +00:00
|
|
|
exports.getJson = getJson;
|
2023-01-09 03:34:30 +00:00
|
|
|
exports.postJson = postJson;
|
|
|
|
|
2023-01-12 05:37:09 +00:00
|
|
|
function getJson(url, options, cb) {
|
2023-01-14 06:55:05 +00:00
|
|
|
options = Object.assign({}, { method: 'GET' }, options);
|
2023-01-12 05:37:09 +00:00
|
|
|
|
2023-01-14 06:55:05 +00:00
|
|
|
return _makeRequest(url, options, (err, body, res) => {
|
2023-01-12 05:37:09 +00:00
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2023-02-05 17:42:30 +00:00
|
|
|
if (Array.isArray(options.validContentTypes)) {
|
|
|
|
const contentType = res.headers['content-type'] || '';
|
|
|
|
if (
|
|
|
|
!options.validContentTypes.some(ct => {
|
|
|
|
return contentType.startsWith(ct);
|
|
|
|
})
|
|
|
|
) {
|
|
|
|
return cb(Errors.HttpError(`Invalid Content-Type: ${contentType}`));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-12 05:37:09 +00:00
|
|
|
let parsed;
|
|
|
|
try {
|
|
|
|
parsed = JSON.parse(body);
|
|
|
|
} catch (e) {
|
|
|
|
return cb(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null, parsed, res);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-01-09 03:34:30 +00:00
|
|
|
function postJson(url, json, options, cb) {
|
|
|
|
if (!isString(json)) {
|
|
|
|
json = JSON.stringify(json);
|
|
|
|
}
|
|
|
|
|
2023-01-14 06:55:05 +00:00
|
|
|
options = Object.assign({}, { method: 'POST', body: json }, options);
|
|
|
|
if (
|
|
|
|
!options.headers ||
|
|
|
|
!Object.keys(options.headers).find(h => h.toLowerCase() === 'content-type')
|
|
|
|
) {
|
|
|
|
options.headers['Content-Type'] = 'application/json';
|
|
|
|
}
|
2023-01-09 03:34:30 +00:00
|
|
|
|
2023-01-14 06:55:05 +00:00
|
|
|
return _makeRequest(url, options, cb);
|
|
|
|
}
|
2023-01-09 03:34:30 +00:00
|
|
|
|
2023-01-14 06:55:05 +00:00
|
|
|
function _makeRequest(url, options, cb) {
|
2023-02-12 19:38:52 +00:00
|
|
|
let defaultTimeout = DefaultTimeoutMilliseconds;
|
|
|
|
// Only set to config value if it has one, this allows us to set it
|
|
|
|
// to zero, but still have a default if none is set
|
|
|
|
if (has(Config(), TimeoutConfigPath)) {
|
|
|
|
defaultTimeout = get(Config(), TimeoutConfigPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
options = Object.assign({}, options, { timeout: defaultTimeout }); // Let options override default timeout if needed
|
|
|
|
|
2023-01-14 06:55:05 +00:00
|
|
|
if (options.body) {
|
2023-02-09 04:32:54 +00:00
|
|
|
options.headers['Content-Length'] = Buffer.from(options.body).length;
|
2023-01-14 06:55:05 +00:00
|
|
|
|
|
|
|
if (options?.sign?.headers?.includes('digest')) {
|
2023-01-20 05:31:14 +00:00
|
|
|
options.headers['Digest'] =
|
|
|
|
'SHA-256=' +
|
|
|
|
crypto.createHash('sha256').update(options.body).digest('base64');
|
2023-01-14 06:55:05 +00:00
|
|
|
}
|
2023-01-09 03:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const req = https.request(url, options, res => {
|
|
|
|
let body = [];
|
|
|
|
res.on('data', d => {
|
|
|
|
body.push(d);
|
|
|
|
});
|
|
|
|
|
|
|
|
res.on('end', () => {
|
|
|
|
body = Buffer.concat(body).toString();
|
|
|
|
|
|
|
|
if (res.statusCode < 200 || res.statusCode > 299) {
|
2023-01-12 05:37:09 +00:00
|
|
|
return cb(
|
|
|
|
Errors.HttpError(
|
2023-02-08 19:53:56 +00:00
|
|
|
`URL ${url} HTTP error ${res.statusCode}: ${truncate(body, {
|
|
|
|
length: 128,
|
|
|
|
})}`
|
2023-01-14 06:55:05 +00:00
|
|
|
)
|
2023-01-12 05:37:09 +00:00
|
|
|
);
|
2023-01-09 03:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null, body, res);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if (isObject(options.sign)) {
|
|
|
|
try {
|
|
|
|
httpSignature.sign(req, options.sign);
|
|
|
|
} catch (e) {
|
|
|
|
req.destroy();
|
|
|
|
return cb(Errors.Invalid(`Invalid signing material: ${e}`));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
req.on('error', err => {
|
|
|
|
return cb(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
req.on('timeout', () => {
|
|
|
|
req.destroy();
|
|
|
|
return cb(Errors.Timeout('Timeout making HTTP request'));
|
|
|
|
});
|
|
|
|
|
2023-01-20 05:31:14 +00:00
|
|
|
if (options.body) {
|
|
|
|
req.write(options.body);
|
|
|
|
}
|
2023-01-12 05:37:09 +00:00
|
|
|
req.end();
|
|
|
|
}
|