-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph_model_to_neo4j.py
272 lines (215 loc) · 8.93 KB
/
graph_model_to_neo4j.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
import os
import typer
import requests
endpoint = "https://khaos.uma.es/NoSQL/api/"
verbose = True
## final version with arguments
def GraphModelToNeo4J(
database: str = typer.Option(..., help="Database name"),
outputfile: str = typer.Option(..., help="Output file")
):
# base URL for further queries with endpoint and database parameter
baseURL = endpoint + database + "/"
# creates the output folder and file
if(not os.path.exists("data")):
os.makedirs("data")
os.chdir("data")
f = open(outputfile, "w")
dbname = generateDatabase(baseURL)
generateRoles(baseURL, dbname, f)
generateUsers(baseURL, dbname, f)
generateSecurityRuleElement(baseURL, dbname, f)
generateSecurityRuleField(baseURL, dbname, f)
f.close()
# -----------------------------------------
# Database
# -----------------------------------------
def generateDatabase(baseURL):
URL = baseURL + "database"
response = requests.get(URL)
data = response.json()
dbname = data[0]["DatabaseName"]["value"]
if(verbose): print("\n\nDatabase: " + dbname + "\n")
return dbname
# -----------------------------------------
# Roles
# -----------------------------------------
def generateRoles(baseURL, dbname, f):
URL = baseURL + "roles" + "?database_name="+dbname
response = requests.get(URL)
data = response.json()
for element in data:
value = element["RoleName"]["value"]
if(verbose): print("Role: " + value)
f.write("CREATE ROLE "+ value +";\n")
# -----------------------------------------
# Users
# -----------------------------------------
def generateUsers(baseURL, dbname,f):
URL = baseURL + "users" + "?database_name="+dbname
response = requests.get(URL)
data = response.json()
for element in data:
value = element["UserName"]["value"]
if(verbose): print("\nUser: " + value)
f.write("CREATE USER " + value + ";\n")
# grant role to users
URL = baseURL + "rolesAssignedToUser" + "?user_name="+value
response = requests.get(URL)
data2 = response.json()
for element2 in data2:
value2 = element2["RoleName"]["value"]
if(verbose): print("Role assigned: " + value2)
f.write("GRANT ROLE " + value2 + " TO "+value+";\n")
# -----------------------------------------
# Security Rules for Elements
# -----------------------------------------
def generateSecurityRuleElement(baseURL, dbname, f):
URL = baseURL + "securityRuleElement" + "?database_name="+dbname
response = requests.get(URL)
data = response.json()
for rule in data:
rulename = rule["ruleName"]["value"]
if(verbose): print("\nSecurity Rule Element: " + rulename)
# get rule details
URL = baseURL + "securityRuleElementDetails" + "?rule_name="+rulename
response = requests.get(URL)
datadetails = response.json()
# for atributes with cardinality 1..1
sign = datadetails[0]["sign"]["value"]
# for atributes with cardinality 1..n
rolenameslist = obtainList(datadetails, "RoleName")
privilegeslist = obtainList(datadetails, "privilege")
if(verbose):
print(" Sign: " + sign)
print(" Roles: " + formatList(rolenameslist))
print(" Privileges: " + formatList(privilegeslist))
print("Security policies generated:")
# create two security policies for each privilege
# one for nodes and one for relationships
for p in privilegeslist:
securityPolicy = ""
# sign
if(sign=="+"): securityPolicy += "GRANT "
else: securityPolicy += "DENY "
# privilege
if(p=="Read"): securityPolicy += "MATCH"
elif(p=="Create"): securityPolicy += "CREATE"
elif(p=="Delete"): securityPolicy += "DELETE"
elif(p=="Update"): securityPolicy += "SET PROPERTY {*}"
# graph
securityPolicy += " ON GRAPH " + dbname
# nodes
generatePolicy(baseURL, rulename, rolenameslist, securityPolicy, True, False, f)
# relationships
generatePolicy(baseURL, rulename, rolenameslist, securityPolicy, False, False, f)
# -----------------------------------------
# Security Rules for Fields
# -----------------------------------------
def generateSecurityRuleField(baseURL, dbname, f):
URL = baseURL + "securityRuleField" + "?database_name="+dbname
response = requests.get(URL)
data = response.json()
for rule in data:
rulename = rule["ruleName"]["value"]
if(verbose): print("\nSecurity Rule Field: " + rulename)
# get rule details
URL = baseURL + "securityRuleFieldDetails" + "?rule_name="+rulename
response = requests.get(URL)
datadetails = response.json()
# for atributes with cardinality 1..1
sign = datadetails[0]["sign"]["value"]
# for optional attributes with cardinality 0..1
condition = ""
if "condition" in datadetails[0]:
condition = datadetails[0]["condition"]["value"]
# for atributes with cardinality 1..n
rolenameslist = obtainList(datadetails, "RoleName")
privilegeslist = obtainList(datadetails, "privilege")
fieldlist = obtainList(datadetails, "fieldName")
if(verbose):
print(" Sign: " + sign)
print(" Roles: " + formatList(rolenameslist))
print(" Privileges: " + formatList(privilegeslist))
print(" Fields: " + formatList(fieldlist))
print(" Condition: " + condition)
print("Security policies generated:")
# create two security policies for each privilege
# one for nodes and one for relationships
for p in privilegeslist:
securityPolicy = ""
# sign
if(sign=="+"): securityPolicy += "GRANT "
else: securityPolicy += "DENY "
# privilege
if(p=="Read"): securityPolicy += "MATCH"
elif(p=="Create"): securityPolicy += "CREATE"
elif(p=="Delete"): securityPolicy += "DELETE"
elif(p=="Update"): securityPolicy += "SET PROPERTY {*}"
# fields
securityPolicy += " " + formatList(fieldlist)
# graph
securityPolicy += " ON GRAPH " + dbname
# nodes
generatePolicy(baseURL, rulename, rolenameslist, securityPolicy, True, True, f)
# relationships
generatePolicy(baseURL, rulename, rolenameslist, securityPolicy, False, True, f)
# Generates security policy and writes it in the output file
# get the starting part of the policy (previously generated)
# attaches the elements involved
# - nodes or relationships (parameter nodes = true or false)
# - fields (consider fields if finegrain = true)
# attaches the list of roles
def generatePolicy(baseURL, rulename, rolenameslist, securityPolicy, nodes, finegrain, f):
if (nodes):
if (finegrain):
URL = baseURL + "securityRuleFieldAssociatedNodes" + "?rule_name="+rulename
else:
URL = baseURL + "securityRuleElementAssociatedNodes" + "?rule_name="+rulename
else:
if (finegrain):
URL = baseURL + "securityRuleFieldAssociatedRelationships" + "?rule_name="+rulename
else:
URL = baseURL + "securityRuleElementAssociatedRelationships" + "?rule_name="+rulename
response = requests.get(URL)
dataelements = response.json()
securityPolicyTmp = ""
elementlist = obtainList(dataelements, "elementName")
if(len(elementlist)==1):
if (nodes):
securityPolicyTmp += " NODE "
else:
securityPolicyTmp += " RELATIONSHIP "
securityPolicyTmp += elementlist[0]
elif(len(elementlist)>1):
if (nodes):
securityPolicyTmp += " NODES "
else:
securityPolicyTmp += " RELATIONSHIPS "
securityPolicyTmp += formatList(elementlist)
if(len(elementlist)>0):
securityPolicyTmp += " TO " + formatList(rolenameslist) + ";"
f.write(securityPolicy + securityPolicyTmp + "\n")
if(verbose): print(securityPolicy + securityPolicyTmp)
# processes a json text to obtain a list with values for a tag "str"
def obtainList(datadetails, str):
list = []
# extract values
for d in datadetails:
list.append(d[str]["value"])
# remove duplicates
list = sorted(set(list))
return list
# formats a list as a string with items separed with ,
def formatList(list):
listformatted = ""
first = True
for n in list:
if(first):
listformatted += n
first = False
else:
listformatted += ", " + n
return listformatted
if __name__ == "__main__":
typer.run(GraphModelToNeo4J)