-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.py
566 lines (459 loc) · 14.4 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
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
# HK-51 IRC Bot
# Copyright (C) 2018-2022 - Matthew Hoops (clone2727)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import hmac
import http.server
import json
import os
import selectors
import shutil
import socket
import ssl
import tempfile
import threading
import traceback
# Try importing inotify for supporting watching the TLS cert files. If not
# available, then it just will not support auto-restart.
try:
from . import inotify
except:
inotify = None
class _GitHubHook:
def on_messages(self, messages):
raise NotImplementedError
class _StdOutHook(_GitHubHook):
def on_messages(self, messages):
for message in messages:
print(message)
class _BotHook(_GitHubHook):
def __init__(self, bot, channels):
self._bot = bot
self._channels = channels
def on_messages(self, messages):
# Figure out the recipients
recipients = sorted([channel for channel in self._bot.channels.keys() if not self._channels or channel in self._channels])
for recipient in recipients:
for message in messages:
self._bot.say(message, recipient)
class _HTTPError(Exception):
def __init__(self, code, text):
super().__init__('{0}: {1}'.format(code, text))
self.code = code
self.text = text
class _BadRequestError(_HTTPError):
def __init__(self):
super().__init__(400, 'Bad Request')
class _ForbiddenError(_HTTPError):
def __init__(self):
super().__init__(403, 'Forbidden')
class _GitHubRequestHandler(http.server.BaseHTTPRequestHandler):
_message_hook = None
_secret = None
def do_POST(self):
try:
self._handle_post()
except _HTTPError as ex:
code = ex.code
text = ex.text
except Exception as ex:
# Other exception we don't know about: it's our internal error
code = 500
text = 'Internal Error'
else:
code = 200
text = 'Success'
# Send the message back
self.send_response(code)
self.send_header('Content-type', 'text/plain')
self.end_headers()
self.wfile.write(text.encode('utf-8'))
def _handle_post(self):
# Pull in some needed headers
#delivery_guid = self.headers.get('X-Github-Delivery')
check_digest = self.headers.get('X-Hub-Signature')
event_type = self.headers.get('X-GitHub-Event')
content_type = self.headers.get('Content-Type')
content_len = int(self.headers.get('Content-Length'))
# Make sure we have a JSON request
if content_type != 'application/json':
raise _BadRequestError()
# Verify the content
post_body = self.rfile.read(content_len)
secret = self._secret
if secret:
# Ensure that we actually have the field in the header
if not check_digest:
raise _BadRequestError()
# Only accept sha1 for now
if not check_digest.startswith('sha1='):
raise _BadRequestError()
# Strip off the header
check_digest = check_digest[5:]
# Calculate the correct digest
correct_digest = hmac.new(secret, msg=post_body, digestmod='sha1').hexdigest()
# Do a secure comparison to make sure we have it
if not hmac.compare_digest(correct_digest, check_digest):
raise _ForbiddenError()
# Parse the payload as json
try:
request = json.loads(post_body)
except json.JSONDecodeError:
raise _BadRequestError()
'''
print('GOT REQUEST {0}'.format(event_type))
print(request)
'''
# Deal with types we care about
if event_type == 'issues':
self._on_issues(request)
elif event_type == 'pull_request':
self._on_pull_request(request)
elif event_type == 'push':
self._on_push(request)
def _on_issues(self, request):
action = request['action']
# If it's an action we don't care about, just ignore it
if action not in ('opened', 'closed', 'reopened'):
return
# Fetch a bunch of fields that we need
issue = request['issue']
url = issue['html_url']
number = issue['number']
title = issue['title']
repo = request['repository']
repo_name = repo['name']
sender = request['sender']
login = sender['login']
# Format the message
message = '[{0}] {1} {2} issue #{3}: {4} {5}'.format(
repo_name,
login,
action,
number,
title,
url)
self._on_messages([message])
def _on_pull_request(self, request):
action = request['action']
# If it's an action we don't care about, just ignore it
if action not in ('opened', 'closed', 'reopened'):
return
# Fetch a bunch of fields that we need
number = request['number']
pull_request = request['pull_request']
url = pull_request['html_url']
title = pull_request['title']
head = pull_request['head']
head_ref = head['ref']
base = pull_request['base']
base_ref = base['ref']
repo = request['repository']
repo_name = repo['name']
sender = request['sender']
login = sender['login']
# Format the message
message = '[{0}] {1} {2} pull request #{3}: {4} ({5}..{6}) {7}'.format(
repo_name,
login,
action,
number,
title,
base_ref,
head_ref,
url)
self._on_messages([message])
def _on_push(self, request):
ref = request['ref']
compare_url = request['compare']
commits = request['commits']
repository = request['repository']
repo_name = repository['name']
repo_url = repository['html_url']
sender = request['sender']
user = sender['login']
ref_type = ref.split('/', 2)[1]
branch = ref.split('/', 2)[2]
created = request['created']
deleted = request['deleted']
forced = request['forced']
before = request['before']
after = request['after']
size = len(request['commits'])
base_ref = request['base_ref']
if base_ref:
top_message = '[{0}] {1} merged {2} into {3}: {4}'.format(
repo_name,
user,
base_ref.split('/', 2)[2],
branch,
compare_url)
elif created:
if ref_type == 'tags':
top_message = '[{0}] {1} tagged {2} at {3}: {4}'.format(
repo_name,
user,
branch,
after[:7],
compare_url)
else:
top_message = '[{0}] {1} created {2} (+{3} new {4}): {5}'.format(
repo_name,
user,
branch,
size,
'commit' if size == 1 else 'commits',
compare_url)
elif deleted:
# TODO: API doesn't seem to provide the commit URL directly
top_message = '[{0}] {1} deleted {2} at {3}: {4}'.format(
repo_name,
user,
branch,
before[:7],
repo_url + '/commit/' + before[:7])
elif forced:
# TODO: API doesn't seem to provide the commits URL directly
top_message = '[{0}] {1} force-pushed {2} from {3} to {4}: {5}'.format(
repo_name,
user,
branch,
before[:7],
after[:7],
repo_url + '/commits/' + branch)
else:
top_message = '[{0}] {1} pushed {2} new {3} to {4}: {5}'.format(
repo_name,
user,
size,
'commit' if size == 1 else 'commits',
branch,
compare_url)
messages = [top_message]
# Truncate the commits to the first three and print them
for commit in commits[:3]:
commit_hash = commit['id']
author = commit['author']
author_name = author['name']
message = commit['message']
messages.append('{0}/{1} {2} {3}: {4}'.format(repo_name, branch, commit_hash[:7], author_name, message.split('\n', 1)[0][:130]))
self._on_messages(messages)
def _on_messages(self, messages):
hook = self._message_hook
if hook:
hook.on_messages(messages)
class _RequestHandlerFactory:
def __init__(self, hook, secret):
self._hook = hook
# Secret needs to be a bytes object. If it's a string, encode it.
if isinstance(secret, str):
self._secret = secret.encode('UTF-8')
else:
self._secret = secret
def __call__(self, *args, **kwargs):
hook = self._hook
secret = self._secret
class RequestWrapper(_GitHubRequestHandler):
def __init__(self, *args, **kwargs):
self._message_hook = hook
self._secret = secret
super().__init__(*args, **kwargs)
return RequestWrapper(*args, **kwargs)
def _create_server(factory, cert_file=None, hook=None, secret=None, ca_file=None, key_file=None):
# Create the basic server
server = factory.create(_RequestHandlerFactory(hook, secret))
# Wrap in TLS if we have a cert
if cert_file:
# Create a client-authenticating context
context = ssl.create_default_context(purpose=ssl.Purpose.CLIENT_AUTH)
# If there was a separate CA file, combine them into a single file with the
# cert file.
if ca_file:
with tempfile.NamedTemporaryFile() as combined_fd:
# Copy both files to a combined one
for input_file_name in (cert_file, ca_file):
with open(input_file_name, 'rb') as input_fd:
shutil.copyfileobj(input_fd, combined_fd)
# Ensure the file is flushed
combined_fd.flush()
# Load the cert chain using that
context.load_cert_chain(combined_fd.name, key_file)
else:
# Load just the single file
context.load_cert_chain(cert_file, key_file)
# Wrap the socket
server.socket = context.wrap_socket(server.socket, server_side=True)
elif ca_file or key_file:
# Misconfiguration
raise Exception('Missing cert_file parameter')
return server
class _HTTPServerCallback:
def __init__(self, server):
self._server = server
def __call__(self, fd):
server = self._server
try:
request, client_address = server.get_request()
except OSError:
return
if server.verify_request(request, client_address):
try:
server.process_request(request, client_address)
except Exception:
server.handle_error(request, client_address)
class _HTTPServerFactory:
def __init__(self, host, port):
info = socket.getaddrinfo(
host,
port,
family=socket.AF_UNSPEC,
flags=socket.AI_PASSIVE,
type=socket.SOCK_STREAM,
proto=socket.IPPROTO_TCP)[0]
self._addr = info[4]
self._family = info[0]
def create(self, handler_factory):
class ServerWrapper(http.server.HTTPServer):
address_family = self._family
return ServerWrapper(self._addr, handler_factory)
if inotify:
_WATCH_MASK = inotify.IN_MOVED_TO | inotify.IN_CLOSE_WRITE
class _InotifyFileNameCallback:
def __init__(self, file_names, callback):
self._file_names = file_names
self._callback = callback
def __call__(self, mask, cookie, name):
if (mask & _WATCH_MASK) != 0 and name in self._file_names:
self._callback()
class _ServerManager:
"""Internal server manager for HTTP."""
def __init__(self, host, port, **kwargs):
self._factory = _HTTPServerFactory(host, port)
self._kwargs = kwargs
# Initialize some variables to None to help with cleanup.
self._server = None
self._selector = None
self._watcher = None
# Allocate the server and selector
self._selector = selectors.DefaultSelector()
# Initialize the file watcher
self._init_file_watch()
# Initialize the server
self._start_server()
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, traceback):
self.close()
def close(self):
"""Shutdown the server."""
watcher = self._watcher
self._watcher = None
server = self._server
self._server = None
selector = self._selector
self._selector = None
try:
if watcher:
watcher.close()
finally:
try:
if server:
server.server_close()
finally:
if selector:
selector.close()
def _make_server(self):
return _create_server(self._factory, **self._kwargs)
def _start_server(self):
# Allocate the server
self._server = self._make_server()
# Add the HTTP server into the selector
self._selector.register(self._server, selectors.EVENT_READ, _HTTPServerCallback(self._server))
def _close_server(self):
server = self._server
self._server = None
if not server:
return
try:
self._selector.unregister(server)
finally:
server.server_close()
def _init_file_watch(self):
# If we don't have inotify, nothing to do.
if not inotify:
return
# Figure out which files we have.
watch_files = []
for var in ('cert_file', 'ca_file', 'key_file'):
value = self._kwargs.get(var)
if value:
watch_files.append(value)
# If we have no files, there's nothing to do.
if not watch_files:
return
# Figure out which directories we need to watch.
directories = {}
for watch_file in watch_files:
directory, base_name = os.path.split(watch_file)
try:
directories[directory].add(base_name)
except KeyError:
directories[directory] = set([base_name])
# Initialize the watcher
watcher = inotify.Manager()
self._selector.register(watcher, selectors.EVENT_READ, watcher.on_event)
# Create watches on each directory
for directory, file_names in directories.items():
watcher.add_watch(directory, _WATCH_MASK, _InotifyFileNameCallback(file_names, self.restart_server))
def restart_server(self):
"""Restart the HTTP server."""
self._close_server()
self._start_server()
def run(self):
"""Run the server's event loop."""
while True:
events = self._selector.select()
for key, mask in events:
try:
key.data(key.fd)
except Exception:
traceback.print_exc()
def init_bot_webhook(host, port, bot, channels=[], **kwargs):
# Create the server
manager = _ServerManager(host, port, hook=_BotHook(bot, channels), **kwargs)
# Create a function wrapper to handle the manager
def thread_runner():
# Run and make sure we de-initialize if we shutdown
with manager:
manager.run()
# Spawn a thread to handle the requests
thread = threading.Thread(target=thread_runner)
thread.start()
# Debug code for when running as main
if __name__ == '__main__':
# Pull info off the command line
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('--host', help='Host to bind to', default='127.0.0.1')
parser.add_argument('--port', help='Port to listen on', type=int, default=80)
parser.add_argument('--cert-file', help='Certificate file')
parser.add_argument('--secret', help='The secret to check the hash against')
parser.add_argument('--ca-file', help='Certificate authority file')
parser.add_argument('--key-file', help='Private key file')
args = parser.parse_args()
# Create the server
with _ServerManager(args.host, args.port, hook=_StdOutHook(), cert_file=args.cert_file, secret=args.secret, ca_file=args.ca_file, key_file=args.key_file) as manager:
# Listen until someone sends in a SIGINT
manager.run()