2024-10-08 23:34:31 -05:00
|
|
|
from flask import Flask
|
|
|
|
from flask import request
|
|
|
|
from flask import redirect
|
|
|
|
from flask import abort
|
|
|
|
|
2024-10-09 01:08:28 -05:00
|
|
|
import requests
|
2024-10-09 03:17:22 -05:00
|
|
|
|
|
|
|
from .webgit import Gitea, Github
|
|
|
|
from .utils import issue_sentinel, generate_sentinel
|
2024-10-09 01:08:28 -05:00
|
|
|
|
2024-10-08 23:34:31 -05:00
|
|
|
app = Flask(__name__)
|
|
|
|
app.config.from_envvar('GIT_BRIDGE_SETTINGS')
|
|
|
|
|
|
|
|
@app.route("/bridge")
|
|
|
|
def index():
|
2024-10-09 01:08:28 -05:00
|
|
|
return "you've reached the main page for an internal service. congrats!"
|
|
|
|
|
|
|
|
@app.route("/bridge/endpoints/gitea/repo", methods=["POST"])
|
|
|
|
def gitea_handle_repo_action():
|
2024-10-09 03:17:22 -05:00
|
|
|
"""
|
|
|
|
Our plan of action for handling these events:
|
|
|
|
- ignore deleting repositories -- this is a potentially destructive operation
|
|
|
|
that *only* *the* *user* *should* *do*
|
|
|
|
- create a cooresponding repo on github
|
|
|
|
- create a push mirror to github so pushes to gitea get to github
|
|
|
|
- create webhooks for issues (and in the future, pull requests) on both
|
|
|
|
Gitea and Github ends
|
|
|
|
"""
|
|
|
|
|
2024-10-09 05:16:33 -05:00
|
|
|
gitea = Gitea(
|
|
|
|
api_token=app.config["GITEA_ACCESS_TOKEN"],
|
|
|
|
instance_name=app.config["GITEA_INSTANCE_DOMAIN"]
|
|
|
|
)
|
2024-10-09 03:17:22 -05:00
|
|
|
github = Github(app.config["GITHUB_ACCESS_TOKEN"])
|
|
|
|
|
2024-10-09 01:08:28 -05:00
|
|
|
data = request.json
|
|
|
|
|
|
|
|
try:
|
|
|
|
repository = data["repository"]
|
|
|
|
|
|
|
|
repo_action = data["action"]
|
|
|
|
repo_id = repository["id"]
|
|
|
|
repo_owner = repository["owner"]["login"]
|
|
|
|
repo_name = repository["name"]
|
|
|
|
repo_description = repository["description"]
|
|
|
|
|
|
|
|
except KeyError:
|
|
|
|
abort(400) # the data isn't formatted correctly
|
|
|
|
|
|
|
|
if not repo_action == "created":
|
|
|
|
return ''
|
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
new_repo = github.create_repo(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_name, repo_description
|
2024-10-09 01:08:28 -05:00
|
|
|
)
|
2024-10-09 06:34:52 -05:00
|
|
|
new_repo_url = new_repo.json()["html_url"]
|
2024-10-09 01:08:28 -05:00
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
gitea.add_push_target(
|
|
|
|
repo_owner, repo_name, new_repo_url, repo_owner,
|
2024-10-09 05:16:33 -05:00
|
|
|
app.config["GITHUB_ACCESS_TOKEN"]
|
2024-10-09 01:08:28 -05:00
|
|
|
)
|
2024-10-09 06:34:52 -05:00
|
|
|
gitea.force_push_target(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name
|
2024-10-09 01:08:28 -05:00
|
|
|
)
|
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
github.create_webhook(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
"https://{}/bridge/endpoints/github/issue".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"]
|
2024-10-09 01:08:28 -05:00
|
|
|
),
|
2024-10-09 05:16:33 -05:00
|
|
|
["issues", "issue_comment"]
|
2024-10-09 01:08:28 -05:00
|
|
|
)
|
2024-10-09 06:34:52 -05:00
|
|
|
gitea.create_webhook(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
"https://{}/bridge/endpoints/gitea/issue".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"]
|
2024-10-09 01:08:28 -05:00
|
|
|
),
|
2024-10-09 05:16:33 -05:00
|
|
|
["issues", "issue_comment"]
|
2024-10-09 01:08:28 -05:00
|
|
|
)
|
|
|
|
|
2024-10-09 02:29:33 -05:00
|
|
|
return ''
|
|
|
|
|
|
|
|
@app.route("/bridge/endpoints/gitea/issue", methods=["POST"])
|
|
|
|
def gitea_handle_issue_action():
|
2024-10-09 03:17:22 -05:00
|
|
|
"""
|
|
|
|
firstly, check if the sentinal is in the issue body
|
|
|
|
- if it is, then stop processing the event
|
|
|
|
(we don't want infinite loops)
|
|
|
|
if we've opened an issue:
|
|
|
|
- create a new one on the Github side
|
|
|
|
- make it relate to the Gitea one
|
|
|
|
- make the Gitea one related to the Github one
|
|
|
|
|
|
|
|
if we've commented:
|
|
|
|
- add a comment to the cooresponding Github issue
|
|
|
|
|
|
|
|
if we've closed:
|
|
|
|
- add a cooresponding comment and close the Github issue
|
|
|
|
"""
|
|
|
|
|
2024-10-09 05:16:33 -05:00
|
|
|
gitea = Gitea(
|
|
|
|
api_token=app.config["GITEA_ACCESS_TOKEN"],
|
|
|
|
instance_name=app.config["GITEA_INSTANCE_DOMAIN"]
|
|
|
|
)
|
2024-10-09 03:17:22 -05:00
|
|
|
github = Github(app.config["GITHUB_ACCESS_TOKEN"])
|
|
|
|
|
2024-10-09 02:29:33 -05:00
|
|
|
data = request.json
|
|
|
|
|
|
|
|
try:
|
|
|
|
event_type = data["action"]
|
|
|
|
|
|
|
|
repo_owner = data["repository"]["owner"]["login"]
|
|
|
|
repo_name = data["repository"]["name"]
|
|
|
|
issue_user = data["issue"]["user"]["login"]
|
|
|
|
issue_user_url = "https://{}/{}".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"],
|
|
|
|
issue_user,
|
|
|
|
)
|
|
|
|
issue_number = data["issue"]["number"]
|
|
|
|
|
|
|
|
if event_type == "opened": # new issue created
|
|
|
|
event_title = data["issue"]["title"]
|
|
|
|
event_body = data["issue"]["body"]
|
|
|
|
elif event_type == "created": # new comment on that issue
|
|
|
|
event_title = None
|
|
|
|
event_body = data["comment"]["body"]
|
|
|
|
elif event_type == "closed": # issue closed
|
|
|
|
event_title = None
|
|
|
|
event_body = data["issue"]["body"]
|
|
|
|
|
|
|
|
event_url = data["issue"]["url"]
|
|
|
|
|
|
|
|
except KeyError as e:
|
|
|
|
print(e, type(e))
|
|
|
|
abort(400) # the data isn't formatted correctly
|
|
|
|
|
2024-10-09 03:17:22 -05:00
|
|
|
if issue_sentinel in event_body:
|
2024-10-09 02:29:33 -05:00
|
|
|
return ''
|
|
|
|
|
|
|
|
if event_type == "opened":
|
|
|
|
issue_header = "*This issue has automatically been created by [`gitea-github-sync`](https://{}/bridge/about) on behalf of [{}]({}).*".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"],
|
|
|
|
issue_user,
|
|
|
|
issue_user_url,
|
|
|
|
)
|
|
|
|
|
|
|
|
issue_footer = """
|
|
|
|
<details>
|
|
|
|
<summary>Internal issue metadata</summary>
|
|
|
|
|
2024-10-09 03:17:22 -05:00
|
|
|
{}
|
2024-10-09 02:29:33 -05:00
|
|
|
</details>
|
2024-10-09 03:17:22 -05:00
|
|
|
""".format(generate_sentinel(event_url))
|
2024-10-09 02:29:33 -05:00
|
|
|
|
|
|
|
issue_body = "\n\n".join([
|
|
|
|
issue_header,
|
|
|
|
event_body,
|
|
|
|
issue_footer
|
|
|
|
])
|
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
new_issue = github.create_issue(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
event_title,
|
|
|
|
issue_body,
|
2024-10-09 02:29:33 -05:00
|
|
|
)
|
2024-10-09 06:34:52 -05:00
|
|
|
returned_data = new_issue.json()
|
2024-10-09 02:29:33 -05:00
|
|
|
issue_comment_body = """
|
|
|
|
*This issue is being mirrored on Github [here]({}).*
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary>Internal issue metadata</summary>
|
|
|
|
|
2024-10-09 03:17:22 -05:00
|
|
|
{}
|
2024-10-09 02:29:33 -05:00
|
|
|
</details>
|
|
|
|
""".format(
|
|
|
|
returned_data["html_url"],
|
2024-10-09 03:17:22 -05:00
|
|
|
generate_sentinel(returned_data["url"])
|
2024-10-09 02:29:33 -05:00
|
|
|
)
|
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
gitea.leave_comment_on_issue_by_number(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
issue_number,
|
|
|
|
body,
|
2024-10-09 02:29:33 -05:00
|
|
|
)
|
|
|
|
|
2024-10-09 03:39:58 -05:00
|
|
|
elif event_type == "created":
|
|
|
|
comment_user = data["comment"]["user"]["login"]
|
|
|
|
comment_user_url = "https://{}/{}".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"],
|
|
|
|
comment_user,
|
|
|
|
)
|
|
|
|
comment_header = "*This comment has automatically been created by [`gitea-github-sync`](https://{}/bridge/about) on behalf of [{}]({}).*".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"],
|
|
|
|
comment_user,
|
|
|
|
comment_user_url,
|
|
|
|
)
|
|
|
|
|
|
|
|
comment_footer = """
|
|
|
|
<details>
|
|
|
|
<summary>Internal issue metadata</summary>
|
|
|
|
|
|
|
|
{}
|
|
|
|
</details>
|
|
|
|
""".format(generate_sentinel(event_url))
|
|
|
|
|
|
|
|
comment_body = "\n\n".join([
|
|
|
|
comment_header,
|
|
|
|
event_body,
|
|
|
|
comment_footer,
|
|
|
|
])
|
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
github.leave_comment_on_issue_by_number(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
issue_number,
|
|
|
|
body,
|
2024-10-09 03:39:58 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
elif event_type == "closed":
|
2024-10-09 05:16:33 -05:00
|
|
|
github_close_issue_result = github.close_issue_by_number(
|
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
issue_number,
|
2024-10-09 03:39:58 -05:00
|
|
|
)
|
|
|
|
|
2024-10-09 05:16:33 -05:00
|
|
|
return ''
|
|
|
|
|
|
|
|
@app.route("/bridge/endpoints/github/issue", methods=["POST"])
|
|
|
|
def github_handle_issue_action():
|
|
|
|
gitea = Gitea(
|
|
|
|
api_token=app.config["GITEA_ACCESS_TOKEN"],
|
|
|
|
instance_name=app.config["GITEA_INSTANCE_DOMAIN"]
|
|
|
|
)
|
|
|
|
github = Github(app.config["GITHUB_ACCESS_TOKEN"])
|
|
|
|
|
|
|
|
data = request.json
|
|
|
|
|
|
|
|
try:
|
|
|
|
event_type = data["action"]
|
|
|
|
|
|
|
|
repo_owner = data["repository"]["owner"]["login"]
|
|
|
|
repo_name = data["repository"]["name"]
|
|
|
|
issue_user = data["issue"]["user"]["login"]
|
|
|
|
issue_user_url = "https://github.com/{}".format(
|
|
|
|
issue_user,
|
|
|
|
)
|
|
|
|
issue_number = data["issue"]["number"]
|
|
|
|
|
|
|
|
if event_type == "opened": # new issue created
|
|
|
|
event_title = data["issue"]["title"]
|
|
|
|
event_body = data["issue"]["body"]
|
|
|
|
elif event_type == "created": # new comment on that issue
|
|
|
|
event_title = None
|
|
|
|
event_body = data["comment"]["body"]
|
|
|
|
elif event_type == "closed": # issue closed
|
|
|
|
event_title = None
|
|
|
|
event_body = data["issue"]["body"]
|
|
|
|
|
|
|
|
if not event_body: event_body = ""
|
|
|
|
event_url = data["issue"]["url"]
|
|
|
|
|
|
|
|
except KeyError as e:
|
|
|
|
print(e, type(e))
|
|
|
|
abort(400) # the data isn't formatted correctly
|
|
|
|
|
|
|
|
if issue_sentinel in event_body:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
if event_type == "opened":
|
|
|
|
issue_header = "*This issue has automatically been created by [`gitea-github-sync`](https://{}/bridge/about) on behalf of [{}]({}).*".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"],
|
|
|
|
issue_user,
|
|
|
|
issue_user_url,
|
|
|
|
)
|
|
|
|
|
|
|
|
issue_footer = """
|
|
|
|
<details>
|
|
|
|
<summary>Internal issue metadata</summary>
|
|
|
|
|
|
|
|
{}
|
|
|
|
</details>
|
|
|
|
""".format(generate_sentinel(event_url))
|
|
|
|
|
|
|
|
issue_body = "\n\n".join([
|
|
|
|
issue_header,
|
|
|
|
event_body,
|
|
|
|
issue_footer
|
|
|
|
])
|
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
gitea.create_issue(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
event_title,
|
|
|
|
issue_body
|
|
|
|
)
|
|
|
|
|
|
|
|
elif event_type == "created":
|
|
|
|
comment_user = data["comment"]["user"]["login"]
|
|
|
|
comment_user_url = "https://github.com/{}".format(
|
|
|
|
comment_user,
|
|
|
|
)
|
|
|
|
comment_header = "*This comment has automatically been created by [`gitea-github-sync`](https://{}/bridge/about) on behalf of [{}]({}).*".format(
|
|
|
|
app.config["GITEA_INSTANCE_DOMAIN"],
|
|
|
|
comment_user,
|
|
|
|
comment_user_url,
|
|
|
|
)
|
|
|
|
|
|
|
|
comment_footer = """
|
|
|
|
<details>
|
|
|
|
<summary>Internal issue metadata</summary>
|
|
|
|
|
|
|
|
{}
|
|
|
|
</details>
|
|
|
|
""".format(generate_sentinel(event_url))
|
|
|
|
|
|
|
|
comment_body = "\n\n".join([
|
|
|
|
comment_header,
|
|
|
|
event_body,
|
|
|
|
comment_footer,
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2024-10-09 06:34:52 -05:00
|
|
|
gitea.leave_comment_on_issue_by_number(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
issue_number,
|
|
|
|
comment_body
|
|
|
|
)
|
|
|
|
|
|
|
|
elif event_type == "closed":
|
2024-10-09 06:34:52 -05:00
|
|
|
gitea.close_issue_by_number(
|
2024-10-09 05:16:33 -05:00
|
|
|
repo_owner,
|
|
|
|
repo_name,
|
|
|
|
issue_number,
|
|
|
|
)
|
|
|
|
|
|
|
|
return ''
|