-
Notifications
You must be signed in to change notification settings - Fork 34
/
create_sandbox.py
589 lines (482 loc) · 25.2 KB
/
create_sandbox.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
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
""" This script creates and deletes a PI Web API Asset database, AF category,
AF Template and AF Element, creating a sandbox used by the other methods
When creating the sandbox, the following order must be followed:
create_database, create_category, create_template, create_element
This python script requires some pre-requisites:
1. A back-end server with PI WEB API with CORS enabled.
"""
import json
import getpass
import requests
from urllib.parse import urlparse
from requests.auth import HTTPBasicAuth
from requests_kerberos import HTTPKerberosAuth
OSI_AF_ATTRIBUTE_TAG = 'OSIPythonAttributeSampleTag'
OSI_AF_CATEGORY = 'OSIPythonCategory'
OSI_AF_DATABASE = 'OSIPythonDatabase'
OSI_AF_ELEMENT = 'OSIPythonElement'
OSI_AF_TEMPLATE = 'OSIPythonTemplate'
OSI_TAG = 'OSIPythonSampleTag'
OSI_TAG_SINUSOID = 'OSIPythonAttributeSinusoid'
OSI_TAG_SINUSOIDU = 'OSIPythonAttributeSinusoidU'
def call_headers(include_content_type):
""" Create API call headers
@includeContentType boolean: Flag determines whether or not the
content-type header is included
"""
if include_content_type is True:
header = {
'content-type': 'application/json',
'X-Requested-With': 'XmlHttpRequest'
}
else:
header = {
'X-Requested-With': 'XmlHttpRequest'
}
return header
def call_security_method(security_method, user_name, user_password):
""" Create API call security method
@param security_method string: Security method to use: basic or kerberos
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
"""
if security_method.lower() == 'basic':
security_auth = HTTPBasicAuth(user_name, user_password)
else:
security_auth = HTTPKerberosAuth(mutual_authentication='REQUIRED',
sanitize_mutual_error_response=False)
return security_auth
def create_sandbox(piwebapi_url, asset_server, pi_server, user_name, user_password,
piwebapi_security_method, verify_ssl):
""" Create the sandbox. Calls methods to create the structure needed by the other calls.
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param pi_server string: Name of the PI Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
create_database(piwebapi_url, asset_server, user_name,
user_password, piwebapi_security_method, verify_ssl)
create_category(piwebapi_url, asset_server, user_name,
user_password, piwebapi_security_method, verify_ssl)
create_template(piwebapi_url, asset_server, pi_server,
user_name, user_password, piwebapi_security_method, verify_ssl)
create_element(piwebapi_url, asset_server, user_name,
user_password, piwebapi_security_method, verify_ssl)
delete_element(piwebapi_url, asset_server, user_name,
user_password, piwebapi_security_method, verify_ssl)
delete_template(piwebapi_url, asset_server, user_name,
user_password, piwebapi_security_method, verify_ssl)
delete_category(piwebapi_url, asset_server, user_name,
user_password, piwebapi_security_method, verify_ssl)
delete_database(piwebapi_url, asset_server, user_name,
user_password, piwebapi_security_method, verify_ssl)
def create_database(piwebapi_url, asset_server, user_name, user_password, piwebapi_security_method, verify_ssl):
""" Create Python Web API Sample database
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Create Database')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get AF Server
response = requests.get(piwebapi_url + '/assetservers?path=\\\\' + asset_server,
auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# Create the body for the request
request_body = {
'Name': OSI_AF_DATABASE,
'Description': 'Database for Python Web API',
'ExtendedProperties': {}
}
# Create a header
header = call_headers(True)
# Create the database
response = requests.post(data['Links']['Self'] + '/assetdatabases',
auth=security_method, verify=verify_ssl,
json=request_body, headers=header)
if response.status_code == 201:
print('Database {} created'.format(OSI_AF_DATABASE))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
def create_category(piwebapi_url, asset_server, user_name, user_password, piwebapi_security_method, verify_ssl):
""" Create an AF Category
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Create Category')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get the database
request_url = '{}/assetdatabases?path=\\\\{}\\{}'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE)
response = requests.get(request_url, auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# Create the body for the request
request_body = {
'Name': OSI_AF_CATEGORY,
'Description': '{} category'.format(OSI_AF_CATEGORY)
}
# Create a header
header = call_headers(True)
# Create the element category
response = requests.post(data['Links']['Self'] + '/elementcategories',
auth=security_method, verify=verify_ssl, json=request_body, headers=header)
if response.status_code == 201:
print('Category {} created'.format(OSI_AF_CATEGORY))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
def create_template(piwebapi_url, asset_server, pi_server, user_name, user_password,
piwebapi_security_method, verify_ssl):
""" Create an AF template
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param pi_server string: Name of the PI Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Create Template')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get the database
request_url = '{}/assetdatabases?path=\\\\{}\\{}'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE)
response = requests.get(request_url, auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# Create the body for the request
request_body = {
'Name': OSI_AF_TEMPLATE,
'Description': '{} Template'.format(OSI_AF_TEMPLATE),
'CategoryNames': [OSI_AF_CATEGORY],
'AllowElementToExtend': True
}
# Create a header
header = call_headers(True)
# Create the element template
response = requests.post(data['Links']['Self'] + '/elementtemplates', auth=security_method,
verify=verify_ssl, json=request_body, headers=header)
# If the template was created, add attributes
if response.status_code == 201:
print('Template {} created'.format(OSI_AF_TEMPLATE))
# Get the newly created machine template
request_url = '{}/elementtemplates?path=\\\\{}\\{}\\ElementTemplates[{}]'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE, OSI_AF_TEMPLATE)
response = requests.get(
request_url, auth=security_method, verify=verify_ssl)
data = json.loads(response.text)
# Add templte attributes
response = requests.post(data['Links']['Self'] + '/attributetemplates',
auth=security_method, verify=verify_ssl,
json={'Name': 'Active', 'Description': '',
'IsConfigurationItem': True, 'Type': 'Boolean'},
headers=header)
response = requests.post(data['Links']['Self'] + '/attributetemplates',
auth=security_method, verify=verify_ssl,
json={'Name': 'OS', 'Description': 'Operating System',
'IsConfigurationItem': True, 'Type': 'String'},
headers=header)
response = requests.post(data['Links']['Self'] + '/attributetemplates',
auth=security_method, verify=verify_ssl,
json={'Name': 'OSVersion',
'Description': 'Operating System Version',
'IsConfigurationItem': True, 'Type': 'String'},
headers=header)
response = requests.post(data['Links']['Self'] + '/attributetemplates',
auth=security_method, verify=verify_ssl,
json={'Name': 'IPAddresses',
'Description': 'A list of IP Addresses for all NIC',
'IsConfigurationItem': True, 'Type': 'String'},
headers=header)
# Add Sinusoid U
response = requests.post(data['Links']['Self'] + '/attributetemplates',
auth=security_method, verify=verify_ssl,
json={'Name': OSI_TAG_SINUSOID,
'Description': '', 'IsConfigurationItem': False,
'Type': 'Double', 'DataReferencePlugIn': 'PI Point',
'ConfigString': '\\\\' + pi_server + '\\SinusoidU'},
headers=header)
# Add Sinusoid
response = requests.post(data['Links']['Self'] + '/attributetemplates',
auth=security_method, verify=verify_ssl,
json={'Name': OSI_TAG_SINUSOIDU, 'Description': '',
'IsConfigurationItem': False, 'Type': 'Double',
'DataReferencePlugIn': 'PI Point',
'ConfigString': '\\\\' + pi_server + '\\Sinusoid'},
headers=header)
# Add the sampleTag attribute
response = requests.post(data['Links']['Self'] + '/attributetemplates',
auth=security_method, verify=verify_ssl,
json={'Name': OSI_AF_ATTRIBUTE_TAG, 'Description': '',
'IsConfigurationItem': False, 'Type': 'Double',
'DataReferencePlugIn': 'PI Point',
'ConfigString': '\\\\' + pi_server +
'\\%Element%_{};ReadOnly=False;'.format(OSI_TAG) +
'ptclassname=classic;pointtype=Float64;' +
'pointsource=webapi'},
headers=header)
if response.status_code == 201:
print('Template {} created'.format(OSI_AF_TEMPLATE))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
def create_element(piwebapi_url, asset_server, user_name, user_password, piwebapi_security_method, verify_ssl):
""" Create an AF element
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Create Element')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get the sample database
request_url = '{}/assetdatabases?path=\\\\{}\\{}'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE)
response = requests.get(request_url, auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# create a body for the request
request_body = {
'Name': OSI_AF_ELEMENT,
'Description': '{} element'.format(OSI_AF_ELEMENT),
'TemplateName': OSI_AF_TEMPLATE,
'ExtendedProperties': {}
}
# Create a header that passes in json
header = call_headers(True)
# Create the element
response = requests.post(data['Links']['Self'] + '//elements', auth=security_method,
verify=verify_ssl, json=request_body, headers=header)
if response.status_code == 201:
print('Equipment {} created'.format(OSI_AF_ELEMENT))
# Get the newly created element
request_url = '{}/elements?path=\\\\{}\\{}\\{}'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE, OSI_AF_ELEMENT)
url = urlparse(request_url)
# Validate URL
assert url.scheme == 'https'
assert url.geturl().startswith(piwebapi_url)
response = requests.get(
url.geturl(), auth=security_method, verify=verify_ssl)
data = json.loads(response.text)
# Create the tags based on the template configuration
url = urlparse(piwebapi_url + '/elements/' +
data['WebId'] + '/config')
# Validate URL
assert url.scheme == 'https'
assert url.geturl().startswith(piwebapi_url)
response = requests.post(url.geturl(),
auth=security_method, verify=verify_ssl,
json={'includeChildElements': True}, headers=header)
print(json.dumps(json.loads(response.text), indent=4, sort_keys=True))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
def delete_element(piwebapi_url, asset_server, user_name, user_password, piwebapi_security_method, verify_ssl):
""" Delete an AF element
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Delete Element')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get the element
request_url = '{}/elements?path=\\\\{}\\{}\\{}'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE, OSI_AF_ELEMENT)
response = requests.get(request_url, auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# Create a header
header = call_headers(False)
# Delete the element
response = requests.delete(data['Links']['Self'], auth=security_method,
verify=verify_ssl, headers=header)
if response.status_code == 204:
print('Element {} Deleted'.format(OSI_AF_ELEMENT))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
def delete_template(piwebapi_url, asset_server, user_name, user_password, piwebapi_security_method, verify_ssl):
""" Delete an AF template
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Delete Template')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get the element template
request_url = '{}/elementtemplates?path=\\\\{}\\{}\\ElementTemplates[{}]'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE, OSI_AF_TEMPLATE)
url = urlparse(request_url)
# Validate URL
assert url.scheme == 'https'
assert url.geturl().startswith(piwebapi_url)
response = requests.get(url.geturl(), auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# Create a header
header = call_headers(True)
# Delete the element template
request_url = '{}/elementtemplates/{}'.format(
piwebapi_url, data['WebId'])
url = urlparse(request_url)
# Validate URL
assert url.scheme == 'https'
assert url.geturl().startswith(piwebapi_url)
response = requests.delete(
url.geturl(), auth=security_method, verify=verify_ssl, headers=header)
if response.status_code == 204:
print('Template {} Deleted'.format(OSI_AF_TEMPLATE))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
def delete_category(piwebapi_url, asset_server, user_name, user_password, piwebapi_security_method, verify_ssl):
""" Delete an AF Category
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Delete Category')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get the element category
request_url = '{}/elementcategories?path=\\\\{}\\{}\\CategoriesElement[{}]'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE, OSI_AF_CATEGORY)
response = requests.get(request_url, auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# Create a header
header = call_headers(False)
# Delete the element category
response = requests.delete(data['Links']['Self'], auth=security_method,
verify=verify_ssl, headers=header)
if response.status_code == 204:
print('Category {} deleted.'.format(OSI_AF_CATEGORY))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
def delete_database(piwebapi_url, asset_server, user_name, user_password, piwebapi_security_method, verify_ssl):
""" Delete Python Web API Sample database
@param piwebapi_url string: The URL of the PI Web API
@param asset_server string: Name of the Asset Server
@param user_name string: The user's credentials name
@param user_password string: The user's credentials password
@param piwebapi_security_method string: Security method: basic or kerberos
@param verify_ssl: If certificate verification will be performed
"""
print('Delete Database')
# create security method - basic or kerberos
security_method = call_security_method(
piwebapi_security_method, user_name, user_password)
# Get AF Server
request_url = '{}/assetdatabases?path=\\\\{}\\{}'.format(
piwebapi_url, asset_server, OSI_AF_DATABASE)
response = requests.get(request_url, auth=security_method, verify=verify_ssl)
# Only continue if the first request was successful
if response.status_code == 200:
# Deserialize the JSON Response
data = json.loads(response.text)
# Create the header
header = call_headers(True)
url = urlparse(piwebapi_url + '/assetdatabases/' + data['WebId'])
# Validate URL
assert url.scheme == 'https'
assert url.geturl().startswith(piwebapi_url)
# Delete the sample database
response = requests.delete(url.geturl(),
auth=security_method, verify=verify_ssl, headers=header)
if response.status_code == 204:
print('Database {} deleted.'.format(OSI_AF_DATABASE))
else:
print(response.status_code, response.reason, response.text)
else:
print(response.status_code, response.reason, response.text)
return response.status_code
# Main method
def main():
""" Main method. Receive user input and call the do_batch_call method """
piwebapi_url = str(input('Enter the PI Web API url: '))
af_server_name = str(input('Enter the Asset Server Name: '))
pi_server_name = str(input('Enter the PI Server Name: '))
piwebapi_user = str(input('Enter the user name: '))
piwebapi_password = str(getpass.getpass('Enter the password: '))
piwebapi_security_method = str(
input('Enter the security method, Basic or Kerberos: '))
piwebapi_security_method = piwebapi_security_method.lower()
verify_ssl_string = str(input('Verify certificates? (Y/N): '))
if (verify_ssl_string.upper() == "N"):
print('Not verifying certificates poses a security risk and is not recommended')
verify_ssl = False
else:
verify_ssl = True
create_sandbox(piwebapi_url, af_server_name, pi_server_name, piwebapi_user, piwebapi_password,
piwebapi_security_method, verify_ssl)
if __name__ == '__main__':
main()