2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/core/server/utils/request.js
2017-12-12 10:28:13 +01:00

26 lines
762 B
JavaScript

var got = require('got'),
Promise = require('bluebird'),
validator = require('../data/validation').validator,
errors = require('../lib/common/errors'),
_ = require('lodash');
module.exports = function request(url, options) {
if (_.isEmpty(url) || !validator.isURL(url)) {
return Promise.reject(new errors.InternalServerError({
message: 'URL empty or invalid.',
code: 'URL_MISSING_INVALID',
context: url
}));
}
return new Promise(function (resolve, reject) {
return got(
url,
options
).then(function (response) {
return resolve(response);
}).catch(function (err) {
return reject(err);
});
});
};