Gitea-bot/app.py

138 lines
5.2 KiB
Python

from flask import Flask, request
from secrets import cookie
import requests
import re
app = Flask(__name__)
def make_url_user(user):
return f"[url=https://gitea.planet-casio.com/{user['username']}]{user['username']}[/url]"
def make_url_repository(repository):
fork = " (fork)" if repository["fork"] else ""
return f"[url={repository['html_url']}]{repository['name']}{fork}[/url]"
@app.route("/", methods=["GET", "POST"])
def main():
data = request.json
event = request.headers['X-Gitea-Event']
msg = None
if data["repository"]["private"]:
return "IGN"
url_repository = make_url_repository(data["repository"])
if event == "push" and data["commits"] != []:
# Heuristic to handle pull request merges by detecting default merge message
RE_MERGE = r"^Merge pull request '(.+)' \(#([0-9]+)\)"#from .* into"
m = re.match(RE_MERGE, data["commits"][0]["message"])
if len(data["commits"]) > 1 and m:
pr_url = data["repository"]["html_url"] + "/pulls/" + m[2]
pr_url = f"[url={pr_url}]{m[1]}[/url]"
data["commits"] = data["commits"][1:]
else:
pr_url = None
commits = data["commits"]
commit_count = f"{len(commits)} commit{'s' if len(commits) > 1 else ''}"
message = "[inlinecode]" + commits[0]["message"].split('\n',1)[0] + "[/inlinecode]"
if len(commits) <= 1:
others = ""
elif len(commits) == 2:
others = " (et 1 autre commit)"
else:
others = f" (et {len(commits)-1} autres commits)"
url_user = make_url_user(data['pusher'])
# Pull request merge
if pr_url:
msg = f"{url_user} a fusionné la PR {pr_url}: {message}{others}"
# Ref doesn't have a previous commit = new branch
elif all(c == "0" for c in data["before"]) and data["ref"].startswith("refs/heads/"):
branch = data["ref"][11:]
url_branch = data["repository"]["html_url"] + f"/src/branch/{branch}"
url_branch = f"[url={url_branch}]{branch}[/url]"
msg = f"{url_user} a créé une nouvelle branche {url_branch} dans {url_repository} : {message}{others}"
# Pre-existing branch
else:
url_commits = f"[url={data['compare_url']}]{commit_count}[/url]"
msg = f"{url_user} a poussé {url_commits} dans {url_repository} : {message}{others}"
if event == "push" and data["ref"].startswith("refs/tags/"):
url_user = make_url_user(data['pusher'])
tag_name = data["ref"][10:]
url_tag = data["repository"]["html_url"] + f"/src/tag/{tag_name}"
url_tag = f"[url={url_tag}]{tag_name}[/url]"
if all(c == '0' for c in data["before"]):
msg = f"{url_user} a créé le tag {url_tag} dans {url_repository}"
else:
msg = f"{url_user} a mis à jour le tag {url_tag} dans {url_repository}"
if event == "issues":
url_user = make_url_user(data['sender'])
url_issue = f"[url={data['issue']['html_url']}]{data['issue']['title']}[/url]"
if data['action'] == "closed":
msg = f"{url_user} a fermé le ticket {url_issue} dans {url_repository}"
elif data['action'] in ["created", "opened"]:
msg = f"{url_user} a créé un ticket {url_issue} dans {url_repository}"
elif data['action'] == "edited":
msg = f"{url_user} a édité le ticket {url_issue} dans {url_repository}"
else:
return "IGN"
if event == "issue_comment":
url_user = make_url_user(data['sender'])
url_issue = f"[url={data['issue']['html_url']}]{data['issue']['title']}[/url]"
if data['action'] == "created":
msg = f"{url_user} a répondu au ticket {url_issue} dans {url_repository}"
else:
return "IGN"
if event == "pull_request" and data["action"] == "opened":
url_user = make_url_user(data["sender"])
url_pr = f"[url={data['pull_request']['url']}]{data['pull_request']['title']}[/url]"
msg = f"{url_user} a créé une PR: {url_pr} dans {url_repository}"
if event == "repository" and data["action"] == "created":
url_user = make_url_user(data['sender'])
msg = f"{url_user} a créé un nouveau dépôt {url_repository}"
if event == "push" and all(c == '0' for c in data["after"]):
return "IGN"
if event == "pull_request" and data["action"] in ["assigned", "closed", "synchronized", "edited"]:
return "IGN"
if event == "fork":
return "IGN"
if event == "create" and data["ref_type"] in ["tag", "branch"]:
return "IGN"
if event == "delete":
return "IGN"
if event == "release" and data["action"] == "updated":
return "IGN"
if not msg:
msg = f"Événement {event}"
if "repository" in data:
msg += " sur " + make_url_repository(data["repository"])
msg += "."
if msg:
msg = f"[gray][i]{msg}[/i][/gray]"
app.logger.warn(msg)
requests.post("https://www.planet-casio.com/Fr/shoutbox/api/post",
data={"message": msg, "channel": "dev"}, cookies=cookie)
return "OK"
return "ACK"