-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
268 lines (214 loc) · 7.86 KB
/
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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import json
import os
from pprint import pprint
from pathlib import Path
from bottle import Bottle, run, PasteServer, response, request, static_file
from service import default_out, aoConfig
from bakerman import BakingMan, BakingJob
from util import colorprint, prepareOutFilename, default_out_dir
from remote import cachedir
app = Bottle()
bakingMan = BakingMan()
bakingMan.start()
def extractPostParams(requestParam):
jobSource = request.POST
try:
# check if json entry is available
jsonSource = request.json
if jsonSource is not None:
jobSource = jsonSource
except Exception as e:
print("bakeDirect: json couldn't be parsed")
print(e)
# print(jobSource)
return jobSource
def staticFileWithCors(filename, root, **params):
httpResponse = static_file(filename, root, **params)
httpResponse.headers['Access-Control-Allow-Origin'] = '*'
httpResponse.headers[
'Access-Control-Allow-Methods'] = 'PUT, GET, POST, DELETE, OPTIONS'
httpResponse.headers[
'Access-Control-Allow-Headers'] = 'Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token'
return httpResponse
def PARAMETER():
response.headers['Access-Control-Allow-Origin'] = '*'
response.headers[
'Access-Control-Allow-Methods'] = 'PUT, GET, POST, DELETE, OPTIONS'
response.headers[
'Access-Control-Allow-Headers'] = 'Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token'
def routeWithOptions(**kwargs):
def decorator(callback):
kwargs['callback'] = callback
app.route(**kwargs)
kwargs['method'] = 'OPTIONS'
kwargs['callback'] = PARAMETER
response.headers['Access-Control-Allow-Origin'] = '*'
response.headers[
'Access-Control-Allow-Methods'] = 'PUT, GET, POST, DELETE, OPTIONS'
response.headers[
'Access-Control-Allow-Headers'] = 'Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token'
app.route(**kwargs)
return callback
return decorator
@app.hook('after_request')
def enable_cors():
"""
You need to add some headers to each request.
Don't use the wildcard '*' for Access-Control-Allow-Origin in production.
"""
response.headers['Access-Control-Allow-Origin'] = '*'
response.headers[
'Access-Control-Allow-Methods'] = 'PUT, GET, POST, DELETE, OPTIONS'
response.headers[
'Access-Control-Allow-Headers'] = 'Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token'
@routeWithOptions(path='/bakeFile/<fileParam:path>', method="GET")
def bakeFile(fileParam: str):
global bakingMan
jobParams = {"file": fileParam, "resolution": aoConfig["resolution"]}
# print(jobParams)
jobId = bakingMan.addJob(jobParams)
response.content_type = "application/json"
return {"jobId": jobId}
@routeWithOptions(path='/getFile/<filename:path>', method="GET")
def getFile(filename):
colorprint("getFile " + filename, 33)
return staticFileWithCors(filename, './out/', download=filename)
@routeWithOptions(path='/removeResults/', method="GET")
def removeResults():
print("remove result files")
folder = default_out_dir
for the_file in os.listdir(folder):
file_path = os.path.join(folder, the_file)
try:
if os.path.isfile(file_path) and str(the_file).startswith("AO_"):
print(" remove", the_file)
os.unlink(file_path)
except Exception as e:
print(e)
print("remove cache files")
folder = cachedir
for the_file in os.listdir(folder):
file_path = os.path.join(folder, the_file)
try:
if os.path.isfile(file_path):
print(" remove", the_file)
os.unlink(file_path)
except Exception as e:
print(e)
@routeWithOptions(path="/bakeUrl/", method="POST")
def bakeUrl():
global bakingMan
# print(request)
# print(request.POST)
# print(request.POST.__dict__)
# print(request.headers.__dict__)
# print(request.method)
jobSource = extractPostParams(request)
urlParam = jobSource["url"]
# print(urlParam)
resolutionParam = jobSource["resolution"]
resolutionValue = aoConfig["resolution"]
if resolutionParam is not None:
resolutionValue = int(resolutionParam)
args = {"url": urlParam, "resolution": resolutionValue}
# print(args)
jobId = bakingMan.addJob(args)
response.content_type = "application/json"
return {"jobId": jobId}
@routeWithOptions(path="/bakeDirect/", method="POST")
def bakeDirect():
global bakingMan
# print(request)
# print(request.POST)
# print(request.POST.__dict__)
# print(request.headers.__dict__)
# print(request.method)
jobSource = extractPostParams(request)
igxcString = jobSource["igxcContent"]
# print(igxcString)
if not igxcString or igxcString == "null":
colorprint("No igxcContent found in POST request in bakeDirect/", 31)
return {"error": "No igxcContent found in POST request in bakeDirect/"}
try:
if isinstance(igxcString, str):
igxcContent = json.loads(igxcString)
else:
igxcContent = igxcString
except Exception as e:
colorprint("Exception in bakeDirect/", 31)
print(e)
return {"error": "igxcContent couldn't be parsed"}
# print(igxcContent)
basePath = jobSource["basePath"]
# print(basepath)
resolutionValue = aoConfig["resolution"]
resolutionParam = jobSource["resolution"]
if resolutionParam is not None:
resolutionValue = int(resolutionParam)
args = {
"basePath": basePath,
"igxcContent": igxcContent,
"resolution": resolutionValue
}
# print(args)
jobId = bakingMan.addJob(args)
response.content_type = "application/json"
return {"jobId": jobId}
@routeWithOptions(path='/pullState/<jobId>', method="GET")
def pullState(jobId: str):
global bakingMan
colorprint("pullState id {}".format(jobId), 33)
result = {"state": "undefined"}
if bakingMan.hasJob(jobId):
result = bakingMan.getJob(jobId)
# print(result)
jsonResult = json.dumps(result,
sort_keys=True,
indent=4,
separators=(',', ': '))
response.content_type = "application/json"
return jsonResult
@routeWithOptions(path='/pullAll/', method="GET")
def pullAll():
global bakingMan
colorprint("pullAll", 33)
result = bakingMan.getAllJobs()
# print(result)
jsonResult = json.dumps(result,
sort_keys=True,
indent=4,
separators=(',', ': '))
response.content_type = "application/json"
return jsonResult
@routeWithOptions(path='/getImage/<jobId>', method="GET")
def getImage(jobId: str):
global bakingMan
absPath = os.path.join(os.path.abspath("."), default_out_dir)
print(absPath)
if bakingMan.isJobFinished(jobId):
job = bakingMan.getJob(jobId)
fileName = job["jobArgs"]["out"] + ".png"
return staticFileWithCors(fileName, absPath)
serverConfig = {"port": 8080, "host": "0.0.0.0"}
try:
with open("config.json", "r") as f:
configContent = json.load(f)
if "port" in configContent:
serverConfig["port"] = configContent["port"]
if "host" in configContent:
serverConfig["host"] = configContent["host"]
if "resolution" in configContent:
aoConfig["resolution"] = configContent["resolution"]
print(serverConfig)
print(aoConfig)
except FileNotFoundError:
print("Config file not found, using standard port", serverConfig["port"])
try:
app.run(host=serverConfig["host"],
port=serverConfig["port"],
debug=True,
server=PasteServer)
except KeyboardInterrupt:
pass
finally:
bakingMan.stop()