Command-line Matrix notify tool and Flask application to provide a webhook for Matrix notifications.
Go to file
Ben 5364860191
Add pyproject.toml, refactor notify.py
Add instructions how to run the matrix-notify command-line program.
2023-10-27 14:09:13 +02:00
wmn Add pyproject.toml, refactor notify.py 2023-10-27 14:09:13 +02:00
.gitignore Add pyproject.toml, refactor notify.py 2023-10-27 14:09:13 +02:00
config.yml.example Update to Flask 2 and matrix-nio 2021-06-28 09:56:48 +02:00
Dockerfile Add async Flask in Dockerfile 2021-10-28 23:22:28 +02:00
LICENSE Update to Flask 2 and matrix-nio 2021-06-28 09:56:48 +02:00
Pipfile Move to pipenv, update dependencies + more 2023-10-27 13:46:58 +02:00
Pipfile.lock Move to pipenv, update dependencies + more 2023-10-27 13:46:58 +02:00
pyproject.toml Add pyproject.toml, refactor notify.py 2023-10-27 14:09:13 +02:00
README.md Add pyproject.toml, refactor notify.py 2023-10-27 14:09:13 +02:00
testrequest_gitlab.json Add better output for prometheus alerts 2020-09-27 17:55:20 +02:00
testrequest_prometheus.json Add better output for prometheus alerts 2020-09-27 17:55:20 +02:00

Webhook Matrix Notifier

Takes notifications via webhook, checks a secret and notifies a Matrix room. Listens to HTTP only. Should be used behind a reverse-proxy with HTTPS.

An example configuration is at config.yml.example and the program always reads the configuration file config.yml.

Running the command line notifier

To notify a room with a simple text message, ensure credentials are filled out in your local config.yml and run

python -m wmn.notify -r '!room:matrix.org' simple text message

Installing the webhook-matrix-notifier will create the shorthand script "matrix-notify" for this.

Testing the webhook application locally

First, start the webserver locally by env FLASK_APP=wmn.py flask run or have your IDE start it for you.
Then, send a POST request using curl.

GitLab

export URLQUOTED_ROOM=`python3 -c 'from urllib.parse import quote_plus; print(quote_plus("#room:matrix.org"))'`
curl -i -X POST "http://localhost:5000/matrix?room=${URLQUOTED_ROOM}" -H "X-Gitlab-Event: Push Hook" -H "X-Gitlab-Token: 123" -H "Content-Type: application/json" --data-binary @./testrequest_gitlab.json

The X-Gitlab-Token must correspond to the secret provided in config.yml

Prometheus

export URLQUOTED_ROOM=`python3 -c 'from urllib.parse import quote_plus; print(quote_plus("#room:matrix.org"))'`
export URLQUOTED_SECRET=`python3 -c 'from urllib.parse import quote_plus; print(quote_plus("123"))'`
curl -i -X POST "http://localhost:5000/matrix?type=prometheus&secret=${URLQUOTED_SECRET}&room=${URLQUOTED_ROOM}" -H "Content-Type: application/json" --data-binary @./testrequest_prometheus.json

The secret must be passed as a URI parameter here.