-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrr_server.py
48 lines (40 loc) · 1.52 KB
/
rr_server.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
import tornado.ioloop
import tornado.web
from pathlib import Path
import rr_main
class MainHandler(tornado.web.RequestHandler):
def post(self):
# print(self.request.files.items())
file_path = None
result = "N/A"
for filename, file in self.request.files.items():
print(filename)
home = str(Path.home())
file_path = home + "/rr_uploads/" + filename
output_file = open(file_path, 'wb')
output_file.write(file[0]['body'])
if 'Points' in self.request.headers.keys():
# print(self.request.headers['Points'].replace("[", "").replace("]", "").split(","))
pts_array_str = self.request.headers['Points'].replace("[", "").replace("]", "").split(",")
pts_array = [int(float(numeric_string)) for numeric_string in pts_array_str]
initBB = list()
initBB.append(pts_array[0])
initBB.append(pts_array[1])
initBB.append(pts_array[4] - pts_array[0])
initBB.append(pts_array[5] - pts_array[1])
print(initBB)
result = rr_main.main(file_path, initBB)
self.write(result)
return
class TestHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello World, RR Server Works Fine!")
def make_app():
return tornado.web.Application([
(r"/", MainHandler),
(r"/test", TestHandler)
])
if __name__ == "__main__":
app = make_app()
app.listen(8888)
tornado.ioloop.IOLoop.current().start()