-
Notifications
You must be signed in to change notification settings - Fork 246
/
create-github-hooks.py
executable file
·225 lines (210 loc) · 7.32 KB
/
create-github-hooks.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#!/usr/bin/env python3
from github import Github
from os.path import expanduser, exists, join, dirname, abspath
from os import environ
from optparse import OptionParser
from github_hooks_config import get_repository_hooks, get_event_hooks, CMSSDT_BASE_URL
from github_utils import api_rate_limits
import hashlib, copy
from categories import EXTERNAL_REPOS, CMSSW_REPOS, CMSDIST_REPOS
from sys import argv
from socket import setdefaulttimeout
setdefaulttimeout(120)
SCRIPT_DIR = dirname(abspath(argv[0]))
# Get secret from file
def get_secret(hook_name):
if "GH_HOOK_SECRET_FILE" in environ:
secret_file = environ["GH_HOOK_SECRET_FILE"]
else:
secret_file = "/data/secrets/" + hook_name
if not exists(secret_file):
secret_file = "/data/secrets/github_hook_secret_cmsbot"
return open(secret_file, "r").read().split("\n")[0].strip()
# Get hook url
def get_url(repo_name, hook, secret, hk_conf):
url = hk_conf[hook]["config"]["url"]
ss = "%s:%s:%s" % (repo_name, hook, secret)
data = hashlib.sha256(ss.encode()).hexdigest()
xparam = "name=%s&data=%s" % (hook, data)
if "?" in url:
return "%s&%s" % (url, xparam)
return "%s?%s" % (url, xparam)
# match hook config
def match_config(new, old):
if new["active"] != old.active:
return False
elif set(new["events"]) != set(old.events):
return False
for key in new["config"]:
if (not key in old.config) or (key != "secret" and new["config"][key] != old.config[key]):
return False
return True
# main section
if __name__ == "__main__":
parser = OptionParser(
usage="%prog [-k|--hook <name>] [-r|--repository <repo>] [-f|--force] [-n|--dry-run]"
)
parser.add_option(
"-n",
"--dry-run",
dest="dryRun",
action="store_true",
help="Do not modify Github",
default=False,
)
parser.add_option(
"-f",
"--force",
dest="force",
action="store_true",
help="Force update github hook",
default=False,
)
parser.add_option(
"-r",
"--repository",
dest="repository",
help="Github Repositoy name e.g. cms-sw/cmssw.",
type=str,
default=None,
)
parser.add_option(
"-e",
"--externals",
dest="externals",
action="store_true",
help="Only process CMS externals repositories",
default=False,
)
parser.add_option(
"-u",
"--users",
dest="users",
action="store_true",
help="Only process USER externals repositories",
default=False,
)
parser.add_option(
"-c",
"--cmssw",
dest="cmssw",
action="store_true",
help="Only process " + ",".join(CMSSW_REPOS) + " repository",
default=False,
)
parser.add_option(
"-d",
"--cmsdist",
dest="cmsdist",
action="store_true",
help="Only process " + ",".join(CMSDIST_REPOS) + " repository",
default=False,
)
parser.add_option(
"-a",
"--all",
dest="all",
action="store_true",
help="Process all CMS repository i.e. externals, cmsdist and cmssw",
default=False,
)
parser.add_option("-k", "--hook", dest="hook", help="Github Hook name", type=str, default="")
opts, args = parser.parse_args()
repos_names = []
if opts.repository:
repos_names.append(opts.repository)
elif opts.all:
opts.externals = True
opts.cmssw = True
opts.cmsdist = True
elif (not opts.externals) and (not opts.cmssw) and (not opts.cmsdist) and (not opts.users):
parser.error("Too few arguments, please use either -e, -c , -u or -d")
if not repos_names:
if opts.externals:
repos_names = repos_names + EXTERNAL_REPOS
if opts.cmssw:
repos_names = repos_names + CMSSW_REPOS
if opts.cmsdist:
repos_names = repos_names + CMSDIST_REPOS
if opts.users:
from glob import glob
for rconf in glob(join(SCRIPT_DIR, "repos", "*", "*", "repo_config.py")):
repos_names.append("/".join(rconf.split("/")[-3:-1]))
print("Added User repo: ", repos_names[-1])
ghx = Github(login_or_token=open(expanduser("~/.github-token")).read().strip())
api_rate_limits(ghx)
# get repos to be processed
repos = {}
for r in set(repos_names):
if not "/" in r:
for repo in ghx.get_user(r).get_repos():
repos[repo.full_name] = repo
api_rate_limits(ghx)
else:
repos[r] = None
# process repos
print("Dryrun:", opts.dryRun)
for repo_name in repos:
gh = ghx
isUserRepo = False
if exists(join(SCRIPT_DIR, "repos", repo_name, "repo_config.py")):
exec("from repos." + repo_name.replace("/", ".") + " import repo_config")
if not repo_config.ADD_WEB_HOOK:
print("Skipped Web hook:", repo_name)
continue
isUserRepo = True
gh = Github(login_or_token=open(expanduser(repo_config.GH_TOKEN)).read().strip())
repo_name = repo_config.GH_REPO_FULLNAME
xfile = repo_name.replace("/", "-") + ".done"
if exists(xfile):
continue
print("Checking for repo ", repo_name)
if isUserRepo:
hk_conf = get_event_hooks(repo_config.VALID_WEB_HOOKS)
else:
hk_conf = get_repository_hooks(repo_name, opts.hook)
hooks = list(hk_conf.keys())
if not hooks:
print("==>Warning: No hook found for repository", repo_name)
continue
print("Found hooks:", hooks)
repo = repos[repo_name]
if not repo:
repo = gh.get_repo(repo_name)
repo_hooks_all = {}
for hook in repo.get_hooks():
url = hook.config["url"]
if not url.startswith(CMSSDT_BASE_URL):
continue
if "name=Jenkins_Github_" in url:
name = [
x.split("=")[-1]
for x in url.split("?")[-1].split("&")
if x.startswith("name=Jenkins_Github_")
][0]
repo_hooks_all[name] = hook
api_rate_limits(gh)
for hook in hooks:
print("checking for web hook", hook)
secret = get_secret(hook)
hook_conf = copy.deepcopy(hk_conf[hook])
hook_conf["name"] = "web"
hook_conf["config"]["insecure_ssl"] = "1"
hook_conf["config"]["secret"] = secret
hook_conf["config"]["url"] = get_url(repo_name, hook, secret, hk_conf)
if hook in repo_hooks_all:
old_hook = repo_hooks_all[hook]
if opts.force or not match_config(hook_conf, old_hook):
if not opts.dryRun:
old_hook.edit(**hook_conf)
api_rate_limits(gh)
print("hook updated", hook)
else:
print("Hook configuration is same", hook)
else:
if not opts.dryRun:
repo.create_hook(**hook_conf)
api_rate_limits(gh)
print("Hook created in github.....success", hook)
ref = open(xfile, "w")
ref.close()