Created
September 19, 2016 13:57
-
-
Save arminrosu/266116a246555694a780484459d1b357 to your computer and use it in GitHub Desktop.
Basic Python HTTPS JSON Server
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
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer | |
import ssl | |
import SocketServer | |
import json | |
import cgi | |
class Server(BaseHTTPRequestHandler): | |
def _set_headers(self): | |
self.send_response(200) | |
self.send_header('Content-type', 'application/json') | |
self.send_header('Access-Control-Allow-Origin', '*') | |
self.end_headers() | |
def do_HEAD(self): | |
self._set_headers() | |
# GET sends back a Hello world message | |
def do_GET(self): | |
self._set_headers() | |
self.wfile.write(json.dumps({'hello': 'world', 'received': 'ok'})) | |
# POST echoes the message adding a JSON field | |
def do_POST(self): | |
ctype, pdict = cgi.parse_header(self.headers.getheader('content-type')) | |
# refuse to receive non-json content | |
if ctype != 'application/json': | |
self.send_response(400) | |
self.end_headers() | |
return | |
# read the message and convert it into a python dictionary | |
length = int(self.headers.getheader('content-length')) | |
message = json.loads(self.rfile.read(length)) | |
# add a property to the object, just to mess with data | |
message['received'] = 'ok' | |
# send the message back | |
self._set_headers() | |
self.wfile.write(json.dumps(message)) | |
def run(server_class=HTTPServer, handler_class=Server, port=8008): | |
server_address = ('', port) | |
httpd = server_class(server_address, handler_class) | |
# openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 | |
httpd.socket = ssl.wrap_socket (httpd.socket, | |
keyfile="./key.pem", | |
certfile='./cert.pem', server_side=True) | |
print 'Starting httpd on port %d...' % port | |
httpd.serve_forever() | |
if __name__ == "__main__": | |
from sys import argv | |
if len(argv) == 2: | |
run(port=int(argv[1])) | |
else: | |
run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment