forked from mozilla/github-org-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_active_hooks.py
executable file
·157 lines (142 loc) · 5.51 KB
/
get_active_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
#!/usr/bin/env python
"""Report on Service & Web hooks for organization."""
_epilog = """
To avoid issues with large organizations and API rate limits, the data
for each organization is cached in a tinydb database named <org>.db.
While new repositories will be automatically added, deletes & updates
are not handled. Manually remove the database to force a full query.
"""
import argparse
import client
import logging
import urllib.parse
import yaml
import tinydb
# Lore: swapping hook.test for hook.ping will cause repetition of the
# actions. In particular, a number of repos post to IRC channels
# and/or bugs on commits, so expect comments to that effect.
logger = logging.getLogger(__name__)
def wait_for_karma(gh, min_karma=25, msg=None):
while gh:
core = gh.rate_limit()["resources"]["core"]
if core["remaining"] < min_karma:
now = time.time()
nap = max(core["reset"] - now, 0.1)
logger.info("napping for %s seconds", nap)
if msg:
logger.info(msg)
time.sleep(nap)
else:
break
def get_hook_name(hook):
# we might have a github3 object or a dictionary - convert to
# dictionary if not that
if not isinstance(hook, dict):
hook = hook.as_dict()
# if hook['name'] == "web", then this is a web hook, and there can be
# several per repo. The unique part is the hook['config']['url'], which
# may contain sensitive info (including basic login data), so just
# grab scheme, hostname, and port.
if hook["name"] != "web":
name = hook["name"]
else:
url = hook["config"]["url"]
parts = urllib.parse.urlparse(url)
# port can be None, which prints funny, but is good enough for
# identification.
name = f"{parts.scheme}://{parts.hostname}:{parts.port}"
return name
def report_hooks(
gh, org, active_only=False, unique_only=False, do_ping=False, yaml_out=False
):
org_handle = gh.organization(org)
with tinydb.TinyDB(f"{org}.db") as db:
q = tinydb.Query()
org_struct = org_handle.as_dict()
repo_list = []
org_struct["repo_list"] = repo_list
unique_hooks = set()
msg = "Active" if active_only else "All"
for repo in org_handle.repositories():
repo_hooks = set()
# try for existing data
l = db.search(q.name == repo.name)
have_data = len(l) == 1
if have_data:
# already have data
logger.debug(f"Already have data for {repo.name}")
# load existing data
repo_struct = l[0]
hook_list = repo_struct["hook_list"]
repo_hooks = {get_hook_name(x) for x in hook_list}
else:
wait_for_karma(gh, 100, msg=f"waiting at {repo.name}")
repo_struct = repo.as_dict()
hook_list = []
repo_struct["hook_list"] = hook_list
repo_list.append(repo_struct)
ping_attempts = ping_fails = 0
for hook in repo.hooks():
wait_for_karma(gh, 100, msg=f"waiting at hooks() for {repo.name}")
hook_struct = hook.as_dict()
hook_list.append(hook_struct)
name = get_hook_name(hook)
if hook.active or not active_only:
repo_hooks.add(name)
if do_ping and hook.active:
ping_attempts += 1
if not hook.ping():
ping_fails += 1
logger.warning("Ping failed for %s", name)
if repo_hooks and not unique_only:
print(f"{msg} hooks for {repo.name}:")
if do_ping:
print(" pinged %d (%d failed)" % (ping_attempts, ping_fails))
for h in repo_hooks:
print(f" {h:s}")
unique_hooks = unique_hooks.union(repo_hooks)
# now that we're done with this repo, persist the data
if not have_data:
db.insert(repo_struct)
if yaml_out:
print(
yaml.safe_dump(
[
org_struct,
]
)
)
elif unique_only and unique_hooks:
print(f"{msg} hooks for org {org}")
for h in unique_hooks:
print(h)
def parse_args():
parser = argparse.ArgumentParser(description=__doc__, epilog=_epilog)
parser.add_argument("org", help="Organization", default=["mozilla"], nargs="*")
parser.add_argument(
"--active",
action="store_true",
help="Show active hooks only (not for cached repositories)",
)
parser.add_argument(
"--unique", help="Show unique hook names only", action="store_true"
)
parser.add_argument(
"--ping",
action="store_true",
help="Ping all hooks (not for cached repositories)",
)
parser.add_argument("--yaml", help="Yaml ouput only", action="store_true")
return parser.parse_args()
def main():
args = parse_args()
gh = client.get_github3_client()
for org in args.org:
report_hooks(gh, org, args.active, args.unique, args.ping, args.yaml)
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(message)s")
logging.getLogger("github3").setLevel(logging.WARNING)
try:
main()
except KeyboardInterrupt:
raise SystemExit