webhook-matrix-notifier/wmn.py

83 lines
2.8 KiB
Python
Raw Normal View History

import yaml
from flask import Flask, request, abort
from matrix_client.client import MatrixClient
2019-07-19 12:14:16 +00:00
from matrix_client.errors import MatrixRequestError
application = Flask(__name__)
2019-07-18 12:47:28 +00:00
"""
config.yml Example:
secret: "..."
matrix:
server: https://matrix.org
2019-07-18 12:47:28 +00:00
username: ...
password: "..."
"""
with open("config.yml", 'r') as ymlfile:
cfg = yaml.safe_load(ymlfile)
2019-07-19 12:14:16 +00:00
def process_gitlab_request():
gitlab_token = request.headers.get('X-Gitlab-Token')
2019-07-19 12:14:16 +00:00
if gitlab_token != cfg['secret']:
abort(403)
2019-07-19 12:14:16 +00:00
channel = request.args.get('channel')
if channel is None or len(channel) == 0:
abort(400)
gitlab_event = request.headers.get("X-Gitlab-Event")
if gitlab_event == "Push Hook":
2019-07-19 12:14:16 +00:00
try:
client = MatrixClient(cfg["matrix"]["server"])
client.login(username=cfg["matrix"]["username"], password=cfg["matrix"]["password"])
2019-07-19 12:14:16 +00:00
room = client.join_room(room_id_or_alias=channel)
except MatrixRequestError as e:
return f"Error from Matrix: {e.content}", e.code
def sort_commits_by_time(commits):
return sorted(commits, key=lambda commit: commit["timestamp"])
def extract_commit_message(commit):
2019-07-19 12:14:16 +00:00
return next(iter(commit["message"].lstrip().splitlines(keepends=False)),
"$EMPTY_COMMIT_MESSAGE - impossibruh").rstrip()
username = request.json["user_name"]
commit_messages = list(map(extract_commit_message, sort_commits_by_time(request.json["commits"])))
project_name = request.json["project"]["name"]
html_commits = "\n".join((f" <li>{msg}</li>" for msg in commit_messages))
text_commits = "\n".join((f"- {msg}" for msg in commit_messages))
room.send_html(f"<strong>{username} pushed {len(commit_messages)} commits to {project_name}</strong><br>\n"
f"<ul>\n{html_commits}\n</ul>\n",
body=f"{username} pushed {len(commit_messages)} commits to {project_name}\n{text_commits}\n",
msgtype="m.notice")
2019-07-19 11:53:00 +00:00
# see Flask.make_response, this is interpreted as (body, status)
return "", 204
2019-07-19 12:14:16 +00:00
def process_jenkins_request():
jenkins_token = request.headers.get('X-Jenkins-Token')
if jenkins_token != cfg['secret']:
abort(403)
channel = request.args.get('channel')
if channel is None or len(channel) == 0:
abort(400)
from pprint import pprint
pprint(request.json)
# see Flask.make_response, this is interpreted as (body, status)
return "", 204
@application.route('/matrix', methods=("POST",))
def notify():
if 'X-Gitlab-Token' in request.headers:
return process_gitlab_request()
elif 'X-Jenkins-Token' in request.headers:
return process_jenkins_request()
else:
return "Cannot determine the request's webhook cause", 400