forked from MFALHI/netplugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjmodel.py
More file actions
462 lines (370 loc) · 13.2 KB
/
Copy pathobjmodel.py
File metadata and controls
462 lines (370 loc) · 13.2 KB
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
# contivModel REST client
import urllib
import urllib2
import json
import argparse
import os
# Exit on error
def errorExit(str):
print "############### Test failed: " + str + " ###############"
os._exit(1)
# HTTP Delete wrapper
def httpDelete(url):
opener = urllib2.build_opener(urllib2.HTTPHandler)
request = urllib2.Request(url)
request.get_method = lambda: 'DELETE'
try:
ret = opener.open(request)
return ret
except urllib2.HTTPError, err:
if err.code == 404:
print "Page not found!"
elif err.code == 403:
print "Access denied!"
else:
print "HTTP Error response! Error code", err.code
return "Error"
except urllib2.URLError, err:
print "URL error:", err.reason
return "Error"
# HTTP POST wrapper
def httpPost(url, data):
try:
retData = urllib2.urlopen(url, data)
return retData.read()
except urllib2.HTTPError, err:
if err.code == 404:
print "Page not found!"
elif err.code == 403:
print "Access denied!"
else:
print "HTTP Error! Error code", err.code
return "Error"
except urllib2.URLError, err:
print "URL error:", err.reason
return "Error"
# Wrapper for HTTP get
def httpGet(url):
try:
retData = urllib2.urlopen(url)
return retData.read()
except urllib2.HTTPError, err:
if err.code == 404:
print "Page not found!"
elif err.code == 403:
print "Access denied!"
else:
print "HTTP Error! Error code", err.code
return "Error"
except urllib2.URLError, err:
print "URL error:", err.reason
return "Error"
class tenant:
def __init__(self, tenantName):
tenantList = listTenant()
found = False
for tnt in tenantList:
if tnt['tenantName'] == tenantName:
found = True
#Create the tenant if not found
if found == False:
createTenant(tenantName)
# Save Parameters
self.tenantName = tenantName
self.policies = {}
self.networks = {}
# get a network
def network(self, networkName, pktTag, subnet, gateway, encap="vxlan"):
net = network(self.tenantName, networkName, pktTag, subnet, gateway, encap)
# Store the network
self.networks[networkName] = net
return net
# Create a network
def newNetwork(self, networkName, pktTag, subnet, gateway, encap="vxlan"):
net = network(self.tenantName, networkName, pktTag, subnet, gateway, encap)
# Store the network
self.networks[networkName] = net
return net
# Delete network
def deleteNetwork(self, networkName):
if networkName not in self.networks:
return
# delete the network
self.networks[networkName].delete()
del self.networks[networkName]
# Create a policy
def newPolicy(self, policyName):
pl = policy(self.tenantName, policyName)
# store the policy
self.policies[policyName] = pl
return pl
# Delete policy
def deletePolicy(self, policyName):
if policyName not in self.policies:
return
# delete the policy
self.policies[policyName].delete()
del self.policies[policyName]
def delete(self):
deleteTenant(self.tenantName)
class policy:
def __init__(self, tenantName, policyName):
# create policy
createPolicy(tenantName, policyName)
# save Parameters
self.tenantName = tenantName
self.policyName = policyName
self.rules = {}
def delete(self):
deletePolicy(self.tenantName, self.policyName)
# create new rule
def addRule(self, ruleId, priority=1, direction='both',
endpointGroup="", network="", ipAddress="", protocol="", port=0, action="accept"):
rl = rule(self.tenantName, self.policyName, ruleId, priority, direction,
endpointGroup, network, ipAddress, protocol, port, action)
# store it
self.rules[ruleId] = rl
return rl
def deleteRule(self, ruleId):
if ruleId not in self.rules:
return
# Delete the rule
self.rules[ruleId].delete()
del self.rules[ruleId]
class rule:
def __init__(self, tenantName, policyName, ruleId, priority, direction,
endpointGroup, network, ipAddress, protocol, port, action):
# add the rule
addRule(tenantName, policyName, ruleId, priority, direction,
endpointGroup, network, ipAddress, protocol, port, action)
# save Parameters
self.tenantName = tenantName
self.policyName = policyName
self.ruleId = ruleId
self.priority = priority
self.direction = direction
self.endpointGroup = endpointGroup
self.network = network
self.ipAddress = ipAddress
self.protocol = protocol
self.port = port
self.action = action
def delete(self):
# delete the Rule
deleteRule(self.tenantName, self.policyName, self.ruleId)
class group:
def __init__(self, tenantName, networkName, groupName, policies):
# create the Epg
createEpg(tenantName, networkName, groupName, policies)
# save parameters
self.tenantName = tenantName
self.groupName = groupName
self.networkName = networkName
self.policies = policies
#add policy to the Group
def addPolicy(self, policyName):
# add the policy to the list
self.policies.append(policyName)
# update the model
createEpg(self.tenantName, self.networkName, self.groupName, self.policies)
def removePolicy(self, policyName):
# check if it exists
if policyName not in self.policies:
return
# remove it from the List
self.policies.remove(policyName)
# update the model
createEpg(self.tenantName, self.networkName, self.groupName, self.policies)
# delete the epg
def delete(self):
# delete the Epg
deleteEpg(self.tenantName, self.networkName, self.groupName)
class network:
def __init__(self, tenantName, networkName, pktTag, subnet, gateway, encap):
netList = listNet()
found = False
for net in netList:
if net['tenantName'] == tenantName and net['networkName'] == networkName:
found = True
#Create the network if not found
if found == False:
createNet(tenantName, networkName, pktTag, encap, subnet, gateway)
# Save Parameters
self.tenantName = tenantName
self.networkName = networkName
self.pktTag = pktTag
self.encap = encap
self.subnet = subnet
self.gateway = gateway
self.groups = {}
def newGroup(self, groupName, policies=[]):
epg = group(self.tenantName, self.networkName, groupName, policies)
# store the epg
self.groups[groupName] = epg
return epg
def deleteGroup(self, groupName):
if groupName not in self.groups:
return
# delete the epg
self.groups[groupName].delete()
del self.groups[groupName]
def delete(self):
deleteNet(self.tenantName, self.networkName)
# Create policy
def createPolicy(tenantName, policyName):
print "Creating policy {0}:{1}".format(tenantName, policyName)
postUrl = 'http://localhost:9999/api/policys/' + tenantName + ':' + policyName + '/'
jdata = json.dumps({
"tenantName": tenantName,
"policyName": policyName
})
# Post the data
response = httpPost(postUrl, jdata)
print "Create policy response is: " + response
if response == "Error":
errorExit("Policy create failure")
# Delete policy
def deletePolicy(tenantName, policyName):
print "Deleting policy {0}:{1}".format(tenantName, policyName)
# Delete Policy
deleteUrl = 'http://localhost:9999/api/policys/' + tenantName + ':' + policyName + '/'
response = httpDelete(deleteUrl)
if response == "Error":
errorExit("Policy create failure")
# List all policies
def listPolicy():
# Get a list of policies
retDate = urllib2.urlopen('http://localhost:9999/api/policys/')
if retData == "Error":
errorExit("list policy failed")
return json.loads(retData)
# Add rule to a policy
def addRule(tenantName, policyName, ruleId, priority=1, direction='both',
endpointGroup="", network="", ipAddress="", protocol="", port=0, action="accept"):
print "Adding rule {2} to pilicy {0}:{1}".format(tenantName, policyName, ruleId)
jdata = json.dumps({
"tenantName": tenantName,
"policyName": policyName,
"ruleId": ruleId,
"priority": priority,
"direction": direction,
"endpointGroup": endpointGroup,
"network": network,
"ipAddress": ipAddress,
"protocol": protocol,
"port": port,
"action": action
})
#Post the data
postUrl = 'http://localhost:9999/api/rules/' + tenantName + ':' + policyName + ':' + ruleId + '/'
print "Adding rule " + jdata
response = httpPost(postUrl, jdata)
print "Rule add response is: " + response
if response == "Error":
errorExit("Rule add failure")
# Delete rule
def deleteRule(tenantName, policyName, ruleId):
print "Deleting rule {0}:{1}:{2}".format(tenantName, policyName, ruleId)
# Delete Rule
deleteUrl = 'http://localhost:9999/api/rules/' + tenantName + ':' + policyName + ':' + ruleId + '/'
response = httpDelete(deleteUrl)
# Check for error
if response == "Error":
errorExit("rule delete failure")
# List all rules
def listRule():
# Get the list of all rules
return json.loads(urllib2.urlopen('http://localhost:9999/api/rules/').read())
# Create endpoint group
def createEpg(tenantName, networkName, groupName, policies=[]):
print "Creating endpoint group {0}:{1}:{2}".format(tenantName, networkName, groupName)
jdata = json.dumps({
"tenantName": tenantName,
"groupName": groupName,
"networkName": networkName,
"policies": policies,
})
# Create epg
postUrl = 'http://localhost:9999/api/endpointGroups/' + tenantName + ':' + networkName + ':' + groupName + '/'
response = httpPost(postUrl, jdata)
print "Epg Create response is: " + response
# Check for error
if response == "Error":
errorExit("Epg create failure")
# Delete endpoint group
def deleteEpg(tenantName, networkName, groupName):
print "Deleting endpoint group {0}:{1}:{2}".format(tenantName, networkName, groupName)
# Delete EPG
deleteUrl = 'http://localhost:9999/api/endpointGroups/' + tenantName + ':' + networkName + ':' + groupName + '/'
response = httpDelete(deleteUrl)
# Check for error
if response == "Error":
errorExit("Epg delete failure")
# List all endpoint groups
def listEpg():
# Get the list of endpoint groups
return json.loads(urllib2.urlopen('http://localhost:9999/api/endpointGroups/').read())
# Create Network
def createNet(tenantName, networkName, pktTag, encap="vxlan", subnet="", gateway=""):
print "Creating network {0}:{1}".format(tenantName, networkName)
# Create network
postUrl = 'http://localhost:9999/api/networks/' + tenantName + ':' + networkName + '/'
jdata = json.dumps({
"tenantName": tenantName,
"networkName": networkName,
"pktTag": pktTag,
"isPublic": False,
"isPrivate": True,
"encap": encap,
"subnet": subnet,
"gateway": gateway,
})
response = httpPost(postUrl, jdata)
print "Network Create response is: " + response
# Check for error
if response == "Error":
errorExit("Network create failure")
# Delete Network
def deleteNet(tenantName, networkName):
print "Deleting network {0}:{1}".format(tenantName, networkName)
# Delete network
deleteUrl = 'http://localhost:9999/api/networks/' + tenantName + ':' + networkName + '/'
response = httpDelete(deleteUrl)
# Check for error
if response == "Error":
errorExit("Network delete failure")
# List all Networks
def listNet():
# Get the list of Networks
return json.loads(urllib2.urlopen('http://localhost:9999/api/networks/').read())
# Create Tenant
def createTenant(tenantName):
print "Creating tenant {0}".format(tenantName)
# Create tenant
postUrl = 'http://localhost:9999/api/tenants/' + tenantName + '/'
jdata = json.dumps({
"key": tenantName,
"tenantName": tenantName,
"subnetPool": "10.1.1.1/8",
"subnetLen": 24,
"vlans": "100-100",
"vxlans": "1000-1100",
})
response = httpPost(postUrl, jdata)
print "Tenant Create response is: " + response
# Check for error
if response == "Error":
errorExit("Tenant create failure")
# Delete Tenant
def deleteTenant(tenantName):
print "Deleting tenant {0}".format(tenantName)
# Delete tenant
deleteUrl = 'http://localhost:9999/api/tenants/' + tenantName + '/'
response = httpDelete(deleteUrl)
# Check for error
if response == "Error":
errorExit("Tenant delete failure")
# List all Tenants
def listTenant():
# Get the list of Tenants
return json.loads(urllib2.urlopen('http://localhost:9999/api/tenants/').read())