-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathgithub.py
65 lines (51 loc) · 1.93 KB
/
github.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
import json
import os
import requests
class GitHubClient:
def __init__(self, user, repo, token=""):
gh_token = ""
if token != "":
gh_token = token
else:
if os.environ.get("GITHUB_TOKEN") != None:
gh_token = os.environ["GITHUB_TOKEN"]
if os.environ.get("GH_TOKEN") != None:
gh_token = os.environ["GH_TOKEN"]
if gh_token == "":
raise Exception("GitHub token not able to be set")
self.user = user
self.repo = repo
self.headers = {
"Authorization": "token " + gh_token,
"Accept": "application/vnd.github.v3+json",
}
def _create_request(self, rest_path):
return "https://api.github.com" + rest_path
def create_annotated_tag(self, tag, tag_msg, commit_hash):
data = {
"tag": tag,
"message": tag_msg,
"object": commit_hash,
"type": "commit",
}
create_tag_rest_path = "/repos/{}/{}/git/tags".format(self.user, self.repo)
req = self._create_request(create_tag_rest_path)
return requests.post(req, headers=self.headers, data=json.dumps(data))
def create_reference(self, ref, sha):
data = {
"ref": ref,
"sha": sha,
}
create_ref_rest_path = "/repos/{}/{}/git/refs".format(self.user, self.repo)
req = self._create_request(create_ref_rest_path)
return requests.post(req, headers=self.headers, data=json.dumps(data))
def create_pr(self, pr_from, pr_to, pr_title, body):
data = {
"head": pr_from,
"base": pr_to,
"title": pr_title,
"body": body,
}
create_pr_rest_path = "/repos/{}/{}/pulls".format(self.user, self.repo)
req = self._create_request(create_pr_rest_path)
return requests.post(req, headers=self.headers, data=json.dumps(data))