-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest.py
389 lines (287 loc) · 11 KB
/
rest.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
import cherrypy
from cherrypy import log
from lib import get_parameters, handle_error
import json
# import os
import requests
import ssl
# import subprocess as sp
import urllib
from xml.etree import ElementTree
# load configuration into global dictionary
with open("conf/conf.json", "r") as cfile:
pbc = json.load(cfile)
# FIXME TEMPORARY
districts_map = {
"TU": ["ITC11-" + str(i).zfill(2) for i in range(1, 8)],
"MA": ["UKD33-" + str(i).zfill(2) for i in range(1, 27)]
}
storeymap = {}
# storeymap[]
###
bimprovider_url = pbc["bimpurl"]
# Ping microservice
class Ping(object):
exposed = True
def GET(self, **params):
if validate(cherrypy.request.headers):
try:
return handle_error(200, "Pong")
except:
return handle_error(500, "Internal Server Error")
else:
return handle_error(401, "Unauthorized")
# PingThru microservice
class PingThru(object):
exposed = True
def GET(self, **params):
if validate(cherrypy.request.headers):
try:
# basic ping response through the infrastructure
r = requests.get(urllib.parse.urljoin(bimprovider_url, "ping"))
# return response
return handle_error(200, r.json()["message"] + "thru")
except:
return handle_error(500, "Internal Server Error")
else:
return handle_error(401, "Unauthorized")
# GetJSON microservice
class GetJSON(object):
exposed = True
def GET(self, *paths, **params):
if validate(cherrypy.request.headers):
try:
# get buildings as JSON array
url = urllib.parse.urljoin(bimprovider_url, "getjson")
response = query(url, params)
ctype = "application/json;charset=utf-8"
cherrypy.response.headers["Content-Type"] = ctype
# return response
return response
except:
return handle_error(500, "Internal Server Error")
else:
return handle_error(401, "Unauthorized")
# GetIFC microservice
class GetIFC(object):
exposed = True
def GET(self, *paths, **params):
if validate(cherrypy.request.headers):
try:
# get zip of ifcs
url = urllib.parse.urljoin(bimprovider_url, "getifc")
response = get_resources(url, params)
# set response header for zip
cherrypy.response.headers["Content-Type"] = "application/zip"
cdisp = 'attachment; filename="resp.zip"'
cherrypy.response.headers["Content-Disposition"] = cdisp
return response
except:
return handle_error(500, "Internal Server Error")
else:
return handle_error(401, "Unauthorized")
# GetGBXML microservice
class GetGBXML(object):
exposed = True
def GET(self, *paths, **params):
if validate(cherrypy.request.headers):
try:
# get zip of gbxmls
url = urllib.parse.urljoin(bimprovider_url, "getgbxml")
response = get_resources(url, params)
# set response header for zip
cherrypy.response.headers["Content-Type"] = "application/zip"
cdisp = 'attachment; filename="resp.zip"'
cherrypy.response.headers["Content-Disposition"] = cdisp
return response
except:
return handle_error(500, "Internal Server Error")
else:
return handle_error(401, "Unauthorized")
# GetRVT microservice
class GetRVT(object):
exposed = True
def GET(self, *paths, **params):
if validate(cherrypy.request.headers):
try:
# get zip of rvts
url = urllib.parse.urljoin(bimprovider_url, "getrvt")
response = get_resources(url, params)
# set response header for zip
cherrypy.response.headers["Content-Type"] = "application/zip"
cdisp = 'attachment; filename="resp.zip"'
cherrypy.response.headers["Content-Disposition"] = cdisp
return response
except:
return handle_error(500, "Internal Server Error")
else:
return handle_error(401, "Unauthorized")
# Query microservice
class Query(object):
exposed = True
def GET(self, *paths, **params):
if validate(cherrypy.request.headers):
try:
# query
url = urllib.parse.urljoin(bimprovider_url, "query")
response = query(url, params)
ctype = "application/json;charset=utf-8"
cherrypy.response.headers["Content-Type"] = ctype
# return response
return response
except:
return handle_error(500, "Internal Server Error")
else:
return handle_error(401, "Unauthorized")
# to start the Web Service
def start():
# start the service registrator utility (deprecated, now we use sreg)
# p = sp.Popen([
# os.path.join(pbc["binpath"], "service-registrator"),
# "-conf", pbc["confpath"],
# "-endpoint", pbc["scatalog"],
# "-authProvider", pbc["aprovider"],
# "-authProviderURL", pbc["aurl"],
# "-authUser", pbc["auser"],
# "-authPass", pbc["apass"],
# "-serviceID", pbc["aserviceID"]])
ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
ctx.options |= ssl.OP_NO_SSLv2
ctx.options |= ssl.OP_NO_SSLv3
# ciphers = {
# 'DHE-RSA-AE256-SHA',
# ...
# 'RC4-SHA'
# }
# ctx.set_cipher_list(':'.join(ciphers))
# start Web Service with some configuration
if pbc["stage"] == "production":
global_conf = {
"global": {
"server.environment": "production",
"engine.autoreload.on": True,
"engine.autoreload.frequency": 5,
"server.socket_host": "0.0.0.0",
"server.socket_port": 443,
# "server.socket_port": 8082,
"server.ssl_module": "builtin",
"server.ssl_certificate": pbc["cert"],
"server.ssl_private_key": pbc["priv"],
"server.ssl_certificate_chain": pbc["chain"],
"server.ssl_context": ctx,
"log.screen": False,
"log.access_file": "dimc.log",
"log.error_file": "dimc.log"
}
}
cherrypy.config.update(global_conf)
conf = {
"/": {
"request.dispatch": cherrypy.dispatch.MethodDispatcher(),
"tools.encode.debug": True,
"request.show_tracebacks": False
}
# "/dimc/getjson": {
# # "tools.encode.on": True,
# }
}
cherrypy.tree.mount(Ping(), '/dimc/ping', conf)
cherrypy.tree.mount(PingThru(), '/dimc/pingthru', conf)
cherrypy.tree.mount(GetJSON(), '/dimc/getjson', conf)
cherrypy.tree.mount(GetIFC(), '/dimc/getifc', conf)
cherrypy.tree.mount(GetGBXML(), '/dimc/getgbxml', conf)
cherrypy.tree.mount(GetRVT(), '/dimc/getrvt', conf)
cherrypy.tree.mount(Query(), '/dimc/query', conf)
# activate signal handler
if hasattr(cherrypy.engine, "signal_handler"):
cherrypy.engine.signal_handler.subscribe()
# subscribe to the stop signal
# cherrypy.engine.subscribe("stop", p.terminate)
# start serving pages
cherrypy.engine.start()
cherrypy.engine.block()
def validate(headers):
validated = False
try:
token = headers["X-Auth-Token"]
url = (pbc["aurl"] + "/p3/serviceValidate?" +
"service=bimServiceProvider&ticket=" +
token)
r = requests.get(url, verify=pbc["acert"])
root = list(ElementTree.fromstring(r.content))
validated = root[0].tag.endswith("authenticationSuccess")
except Exception:
log.error(msg="Validation Error", context="HTTP", traceback=True)
validated = False
return validated
def query(bimprovider_url, params):
url = ask_bimprovider(bimprovider_url, params)
r = requests.get(url)
if r.status_code != 200:
raise cherrypy.HTTPError(str(r.status_code), "")
return r.content
def ask_bimprovider(bimprovider_url, params):
try:
districts = get_parameters(params, "district")
buildings = []
except:
# FIXME temp fallback
districts = []
buildings = get_parameters(params, "building")
try:
typologies = get_parameters(params, "typology")
except:
typologies = None
try:
heatings = get_parameters(params, "heating")
except:
heatings = None
unchanged = {key: value
for (key, value) in params.items()
if key not in ("building", "district", "typology", "heating")}
unchanged = urllib.parse.urlencode(unchanged, doseq=True)
url = bimprovider_url + "?" + unchanged
if len(unchanged) > 0:
url += "&"
url += get_buildings_url(get_buildings(bimprovider_url, districts,
buildings, typologies, heatings))
return url
def get_resources(bimprovider_url, params):
url = ask_bimprovider(bimprovider_url, params)
r = requests.get(url)
if r.status_code != 200:
raise cherrypy.HTTPError(str(r.status_code), "")
return r.content
def get_buildings_url(buildings):
buildings = ["building=" + b for b in buildings]
url = "&".join(buildings)
return url
def get_buildings(bimp_url, districts, buildings, typologies=None,
heatings=None):
if "*" in districts:
districts = districts_map.keys()
if len(districts) > 0:
buildings += districts_to_buildings(districts)
if typologies is not None or heatings is not None:
buildings = filter_buildings(bimp_url, buildings, typologies, heatings)
return set(buildings)
def districts_to_buildings(districts):
buildings = []
for c in districts:
buildings += districts_map[c]
return buildings
def filter_buildings(bimp_url, buildings, typologies=None, heatings=None):
url = urllib.parse.urljoin(bimp_url, "query")
parameters = [("gettypology", typologies),
("getheatingsupply", heatings)]
for qname, filters in parameters:
if filters is not None:
lurl = url + "?qname=" + qname
lurl += "".join(["&building=" + b for b in buildings])
r = requests.get(lurl)
if r.status_code != 200:
raise cherrypy.HTTPError(str(r.status_code), "")
result = r.json()
result = result["q_res"]
buildings = [b["b_id"] for b in result if b["b_res"][0] in filters]
return buildings