Snap-in developmentReferences

Hooks

Hooks enable developers to invoke functions when various events in the lifecycle of a snap-in occur. They can be used to validate inputs and keyrings, as well as to register, update, and deregister resources on external systems. Hooks can be used to catch errors early in the deployment cycle of a snap-in and enable semantic validation.

In order to define hooks, you can add the following section to your manifest:

1hooks:
2 - type: validate
3 function: validate-inputs
4
5 - type: activate
6 function: register-resource
7
8 - type: deactivate
9 function: deregister-resource
10
11 - type: update
12 function: update-resource

The above definition would register the hooks and invoke the provided functions alongside each hook. The functions can be defined in the manifest and provided in the code as explained in the functions reference.

For the event schema received by the function invocation, refer to the function invocation reference.

The event name is the identifier for the hook. The event name can be used to identify the hook that’s being invoked. The identifiers are defined in the summary table below.

The following hooks are available: validate, activate, deactivate, and update.

Validate hook

The validate hook is invoked when the snap-in user updates the inputs and keyrings of the snap-in or activates the snap-in. The snap-in can perform validation checks based on the inputs and keyrings provided by the user. If the validation fails, the process stops and the error message is shown to the user. The event.payload field is an empty json object {}. An error can be returned by throwing the following from the function’s run method:

1export const run = async (events: any[]) => {
2 if (events[0].execution_metadata.event_type === "hook:snap_in_validate"){
3 ... validation logic
4 // throw an error to fail the hook
5 throw "the input is not valid.";
6 }
7};

Activate hook

The activate hook is executed when the user tries to activate the snap-in from the DRAFT, INACTIVE, or ERROR state. The snap-in moves to the ACTIVATING state and executes the hook function. If the function throws an error, the snap-in moves to the ERROR state. If all actions are completed, the snap-in moves to the ACTIVE state. Please note, the activate hook is triggered whenever the snap-in moves to the ACTIVE state, so ensure that the actions performed aren’t duplicated and are idempotent.

The event.payload field is an empty json object {}.

An error can be returned by throwing the following from the function’s run method:

1export const run = async (events: any[]) => {
2 if (events[0].execution_metadata.event_type === "hook:snap_in_activate"){
3 ... activation logic
4 // throw an error to fail the hook
5 throw "failed to activate webhook on XYZ";
6 }
7};

Deactivate hook

The deactivate hook is executed when the snap-in user tries to deactivate the snap-in from the ACTIVE or ERROR state. If the hook fails and throws an error, the snap-in fails to deactivate and moves to the ERROR state. If the hook succeeds, the snap-in moves to the INACTIVE state.

The hook is also executed when the snap-in is being deleted. If the hook fails and throws an error, the snap-in fails to delete and moves to the ERROR state. If the hook succeeds, the snap-in is deleted.

If the force flag was passed when deactivating or deleting the snap-in, then the hook failure is ignored, and the snap-in moves to the INACTIVE state or is deleted.

The event payload conforms to the following schema.

{
// Identifies if the "force" flag is passed when deactivating the snap-in.
force_deactivate: boolean;
// Identifies if the snap-in is being deactivated due to deletion of the snap-in.
is_deletion: boolean;
}

An error can be returned by throwing the following from the function’s run method:

1export const run = async (events: any[]) => {
2 if (events[0].execution_metadata.event_type === "hook:snap_in_deactivate"){
3 ... deactivation logic
4 // throw an error to fail the hook
5 throw "failed to deactivate webhook on XYZ";
6 }
7};

Update hook

The update hook is executed when the snap-in is in the ACTIVE state and the user updates the snap-in configuration with validated inputs configuration. Based on the updated input values, the snap-in can perform some actions such as changing event-types required in external webhooks. If any action fails and throws an error, the snap-in configuration isn’t updated and the error message is shown to the user. If all the actions are completed, the snap-in configuration is updated successfully.

The validate hook is executed before the update hook. If the validate hook fails, the update hook isn’t executed.

An error can be returned by throwing the following from the function’s run method:

1export const run = async (events: any[]) => {
2 if (events[0].execution_metadata.event_type === "hook:snap_in_update"){
3 ... update logic
4 // throw an error to fail the hook
5 throw "failed to update webhook on XYZ";
6 }
7};

The following diagram illustrates the state machine for a snap-in and the invocation of different hooks.

snap-in-lifecycle

The following table summarizes the hooks.

Hook NameEvent IdentifierFrom StateTo StateAsynchronous
validatehook:snap_in_validateDRAFT, ACTIVEACTIVATING, ACTIVEFalse
activatehook:snap_in_activateDRAFT, INACTIVE, ERRORACTIVE, ERRORTrue
deactivatehook:snap_in_deactivateACTIVE, ERRORINACTIVE, ERRORTrue
updatehook:snap_in_updateACTIVEACTIVEFalse