A wrapper for webhooks integration
npm install @janiscommerce/webhook-triggerIMPORTANT The
JANIS_SERVICE_NAMEenvironment variable is required to be set as the current service code. TheJANIS_WEBHOOKS_QUEUE_URLenvironment variable is required to be set as the SQS Queue URL of the Webhooks service.
If you run your service in AWS Lambda with Serverless Helper, import and spread serverlessHelperHooks in your serverless.js. This single spread sets up everything the package needs:
- The IAM permission and env var to send messages to the Webhooks SQS Queue.
- The mandatory subscriptions consumer (queue,
MainQueue β DelayQueue β DLQresilience chain and the IAM to invoke the reconsolidation lambda) that keeps the local subscriptions copy synced (see Subscription pre-filtering).
You must inject your own SQSHelper from sls-helper-plugin-janis (the package does not depend on it) and create the consumer handler file (see below).
const { helper } = require('sls-helper');
const { SQSHelper } = require('sls-helper-plugin-janis');
const { serverlessHelperHooks } = require('@janiscommerce/webhook-trigger');
module.exports = helper({
hooks: [
...serverlessHelperHooks(SQSHelper)
]
});
serverlessHelperHooksthrows atsls package/deploytime if theSQSHelperis not injected or if the consumer handler file is missing, so misconfigurations fail fast instead of shipping a consumer that never syncs.
If you don't use Serverless Helper, be sure to give your execution role the permission to perform sqs:SendMessage on the SQS Queue and to mount the subscriptions consumer yourself.
Service registration is the process where a service publishes its triggers so the user can create a Webhook subscription for them.
First of all, you need to create a triggers YAML definition file. The recommended path is ./webhooks/triggers.yml.
This file must have the following structure:
- entity: entity-name
eventName: some-event
- entity: other-entity-name
eventName: other-eventEvery event that your service triggers must be declared here so users can subscribe to it.
To implement the subscription for your service, simply create the registration lambda with the following content:
// In src/lambda/WebhookTriggersRegistration/index.js
'use strict';
const path = require('path');
const { RegistrationLambda } = require('@janiscommerce/webhook-trigger');
module.exports.handler = RegistrationLambda(path.join(__dirname, '../../../webhooks/triggers.yml'));IMPORTANT: Validate that the path to your triggers definition file is correct!
Then, add your lambda function serverless config file. If you are using serverless-helper here is the function definition:
["function", {
"functionName": "WebhookTriggersRegistration",
"handler": "src/lambda/WebhookTriggersRegistration/index.handler",
"description": "Webhook Triggers Registration",
"layers": []
}]Then you can test your registration by executing the following:
npx sls invoke local -f WebhookTriggersRegistrationOnce you have everything validated, you should include this invocation in you CI/CD pipeline:
aws lambda invoke --function-name <ServiceName>-<stage>-WebhookTriggersRegistration output --log-type Tail --query 'LogResult' --output text | base64 -dIf you want to register your triggers in a different way, the
Registrationclass is also exported by this package.
Every time an event happens, you have to trigger it. For that you need to provide the clientCode, entity and eventName associated to the event.
Additionally, you must provide the content of the event hook. This content must be a string of approximately less than 240Kb. In case you provide an object instead if a string, it will be JSON encoded for you. This content will be the request body that will be sent to the subscribers.
The WebhookTrigger.send signature is the following (typings are included in the package for intellisense):
type SendMessageSuccess = {
success: true;
messageId: string;
};
type SendMessageError = {
success: false;
message: object;
errorMessage: string;
};
type SendMessageSkipped = {
success: true;
skipped: true;
};
type SendOptions = {
targetUserId?: string;
};
WebhookTrigger.send(clientCode: string, entity: string, eventName: string, content: string | object, options?: SendOptions): Promise<SendMessageSuccess | SendMessageError | SendMessageSkipped>The optional options.targetUserId field allows directing the webhook delivery only to subscriptions created by a specific user. If omitted, the event is delivered to all matching subscriptions as usual.
Before queuing, the event is validated against the client's locally synced subscriptions (see Subscription pre-filtering). If the client has no active subscription for the event, it is not queued and the method resolves with { success: true, skipped: true }.
This method only rejects when required env vars are missing, to make easier to detect this issues on early testing. Errors ocurring at network or queue levels will be reported as SendMessageError in the return value.
Starting in v2, it's possible to trigger multiple events at once. To do so, use the WebhookTrigger.sendBatch method, passing an array of events.
The WebhookTrigger.sendBatch signature is the following (typings are included in the package for intellisense):
type WebhookEvent = {
clientCode: string;
entity: string;
eventName: string;
content: string | {
[x: string]: any;
};
targetUserId?: string;
};
type SendMessageBatchResult = {
successCount: number;
failedCount: number;
skippedCount: number;
outputs: (SendMessageSuccess | SendMessageError | SendMessageSkipped)[];
};
WebhookTrigger.sendBatch(events: WebhookEvent[]): Promise<SendMessageBatchResult>The optional targetUserId field per event allows directing delivery only to subscriptions created by a specific user. Events without it behave exactly as before.
Each event is validated against its client's locally synced subscriptions (see Subscription pre-filtering). Events without an active subscription are not queued, reported in the new skippedCount and added to outputs as { success: true, skipped: true, message }, without affecting successCount/failedCount.
This method only rejects when required env vars are missing or the events sent are not an array, to make easier to detect this issues on early testing. Errors ocurring at network, queue or individual event validation levels will be reported as a failedCount and the detail will be present as a SendMessageError in the outputs property.
send() and sendBatch() avoid queuing webhooks nobody is subscribed to. They validate each event against a local copy of the client's subscriptions, stored in the service's own clients collection under the webhookSubscriptions field (an array of service:entity:eventName keys).
- If
webhookSubscriptionsis an array (including[]) β the event is queued only if it includes${JANIS_SERVICE_NAME}:${entity}:${eventName}, otherwise it is skipped. - If
webhookSubscriptionsisundefined(client never synced) or the read fails (client not found, client model missing, Mongo error) β fail-open: the event is queued anyway and the case is logged.
This means a service that updates the package but does not mount the consumer (below) never populates webhookSubscriptions, so it always fail-opens and behaves exactly as before. The pre-filtering only kicks in once the consumer is mounted (and the initial backfill has run).
The local copy is kept up to date by push: this package exposes an SQS consumer subscribed to the webhooks-service clientSubscriptionsUpdated topic. On every change it reconsolidates the client's subscriptions (invoking the ClientTriggersSubscriptions lambda, filtered by this service) and overwrites the local copy.
IMPORTANT: The host service must expose its
clientmodel atmodels/client(resolved as{process.cwd()}/{MS_PATH}/models/client), pointing to thecoreclientscollection. This is the standard Janis client model.
The consumer serverless hooks (queue subscribed to webhooks/clientSubscriptionsUpdated, the MainQueue β DelayQueue β DLQ resilience chain and the IAM permissions needed to invoke the lambda) are already declared by the single serverlessHelperHooks(SQSHelper) spread (see Serverless hooks).
You only need to create the consumer handler file. Its path must match the handler generated by the hooks: src/sqs-consumer/webhook/sync-webhook-subscriptions-consumer.js.
// In src/sqs-consumer/webhook/sync-webhook-subscriptions-consumer.js
'use strict';
const { SyncWebhookSubscriptionsConsumer } = require('@janiscommerce/webhook-trigger');
const { SQSHandler } = require('@janiscommerce/sqs-consumer');
module.exports.handler = event => SQSHandler.handle(SyncWebhookSubscriptionsConsumer, event);The consumer, queue and delay properties can be overridden via a second argument to serverlessHelperHooks:
serverlessHelperHooks(SQSHelper, {
consumerProperties: { prefixPath: 'webhook', batchSize: 1 },
mainQueueProperties: { maxReceiveCount: 3 },
delayQueueProperties: { delaySeconds: 300 }
});If you override
consumerProperties.prefixPath, the handler file path changes accordingly (src/sqs-consumer/<prefixPath>/sync-webhook-subscriptions-consumer.js).
The CloudWatch alarm over the DLQ is managed by infra, out of the scope of this package.
Send an event when an order is created
const WebhookTrigger = require('@janiscommerce/webhook-trigger');
await WebhookTrigger.send('currentClientCode', 'order', 'created', {
id: 'd555345345345aa67a342a55',
dateCreated: new Date(),
amount: 10.40
});Send multiple events when multiple orders are dispatched (you could even send events for more than one
clientCodeand/or each with a differenteventName)
const WebhookTrigger = require('@janiscommerce/webhook-trigger');
await WebhookTrigger.send([
{
clientCode: 'currentClientCode',
entity: 'order',
eventName: 'dispatched',
content: {
id: 'd555345345345aa67a342a55',
dateCreated: new Date(),
amount: 10.40
}
},
{
clientCode: 'currentClientCode',
entity: 'order',
eventName: 'dispatched',
content: {
id: 'e55a3a53e5645aa67a34254a',
dateCreated: new Date(),
amount: 32.5
}
}
]);