-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhook.py
36 lines (26 loc) · 1.01 KB
/
webhook.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
########################### REVIEW LATER ################################
from http.server import HTTPServer, BaseHTTPRequestHandler
import json
from io import BytesIO
class SimpleHTTPRequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
self.send_response(200)
self.end_headers()
self.wfile.write(b'Hello, world!')
def do_POST(self):
content_length = int(self.headers['Content-Length'])
body = self.rfile.read(content_length)
self.send_response(200)
self.end_headers()
response = BytesIO()
response.write(b'This is POST request. ')
response.write(b'Received: ')
response.write(body)
body = json.loads(body)
if body['repository']['full_name'] == 'hackbacc/hackbot':
print('reset')
pass
self.wfile.write(response.getvalue())
# httpd = HTTPServer(('localhost', 6006), SimpleHTTPRequestHandler)
httpd = HTTPServer(('0.0.0.0', 6006), SimpleHTTPRequestHandler)
httpd.serve_forever()