865366c7c8
no issue - the event chain works like this: - if a model registers an event, it get's triggered, because it's stronger than the base model - but you have to call the base model to agree on a contract, because base model implements generic logic in event handlers - this was inconsistently used
84 lines
2.5 KiB
JavaScript
84 lines
2.5 KiB
JavaScript
const Promise = require('bluebird'),
|
|
ghostBookshelf = require('./base');
|
|
|
|
let Webhook,
|
|
Webhooks;
|
|
|
|
Webhook = ghostBookshelf.Model.extend({
|
|
tableName: 'webhooks',
|
|
|
|
defaults() {
|
|
return {
|
|
api_version: 'v2',
|
|
status: 'available'
|
|
};
|
|
},
|
|
|
|
integration() {
|
|
return this.belongsTo('Integration');
|
|
},
|
|
|
|
emitChange: function emitChange(event, options) {
|
|
const eventToTrigger = 'webhook' + '.' + event;
|
|
ghostBookshelf.Model.prototype.emitChange.bind(this)(this, eventToTrigger, options);
|
|
},
|
|
|
|
onCreated: function onCreated(model, response, options) {
|
|
ghostBookshelf.Model.prototype.onCreated.apply(this, arguments);
|
|
|
|
model.emitChange('added', options);
|
|
},
|
|
|
|
onUpdated: function onUpdated(model, response, options) {
|
|
ghostBookshelf.Model.prototype.onUpdated.apply(this, arguments);
|
|
|
|
model.emitChange('edited', options);
|
|
},
|
|
|
|
onDestroyed: function onDestroyed(model, options) {
|
|
ghostBookshelf.Model.prototype.onDestroyed.apply(this, arguments);
|
|
|
|
model.emitChange('deleted', options);
|
|
}
|
|
}, {
|
|
findAllByEvent: function findAllByEvent(event, unfilteredOptions) {
|
|
var options = this.filterOptions(unfilteredOptions, 'findAll'),
|
|
webhooksCollection = Webhooks.forge();
|
|
|
|
return webhooksCollection
|
|
.query('where', 'event', '=', event)
|
|
.fetch(options);
|
|
},
|
|
|
|
getByEventAndTarget: function getByEventAndTarget(event, targetUrl, unfilteredOptions) {
|
|
var options = ghostBookshelf.Model.filterOptions(unfilteredOptions, 'getByEventAndTarget');
|
|
options.require = true;
|
|
|
|
return Webhooks.forge().fetch(options).then(function then(webhooks) {
|
|
var webhookWithEventAndTarget = webhooks.find(function findWebhook(webhook) {
|
|
return webhook.get('event').toLowerCase() === event.toLowerCase()
|
|
&& webhook.get('target_url').toLowerCase() === targetUrl.toLowerCase();
|
|
});
|
|
|
|
if (webhookWithEventAndTarget) {
|
|
return webhookWithEventAndTarget;
|
|
}
|
|
}).catch(function (error) {
|
|
if (error.message === 'NotFound' || error.message === 'EmptyResponse') {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
return Promise.reject(error);
|
|
});
|
|
}
|
|
});
|
|
|
|
Webhooks = ghostBookshelf.Collection.extend({
|
|
model: Webhook
|
|
});
|
|
|
|
module.exports = {
|
|
Webhook: ghostBookshelf.model('Webhook', Webhook),
|
|
Webhooks: ghostBookshelf.collection('Webhooks', Webhooks)
|
|
};
|