1
0
Fork 0
ynh-apps_tools/webhooks/webhook.py

135 lines
3.8 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import sys
import hashlib
import argparse
2021-06-13 05:12:34 +02:00
import hmac
from functools import cache
import tempfile
import logging
from pathlib import Path
from git import Actor, Repo
from sanic import HTTPResponse, Request, Sanic, response
# add apps/tools to sys.path
sys.path.insert(0, str(Path(__file__).parent.parent))
from readme_generator.make_readme import generate_READMEs
2021-06-13 05:12:34 +02:00
TOOLS_DIR = Path(__file__).resolve().parent.parent
DEBUG = False
UNSAFE = False
APP = Sanic(__name__)
2024-05-28 19:11:13 +02:00
@cache
def github_webhook_secret() -> str:
return (TOOLS_DIR / ".github_webhook_secret").open("r", encoding="utf-8").read().strip()
2024-03-19 19:02:31 +01:00
@cache
def github_login() -> str:
return (TOOLS_DIR / ".github_login").open("r", encoding="utf-8").read().strip()
2024-03-19 19:02:31 +01:00
@cache
def github_token() -> str:
return (TOOLS_DIR / ".github_token").open("r", encoding="utf-8").read().strip()
2021-06-13 05:12:34 +02:00
@APP.route("/github", methods=["GET"])
async def github_get(request: Request) -> HTTPResponse:
return response.text(
2024-03-11 17:34:33 +01:00
"You aren't supposed to go on this page using a browser, it's for webhooks push instead."
)
@APP.route("/github", methods=["POST"])
async def github_post(request: Request) -> HTTPResponse:
if UNSAFE and (signatures_reply := check_webhook_signatures(request)):
return signatures_reply
event = request.headers.get("X-Github-Event")
if event == "push":
return on_push(request)
return response.json({"error": f"Unknown event '{event}'"}, 422)
def check_webhook_signatures(request: Request) -> HTTPResponse | None:
logging.warning("Unsafe webhook!")
2021-06-13 05:12:34 +02:00
header_signature = request.headers.get("X-Hub-Signature")
if header_signature is None:
logging.error("no header X-Hub-Signature")
return response.json({"error": "No X-Hub-Signature"}, 403)
2021-06-13 05:12:34 +02:00
sha_name, signature = header_signature.split("=")
if sha_name != "sha1":
logging.error("signing algo isn't sha1, it's '%s'" % sha_name)
return response.json({"error": "Signing algorightm is not sha1 ?!"}, 501)
2021-06-13 05:12:34 +02:00
# HMAC requires the key to be bytes, but data is string
2024-03-11 17:34:33 +01:00
mac = hmac.new(
github_webhook_secret().encode(), msg=request.body, digestmod=hashlib.sha1
2024-03-11 17:34:33 +01:00
)
2021-06-13 05:12:34 +02:00
if not hmac.compare_digest(str(mac.hexdigest()), str(signature)):
return response.json({"error": "Bad signature ?!"}, 403)
return None
2021-06-13 05:12:34 +02:00
def on_push(request: Request) -> HTTPResponse:
2021-06-13 05:12:34 +02:00
data = request.json
repository = data["repository"]["full_name"]
branch = data["ref"].split("/", 2)[2]
logging.info(f"{repository} -> branch '{branch}'")
2021-06-14 16:34:26 +02:00
with tempfile.TemporaryDirectory() as folder_str:
folder = Path(folder_str)
repo = Repo.clone_from(
f"https://{github_login()}:{github_token()}@github.com/{repository}",
to_path=folder,
single_branch=True,
2024-03-19 19:02:31 +01:00
branch=branch,
2024-03-11 17:34:33 +01:00
)
generate_READMEs(folder)
2021-05-21 20:12:00 +02:00
repo.git.add("README*.md")
repo.git.add("ALL_README.md")
diff_empty = len(repo.index.diff("HEAD")) == 0
if diff_empty:
logging.debug("nothing to do")
return response.text("nothing to do")
repo.index.commit(
2024-03-19 19:02:31 +01:00
"Auto-update READMEs", author=Actor("yunohost-bot", "yunohost@yunohost.org")
2024-03-11 17:34:33 +01:00
)
repo.remote().push(quiet=False)
return response.text("ok")
def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument("-d", "--debug", action="store_true")
parser.add_argument("-u", "--unsafe", action="store_true",
help="Disable Github signature checks on webhooks, for debug only.")
args = parser.parse_args()
if args.debug:
logging.getLogger().setLevel(logging.DEBUG)
global DEBUG, UNSAFE
DEBUG = args.debug
UNSAFE = args.unsafe
APP.run(host="127.0.0.1", port=8123, debug=args.debug)
if __name__ == "__main__":
main()