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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
import http.server
from http.server import SimpleHTTPRequestHandler
import urllib.parse, cgi, html.entities
import sys, os, time
from io import BytesIO, StringIO
class Translator:
"""For use with format strings.
'formatstring % translator' will evaluate all %(xxx)s expressions
found in the format string in the given globals/locals.
Multiline expressions are assumed to be one or several complete
statements; they are executed and whatever they print is inserted back
into the format string."""
def __init__(self, globals, locals):
self.globals = globals
self.locals = locals
def __getitem__(self, expr):
# DEBUG: print(f"expr = {expr}",file=sys.stderr)
if '\n' in expr:
if not expr.endswith('\n'):
expr += '\n'
prevstdout = sys.stdout
try:
sys.stdout = f = StringIO()
exec(expr, self.globals, self.locals)
finally:
sys.stdout = prevstdout
return f.getvalue()
else:
return eval(expr, self.globals, self.locals)
class TranslatorIO:
"Lazy version of Translator."
def __init__(self, fmt, d):
self.gen = self.generate(fmt, d)
def read(self, ignored=None):
for text in self.gen:
if text:
return text
return ''
def close(self):
self.gen = ()
def generate(self, fmt, d):
t = Translator(d, d)
for data in fmt.split('\x0c'):
# DEBUG: print(f"data={data}",file=sys.stderr) # only for debug
yield (data % t).encode()
# HTML quoting
text_to_html = {}
for key, value in list(html.entities.entitydefs.items()):
text_to_html[value] = '&' + key + ';'
def htmlquote(s):
return ''.join([text_to_html.get(c, c) for c in s]).encode()
# HTTP Request Handler
pathloaders = {}
def canonicalpath(url):
if url.startswith('/'):
url = url[1:]
return url.lower()
def register(url, loader):
pathloaders[canonicalpath(url)] = loader
def is_registered(url):
return canonicalpath(url) in pathloaders
def load(filename, mimetype=None, locals=None):
if mimetype and mimetype.startswith('text/'):
mode = 'r'
else:
mode = 'rb'
f = open(filename, mode)
if locals is not None:
data = f.read()
f.close()
#data = data.replace('%"', '%%"')
d = globals().copy()
d.update(locals)
f = TranslatorIO(data, d)
return f, mimetype
def fileloader(filename, mimetype=None):
def loader(**options):
return load(filename, mimetype)
return loader
class HTTPRequestError(Exception):
pass
class MiniHandler(SimpleHTTPRequestHandler):
def send_head(self, query=''):
addr, host, path, query1, fragment = urllib.parse.urlsplit(self.path)
path = canonicalpath(path)
if path not in pathloaders:
if path + '/' in pathloaders:
return self.redirect(path + '/')
self.send_error(404)
return None
kwds = {}
for q in [query1, query]:
if q:
kwds.update(cgi.parse_qs(q))
loader = pathloaders[path]
try:
hdr = self.headers
hdr['remote host'] = self.client_address[0]
f, ctype = loader(headers=hdr, **kwds)
except IOError as e:
print( e, file=sys.stderr )
self.send_error(404, b"I/O error: " + str(e).encode())
return None
except HTTPRequestError as e:
print( e, file=sys.stderr )
self.send_error(500, str(e).encode())
return None
except:
f = StringIO()
import traceback
traceback.print_exc(file=sys.stderr)
traceback.print_exc(file=f)
data = htmlquote(f.getvalue())
data = data.replace(b'\n', b'<br>\n')
self.send_error(500)
return BytesIO(b'<hr><p>'+data+b'</p>')
if ctype is None:
ctype = self.guess_type(self.translate_path(self.path))
elif f is None:
return self.redirect(ctype)
self.send_response(200)
self.send_header("Content-type", ctype)
self.end_headers()
return f
def redirect(self, url):
self.send_response(302)
self.send_header("Content-type", 'text/html')
self.send_header("Location", url)
self.end_headers()
return BytesIO(b'''<html><head></head><body>
Please <a href="%s">click here</a> to continue.
</body></html>
''' % url.encode())
def do_POST(self):
print("do_POST", sys.stderr)
try:
nbytes = int(self.headers.getheader('content-length'))
except:
nbytes = 0
query = self.rfile.read(nbytes).strip()
f = self.send_head(query)
if f:
self.copyfile(f, self.wfile)
f.close()
def parse_request(self):
if self.raw_requestline == '':
return False
else:
return SimpleHTTPRequestHandler.parse_request(self)
def address_string(self):
"""Override to avoid DNS lookups"""
return "%s:%d" % self.client_address
def finish(self):
SimpleHTTPRequestHandler.finish(self)
self.connection.close()
while actions_when_finished:
actions_when_finished.pop(0)()
actions_when_finished = []
def my_host():
from . import gamesrv
port = gamesrv.socketports[gamesrv.openhttpsocket()]
return '127.0.0.1:%d' % port
|