-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
tmp_deploy.py
79 lines (68 loc) · 2.4 KB
/
tmp_deploy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import json
import gzip
import base64
from urllib.parse import quote, urlencode
import os
from github import Github
files = []
code = ''
reqs = {}
for f in os.listdir('PRs'):
file_path = os.path.join('PRs', f)
if f not in ['app.py','requirements.txt']:
with open(file_path, 'rb') as file:
files.append(
{
"name": f,
"content": base64.b64encode(file.read()).decode("utf8"),
"encoding": "base64"
}
)
elif f == 'app.py':
with open(file_path, 'r') as file:
code = file.read()
else:
with open(file_path, 'r') as file:
reqs = {
'name': f,
'content': file.read()
}
new_package = f'{os.getenv("PACKAGE_NAME")} @ https://py.cafe/gh/artifact/{os.getenv("GITHUB_REPOSITORY")}/{os.getenv("ARTIFACT_ID")}/{os.getenv("FILE_FULLNAME")}'
if os.getenv("PACKAGE_NAME") in reqs['content']:
reqs['content'] = reqs['content'].replace(os.getenv("PACKAGE_NAME"), new_package)
else:
reqs['content'] += f'\n{new_package}'
def generate_link(files, code):
json_object = {
"requirements": reqs['content'],
"code": code,
"files": files,
}
json_text = json.dumps(json_object)
# gzip -> base64
compressed_json_text = gzip.compress(json_text.encode("utf8"))
base64_text = base64.b64encode(compressed_json_text).decode("utf8")
query = urlencode({"c": base64_text}, quote_via=quote)
base_url = "https://py.cafe"
type = "dash" # replace by dash, or streamlit
return f"{base_url}/snippet/{type}/v1?{query}"
# Generate the link
link = generate_link(files, code)
# Post the link as a comment on the pull request
def post_comment(link):
# Get environment variables
GITHUB_TOKEN = os.getenv('GITHUB_TOKEN')
REPO_NAME = os.getenv('GITHUB_REPOSITORY')
PR_NUMBER = int(os.getenv('PR_NUMBER'))
# Initialize Github object
g = Github(GITHUB_TOKEN)
# Get the repository
repo = g.get_repo(REPO_NAME)
# Get the pull request
pull_request = repo.get_pull(PR_NUMBER)
# Add a comment to the pull request
comment_body = f"Generated link: [{REPO_NAME}-{PR_NUMBER}]({link})"
pull_request.create_issue_comment(comment_body)
print("Comment added to the pull request.")
# Call the function to post the comment
post_comment(link)