-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataToView.py
40 lines (34 loc) · 1.08 KB
/
DataToView.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
import json
import cgi
"""Converter from data to view"""
def convertObservation(o):
subObservations = o.getSubObservations()
obs = []
for k, v in subObservations:
obs.append({
'category' : v.getCategory(),
'name': v.getName(),
'description': v.getDescription()
})
return {o.getID() : obs}
def convertAction(action, string):
subActions = action.getSubActions()
print(string)
actions = []
for k, v in subActions:
actions.append({
'category' : v.getCategory(),
'name': v.getName(),
'description': v.getDescription()
})
return {action.getID() : {
'reward' : action.getReward(),
'subActions' : actions,
'string' : cgi.escape(string["PreContext"] + string["Context"] + string["PreExploit"] + string["ExploitCode"] + string["PostContext"])}
}
def response(ERR_CODE, theId = None, theObject = None):
retObj = {}
retObj['status'] = ERR_CODE
if theId:
retObj[theId] = theObject
return json.dumps(retObj)