Created
November 25, 2013 00:38
-
-
Save FiloSottile/7634541 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
import BaseHTTPServer | |
import sys | |
import time | |
import urlparse | |
import json | |
HOST_NAME = sys.argv[1] | |
PORT_NUMBER = int(sys.argv[2]) | |
def handle_hook(payload): | |
pass | |
class HookHandler(BaseHTTPServer.BaseHTTPRequestHandler): | |
server_version = "HookHandler/0.1" | |
def do_GET(s): | |
s.send_response(200) | |
s.wfile.write('Hello!') | |
def do_POST(s): | |
# Check that the IP is within the GH ranges | |
if not any(s.client_address[0].startswith(IP) | |
for IP in ('192.30.252', '192.30.253', '192.30.254', '192.30.255')): | |
s.send_error(403) | |
length = int(s.headers['Content-Length']) | |
post_data = urlparse.parse_qs(s.rfile.read(length).decode('utf-8')) | |
payload = json.loads(post_data['payload'][0]) | |
handle_hook(payload) | |
s.send_response(200) | |
if __name__ == '__main__': | |
server_class = BaseHTTPServer.HTTPServer | |
httpd = server_class((HOST_NAME, PORT_NUMBER), HookHandler) | |
print time.asctime(), "Server Starts - %s:%s" % (HOST_NAME, PORT_NUMBER) | |
try: | |
httpd.serve_forever() | |
except KeyboardInterrupt: | |
pass | |
httpd.server_close() | |
print time.asctime(), "Server Stops - %s:%s" % (HOST_NAME, PORT_NUMBER) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment