Skip to main content

webhooks plugin for Tutor

Project description

This plugin will to Open edX the capability to send requests to configurable URLs after certain events happen.

A Webhook is a mechanism that triggers an HTTP POST request to a configurable URL when certain events happen in the platform, including information relevant to the event. For example, you can make the platform call an API when a user logs in, including the user ID and email to connect to another application.

A Webfilter is a special case of webhook that allows also modifying the data and/or interrupting the process. For example, after the user login event you can update the user full name or prevent the user to log in if it is not allowed to.

Installation

pip install tutor-contrib-webhooks

Usage

To enable the functionality you will have to rebuild the Open edX image and restart the containers. No other configuration is needed.

tutor plugins enable webhooks
tutor images build openedx

How it works

This Tutor plugin will just add the openedx-webhooks module to the list of dependencies of Open edX.

To learn more please refer to the source code of openedx-webhooks.

Configuration

A new section named OPENEDX_WEBHOOKS will be available in the LMS Django admin site. It will contain two subsections: Webhooks and Webfilters. Add a new webhook to define the URLs that will be called after each event is received. More than one URL can be configured for each event. In this case, all URLs will be called.

Configuring webhooks

The Webhooks Django admin panel has the following settings:

  • Description: Add a description for this webhook for reference.

  • Event: Choose from the list the event that will trigger the webhook.

  • Webhook URL: URL to call. Get it from your webhook processor.

  • Enabled: Click to enable the webhook.

  • Use WWW form encoding: When enabled, the data will be passed in a web form format. If disabled, data will be passed in JSON format.

Configuring webfilters

The Webfilters Django admin panel has the following settings:

  • Description: Add a description for this webhook for reference.

  • Event: Choose from the list the event that will trigger the webhook.

  • Webhook URL: URL to call. Get it from your webhook processor.

  • Enabled: Click to enable the webhook.

  • Disable filtering: If enabled, the data passed to the web filter will not be modified even if the response includes any update.

  • Disable halting: If enabled, the process will not be interrupted even if the response includes an exception setting.

  • Halt on 4xx: Interrupt the process if the call to the URL returns any 4xx error code.

  • Redirect on 4xx: Include an URL to redirect in case of a 4xx response, if the event supports redirection.

  • Halt on 5xx: Interrupt the process if the call to the URL returns any 5xx error code.

  • Redirect on 5xx: Include an URL to redirect in case of a 5xx response, if the event supports redirection.

  • Halt on request exception: Interrupt the process if the call to the URL results in a connection error (e.g., timeout).

  • Redirect on request exception: Include an URL to redirect in case of a connection error, if the event supports redirection.

  • Use WWW form encoding: When enabled, the data will be passed in a web form format. If disabled, data will be passed in JSON format.

Receiving data

Both webhooks and webfilters will trigger POST requests to the configured URL. This request includes in the payload a structure with data relevant to the event that triggered the call. In all cases, the payload will include an event_metadata key including at least the event type and the date and time in UTC format. Other keys included will depend on the event. For example, log in events usually include user and profile keys with details of the user logging in.

If the Use WWW form encoding option is enabled, the data will be passed as plain key-value pairs in form encoding. The structure will be flattened and the key names will be concatenated. E.g., a log event will include user_id, user_email, event_metadata_time, etc.

Responding to webfilters

The webhook processor should respond to a webfilter with a data structure in JSON format and a successful status code (200). The response can be empty or can have one or both of these keys:

  • data

  • exception

Updating data

The corresponding objects will be updated with the values returned inside the data key. Only keys present in the response will be updated. Other keys will remain unchanged in the original data structures. To disable data updates, set Disable Filtering in the webfilter configuration at the Django admin panel.

For example, to change the full name of a user at registration time, respond to a Student Registration Requested webfilter with this data:

{
    "data": {
        "form_data": {
            "name": "New Name"
        }
    }
}

Interrupting execution

To stop the process to complete, add a JSON object as value for the exception key. This object must have only one key-value pair, being the key the name of the exception to raise. Its value can be either a string representing the message to be shown, or another JSON object with more data.

For example, to prevent a user to register, respond to the Student Registration Requested webfilter with this data:

{
    "exception": {
        "PreventRegistration": "Not allowed to register"
    }
}

To prevent a webfilter to stop the execution of the process, set Disable halting in the webfilter configuration at the Django admin panel.

Check each function documentation to see the list of available values and exceptions.

Handling multiple events

If you set more than one webhook or webfilter for the same event, all of them will be triggered. The responses of all the webfilters will be combined in one data structure and used to update the objects. If more webfilter processors include data for the same key, the last one will override all the previous.

License

This software is licensed under the terms of the AGPLv3.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tutor_contrib_webhooks-18.0.1.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tutor_contrib_webhooks-18.0.1-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file tutor_contrib_webhooks-18.0.1.tar.gz.

File metadata

  • Download URL: tutor_contrib_webhooks-18.0.1.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for tutor_contrib_webhooks-18.0.1.tar.gz
Algorithm Hash digest
SHA256 1cd765c89148857e14988020aeb013bee8ea82c98d65ed6a30ae7dd73ac3b3db
MD5 f0b557531c5bcc5b4bdb0e3feb89e074
BLAKE2b-256 67ff4dd368bccdca2f367df98b8a4a96b9c45c82550631380063feda00b809a6

See more details on using hashes here.

File details

Details for the file tutor_contrib_webhooks-18.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for tutor_contrib_webhooks-18.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c671dbb2f8975b3640ae8c97f3d91d2a619e1f16722c9704b51934412dc87811
MD5 4f5701dbe0a7e6aa871f374e243774f7
BLAKE2b-256 8e36cec268505eebd7f34f671ece3a0890a4d8ad612b1b3c3e5d365e7bdb6ec0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page