-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathserv.py
78 lines (69 loc) · 2.46 KB
/
serv.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
from http.server import BaseHTTPRequestHandler, HTTPServer
import logging
import cgi
import urllib.parse
class S(BaseHTTPRequestHandler):
def _set_response(self):
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
def do_GET(self):
return
def do_POST(self):
content_type, pdict = cgi.parse_header(self.headers['content-type'])
if content_type == 'multipart/form-data':
postvars = cgi.parse_multipart(self.rfile, pdict)
elif content_type == 'application/x-www-form-urlencoded':
length = int(self.headers['content-length'])
postvars = urllib.parse.parse_qs(self.rfile.read(length), keep_blank_values=1)
else:
postvars = {}
if len(postvars):
i = 0
for key in sorted(postvars):
logging.debug('ARG[%d] %s=%s' % (i, key, postvars[key]))
i += 1
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
str = ''
str += '<html>'
str += ' <head>'
str += ' <title>Server POST Response</title>'
str += ' </head>'
str += ' <body>'
str += ' <p>POST variables (%d).</p>' % (len(postvars))
if len(postvars):
str += ' <table>'
str += ' <tbody>'
i = 0
for key in sorted(postvars):
i += 1
val = postvars[key]
str += ' <tr>'
str += ' <td align="right">%d</td>' % (i)
str += ' <td align="right">%s</td>' % key
str += ' <td align="left">%s</td>' % val
str += ' </tr>'
str += ' </tbody>'
str += ' </table>'
str += ' </body>'
str += '</html>'
self.wfile.write(str.format(self.path).encode('utf-8'))
def run(server_class=HTTPServer, handler_class=S, port=8080):
logging.basicConfig(level=logging.INFO)
server_address = ('', port)
httpd = server_class(server_address, handler_class)
logging.info('Starting httpd...\n')
try:
httpd.serve_forever()
except KeyboardInterrupt:
pass
httpd.server_close()
logging.info('Stopping httpd...\n')
if __name__ == '__main__':
from sys import argv
if len(argv) == 2:
run(port=int(argv[1]))
else:
run()