Skip to content
Snippets Groups Projects
user avatar
Samuel Guillemet authored
b29529a2
History

Fast API Zoom Webhook handler

Python tests pre-commit CodeQL codecov Deploy

This is a simple FastAPI app that handles Zoom Webhooks.

The goal of this app is to provide a simple way to handle Zoom Webhooks and to provide a simple way to extend the app with custom handlers.

Installation

$ git clone https://github.com/SamuelGuillemet/zoom-python-webhook.git

Requirements

  • Python >= 3.11
  • Poetry

How to configure the environment variables

Defining your env variables

If your are in development mode, you can define the following variables in your .env.development file:

  • ZOOM_WEBHOOK_SECRET_TOKEN : The secret token that you have defined in your Zoom App.

Defining your env variables in production

If your are in production mode, you can define the following variables in your .env.production file or directly in your environment variables:

  • ZOOM_WEBHOOK_SECRET_TOKEN : The secret token that you have defined in your Zoom App.

Usage

Production

There is a Dockerfile that you can use to build the image and run the app.

$ docker compose up -d --build

Development

Install dependencies and run the project

Poetry will take all the information on the pyproject.toml file and will install all its dependencoies.

You can install Poetry using the following command:

Linux or Mac:

$ curl -sSL https://install.python-poetry.org | python3 -

Windows:

(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -

Source: https://python-poetry.org/docs/#installing-with-the-official-installer

Then, you can install the dependencies with the following command:

Virtual env if you use Conda

Start the conda env:

$ conda activate your_env

Create a virtual env under the .venv folder:

$ python -m venv .venv

Deactivate the conda env:

$ conda deactivate

Install the dependencies

$ poetry install

Activate the virtual env:

$ source .venv/bin/activate

Install the pre-commit Git hook

$ pre-commit install

Run the app

Then, you can run the app with the following command from the root folder:

$ uvicorn src.app.main:app --reload --reload-dir=./src/app

Supported events

  • endpoint.url_verification
  • zoomroom.checked_in
  • zoomroom.checked_out

How to add a new handler

  1. Create a new component in the src/app/components folder.
  2. The structure of the component should be the following:
├── your_component
│         ├── __init__.py
│         ├── handler.py
│         └── schema.py
  1. In the handler.py file, you should create a new function that will handle the event. The function should be take the following arguments:
    • body (dict): The body of the request
  2. In the schema.py file, you should create 2 new Pydantic models that will be used to validate the body of the request and the response of the handler function.
    • The first model should be used to validate the body of the request.
    • The second model should be used to validate the response of the handler function.
  3. In the __init__.py file, you must have the following code:
from .handler import your_handler_function
from .schema import YourResponseSchema

event_name = "your.event.name"
handler_function = your_handler_function
response_model = YourResponseSchema
  1. All the components arle loaded dynamically in the src/app/api/v1/endpoints/webhook.py file.