2017-11-21 18:43:14 +03:00
|
|
|
// # Webhooks API
|
|
|
|
// RESTful API for creating webhooks
|
|
|
|
// also known as "REST Hooks", see http://resthooks.org
|
|
|
|
var Promise = require('bluebird'),
|
|
|
|
_ = require('lodash'),
|
2017-12-14 00:20:02 +03:00
|
|
|
pipeline = require('../lib/promise/pipeline'),
|
2017-12-14 00:14:19 +03:00
|
|
|
localUtils = require('./utils'),
|
2017-11-21 18:43:14 +03:00
|
|
|
models = require('../models'),
|
2017-12-12 00:47:46 +03:00
|
|
|
common = require('../lib/common'),
|
2017-12-14 13:00:34 +03:00
|
|
|
request = require('../lib/request'),
|
2017-11-21 18:43:14 +03:00
|
|
|
docName = 'webhooks',
|
|
|
|
webhooks;
|
|
|
|
|
|
|
|
function makeRequest(webhook, payload, options) {
|
|
|
|
var event = webhook.get('event'),
|
|
|
|
targetUrl = webhook.get('target_url'),
|
|
|
|
webhookId = webhook.get('id'),
|
2017-12-14 13:00:34 +03:00
|
|
|
reqPayload = JSON.stringify(payload);
|
2017-11-21 18:43:14 +03:00
|
|
|
|
2017-12-12 00:47:46 +03:00
|
|
|
common.logging.info('webhook.trigger', event, targetUrl);
|
2017-11-21 18:43:14 +03:00
|
|
|
|
2017-12-14 13:00:34 +03:00
|
|
|
request(targetUrl, {
|
|
|
|
body: reqPayload,
|
|
|
|
headers: {
|
|
|
|
'Content-Length': Buffer.byteLength(reqPayload),
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
timeout: 2 * 1000,
|
|
|
|
retries: 5
|
|
|
|
}).catch(function (err) {
|
2017-11-21 18:43:14 +03:00
|
|
|
// when a webhook responds with a 410 Gone response we should remove the hook
|
2017-12-14 13:00:34 +03:00
|
|
|
if (err.statusCode === 410) {
|
2017-12-12 00:47:46 +03:00
|
|
|
common.logging.info('webhook.destroy (410 response)', event, targetUrl);
|
2017-11-21 18:43:14 +03:00
|
|
|
return models.Webhook.destroy({id: webhookId}, options);
|
|
|
|
}
|
|
|
|
|
2017-12-12 00:47:46 +03:00
|
|
|
common.logging.error(new common.errors.GhostError({
|
2017-11-21 18:43:14 +03:00
|
|
|
err: err,
|
|
|
|
context: {
|
|
|
|
id: webhookId,
|
|
|
|
event: event,
|
|
|
|
target_url: targetUrl,
|
|
|
|
payload: payload
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function makeRequests(webhooksCollection, payload, options) {
|
|
|
|
_.each(webhooksCollection.models, function (webhook) {
|
|
|
|
makeRequest(webhook, payload, options);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ## Webhook API Methods
|
|
|
|
*
|
2017-12-14 16:13:40 +03:00
|
|
|
* **See:** [API Methods](constants.js.html#api%20methods)
|
2017-11-21 18:43:14 +03:00
|
|
|
*/
|
|
|
|
webhooks = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ### Add
|
|
|
|
* @param {Webhook} object the webhook to create
|
|
|
|
* @returns {Promise(Webhook)} newly created Webhook
|
|
|
|
*/
|
|
|
|
add: function add(object, options) {
|
|
|
|
var tasks;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ### Model Query
|
|
|
|
* Make the call to the Model layer
|
|
|
|
* @param {Object} options
|
|
|
|
* @returns {Object} options
|
|
|
|
*/
|
|
|
|
function doQuery(options) {
|
|
|
|
return models.Webhook.getByEventAndTarget(options.data.webhooks[0].event, options.data.webhooks[0].target_url, _.omit(options, ['data']))
|
|
|
|
.then(function (webhook) {
|
|
|
|
if (webhook) {
|
2017-12-12 00:47:46 +03:00
|
|
|
return Promise.reject(new common.errors.ValidationError({message: common.i18n.t('errors.api.webhooks.webhookAlreadyExists')}));
|
2017-11-21 18:43:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return models.Webhook.add(options.data.webhooks[0], _.omit(options, ['data']));
|
|
|
|
})
|
|
|
|
.then(function onModelResponse(model) {
|
|
|
|
return {
|
|
|
|
webhooks: [model.toJSON(options)]
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push all of our tasks into a `tasks` array in the correct order
|
|
|
|
tasks = [
|
2017-12-14 00:14:19 +03:00
|
|
|
localUtils.validate(docName),
|
|
|
|
localUtils.handlePermissions(docName, 'add'),
|
2017-11-21 18:43:14 +03:00
|
|
|
doQuery
|
|
|
|
];
|
|
|
|
|
|
|
|
// Pipeline calls each task passing the result of one to be the arguments for the next
|
|
|
|
return pipeline(tasks, object, options);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ## Destroy
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @param {{id, context}} options
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
|
|
|
destroy: function destroy(options) {
|
|
|
|
var tasks;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ### Delete Webhook
|
|
|
|
* Make the call to the Model layer
|
|
|
|
* @param {Object} options
|
|
|
|
*/
|
|
|
|
function doQuery(options) {
|
|
|
|
return models.Webhook.destroy(options).return(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push all of our tasks into a `tasks` array in the correct order
|
|
|
|
tasks = [
|
2017-12-14 00:14:19 +03:00
|
|
|
localUtils.validate(docName, {opts: localUtils.idDefaultOptions}),
|
|
|
|
localUtils.handlePermissions(docName, 'destroy'),
|
2017-11-21 18:43:14 +03:00
|
|
|
doQuery
|
|
|
|
];
|
|
|
|
|
|
|
|
// Pipeline calls each task passing the result of one to be the arguments for the next
|
|
|
|
return pipeline(tasks, options);
|
|
|
|
},
|
|
|
|
|
|
|
|
trigger: function trigger(event, payload, options) {
|
|
|
|
var tasks;
|
|
|
|
|
|
|
|
function doQuery(options) {
|
|
|
|
return models.Webhook.findAllByEvent(event, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks = [
|
|
|
|
doQuery,
|
|
|
|
_.partialRight(makeRequests, payload, options)
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, options);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = webhooks;
|