Webhook Factories
Last updated
Last updated
In notification scenarios triggered by an event, the webhooks to be notified must be built and delivered to subscribers, and this construction process might need to transform the original data carried by those triggering events into a new object.
In fact, sometimes events don't carry all the information that has to be transmitted to the receivers, for several reasons (eg. privacy, design, external context, etc.), and this requires an additional intervention for the integration of that information (eg. resolving an entity from the database, appending the environment variables of the notifier, etc.).
Note: This is not a mandatory passage in the notification process, and can be skipped if the data carried by the event represents the information to be transferred to the receivers.
The overall contract of an event as recognized by the system is defined by the EventInfo
structure, that is composed of the following fields:
Field | Type | Description |
---|---|---|
This design respects a general contract of the domain-driven design, informing of the event's nature and the payload that contains the actual data.
An example of the implementation of this contract is the Cloud Events specification, that defines a standard for the representation of events in a cloud-native environment.
Anyway, despite the adherence to the overall design, the Deveel Webhooks framework is not tied to this specification, but it can be used to implement it, an it requires the EventInfo structure to be provided in order to be able to send notifications.
As mentioned before, the event data is not always in the format that is expected by the target system that will be notified, and the resons to implement a further passage of transformation are various:
The event data might contain sensitive information, that should not be exposed to the target system
The event data might contain information that is not relevant to the target system
The event data might contain information that is not available in the event, but must be retrieved from external sources (eg.database entries, environment variables, etc.)
IWebhookFactory<TWebhook>
interfaceThe notifier service uses instances of the IWebhookFactory<TWebhook>
interface to transform a triggering event, into a webhook object that is expected by the subscribing applications, using a subscription-scoped transformation logic.
Transformations are specific to your use cases and they can be specific to a given event condition (eg. only a specific type of event with a given value in its 'data' component triggers the transformation).
To implement this logic in the application, you must first create a new class that inherits from the IWebhookFactory<TWebhook>
contract.
To enable the implementation by your custom Webhook Factory, you can register it during the configuration of the application.
When registering the Webhook Notifier service, by default the framework will register a default implementation of the IWebhookFactory<TWebhook>
interface, if the type of TWebhook
is derived from the Webhook
class: this factory will attempt to create instances of the webhook type using the default constructor, and then it will try to map the properties of the webhook object to the properties of the event data and the subscription data.
This approach is useful when the webhook object is a simple POCO that can be easily mapped to the event data, and it doesn't require any further transformation logic, but it's not suitable for more complex scenarios.
Id
string
The identifier of the event
Source
string
The source of the event (eg. github
)
Subject
string
The subject of the event (eg. issue
)
Type
string
The type of the event (eg. created
)
TimeStamp
DateTimeOffset
The exact time the event has occurred in the source system
Data
object
The payload that contains the actual data of the event