Last active
August 25, 2016 11:50
-
-
Save TBeijen/dc6f4b2c3746477ac46e8f69547fe29b to your computer and use it in GitHub Desktop.
Pyton Simple Server (Varnish/Haproxy debugging)
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 | |
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE | |
# Written by Nathan Hamiel (2010) | |
# | |
# Changes (TBeijen): | |
# - Removed cookie setting | |
# - added send_headers() | |
# - added cache control | |
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler | |
from optparse import OptionParser | |
class RequestHandler(BaseHTTPRequestHandler): | |
def do_GET(self): | |
request_path = self.path | |
print("\n----- Request Start ----->\n") | |
print(request_path) | |
print(self.headers) | |
print("<----- Request End -----\n") | |
self.send_response(200) | |
self.send_header('Cache-Control', 'public, max-age=60') | |
self.end_headers() | |
def do_POST(self): | |
request_path = self.path | |
print("\n----- Request Start ----->\n") | |
print(request_path) | |
request_headers = self.headers | |
content_length = request_headers.getheaders('content-length') | |
length = int(content_length[0]) if content_length else 0 | |
print(request_headers) | |
print(self.rfile.read(length)) | |
print("<----- Request End -----\n") | |
self.send_response(200) | |
self.send_headers() | |
do_PUT = do_POST | |
do_DELETE = do_GET | |
def main(): | |
port = 8000 | |
print('Listening on localhost:%s' % port) | |
server = HTTPServer(('', port), RequestHandler) | |
server.serve_forever() | |
if __name__ == "__main__": | |
parser = OptionParser() | |
parser.usage = ("Creates an http-server that will echo out any GET or POST parameters\n" | |
"Run:\n\n" | |
" reflect") | |
(options, args) = parser.parse_args() | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment