-
Notifications
You must be signed in to change notification settings - Fork 15
/
org_inventory_backup.py
678 lines (593 loc) · 23.4 KB
/
org_inventory_backup.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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
"""
-------------------------------------------------------------------------------
Written by Thomas Munzer ([email protected])
Github repository: https://github.com/tmunzer/Mist_library/
This script is licensed under the MIT License.
-------------------------------------------------------------------------------
Python script to backup all the devices from an organization. It will backup the
devices claim codes (if any), configuration (including position on the maps) and
pictures.
You can use the script "org_inventory_deploy.py" to restore the generated backup
files to an existing organization or to a new one.
This script will not change/create/delete/touch any existing objects. It will
just retrieve every single object from the organization.
-------
Requirements:
mistapi: https://pypi.org/project/mistapi/
-------
Usage:
This script can be run as is (without parameters), or with the options below.
If no options are defined, or if options are missing, the missing options will
be asked by the script or the default values will be used.
It is recommended to use an environment file to store the required information
to request the Mist Cloud (see https://pypi.org/project/mistapi/ for more
information about the available parameters).
-------
Script Parameters:
-h, --help display this help
-o, --org_id= Set the org_id
-b, --backup_folder= Path to the folder where to save the org backup (a
subfolder will be created with the org name)
default is "./org_backup"
-d, --datetime append the current date and time (ISO format) to the
backup name
-t, --timestamp append the current timestamp to the backup
-l, --log_file= define the filepath/filename where to write the logs
default is "./script.log"
-e, --env= define the env file to use (see mistapi env file
documentation here: https://pypi.org/project/mistapi/)
default is "~/.mist_env"
-------
Examples:
python3 ./org_inventory_backup.py
python3 ./org_inventory_backup.py --org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
"""
#### IMPORTS ####
import logging
import sys
import os
import datetime
import json
import getopt
import urllib.request
MISTAPI_MIN_VERSION = "0.44.1"
try:
import mistapi
from mistapi.__logger import console
except:
print(
"""
Critical:
\"mistapi\" package is missing. Please use the pip command to install it.
# Linux/macOS
python3 -m pip install mistapi
# Windows
py -m pip install mistapi
"""
)
sys.exit(2)
#####################################################################
#### PARAMETERS #####
DEFAULT_BACKUP_FOLDER = "./org_backup"
BACKUP_FILE = "./org_inventory_file.json"
FILE_PREFIX = ".".join(BACKUP_FILE.split(".")[:-1])
LOG_FILE = "./script.log"
ENV_FILE = "~/.mist_env"
#####################################################################
#### LOGS ####
LOGGER = logging.getLogger(__name__)
#####################################################################
# BACKUP OBJECTS REFS
DEVICE_TYPES = ["ap", "switch", "gateway", "mxedge"]
#####################################################################
# PROGRESS BAR AND DISPLAY
class ProgressBar:
"""
PROGRESS BAR AND DISPLAY
"""
def __init__(self):
self.steps_total = 0
self.steps_count = 0
def _pb_update(self, size: int = 80):
if self.steps_count > self.steps_total:
self.steps_count = self.steps_total
percent = self.steps_count / self.steps_total
delta = 17
x = int((size - delta) * percent)
print(f"Progress: ", end="")
print(f"[{'█'*x}{'.'*(size-delta-x)}]", end="")
print(f"{int(percent*100)}%".rjust(5), end="")
def _pb_new_step(
self,
message: str,
result: str,
inc: bool = False,
size: int = 80,
display_pbar: bool = True,
):
if inc:
self.steps_count += 1
text = f"\033[A\033[F{message}"
print(f"{text} ".ljust(size + 4, "."), result)
print("".ljust(80))
if display_pbar:
self._pb_update(size)
def _pb_title(
self, text: str, size: int = 80, end: bool = False, display_pbar: bool = True
):
print("\033[A")
print(f" {text} ".center(size, "-"), "\n")
if not end and display_pbar:
print("".ljust(80))
self._pb_update(size)
def set_steps_total(self, steps_total: int):
self.steps_total = steps_total
def log_message(self, message, display_pbar: bool = True):
self._pb_new_step(message, " ", display_pbar=display_pbar)
def log_success(self, message, inc: bool = False, display_pbar: bool = True):
LOGGER.info(f"{message}: Success")
self._pb_new_step(
message, "\033[92m\u2714\033[0m\n", inc=inc, display_pbar=display_pbar
)
def log_failure(self, message, inc: bool = False, display_pbar: bool = True):
LOGGER.error(f"{message}: Failure")
self._pb_new_step(
message, "\033[31m\u2716\033[0m\n", inc=inc, display_pbar=display_pbar
)
def log_title(self, message, end: bool = False, display_pbar: bool = True):
LOGGER.info(message)
self._pb_title(message, end=end, display_pbar=display_pbar)
PB = ProgressBar()
#####################################################################
#### SITE FUNCTIONS ####
def _save_site_info(site: dict, backup: dict):
backup["org"]["sites"][site["name"]] = {
"id": site["id"],
"old_maps_ids": {},
"devices": [],
}
backup["org"]["old_sites_id"][site["name"]] = site["id"]
def _backup_site_id_dict(site: dict, backup: dict):
if site["name"] in backup["org"]["sites"]:
console.warning(f"Two sites are using the same name {site['name']}!")
console.warning(
"This will cause issue during the backup and the restore process."
)
console.warning("I recommand you to rename one of the two sites.")
loop = True
while loop:
resp = input("Do you want to continue anyway (y/N)? ")
if resp.lower() == "y":
loop = False
_save_site_info(site, backup)
elif resp.lower() == "n" or resp == "":
loop = False
sys.exit(200)
else:
_save_site_info(site, backup)
def _backup_site_maps(mist_session: mistapi.APISession, site):
response = mistapi.api.v1.sites.maps.listSiteMaps(mist_session, site["id"])
backup_maps = mistapi.get_all(mist_session, response)
maps_ids = {}
for xmap in backup_maps:
if xmap["name"] in maps_ids:
console.warning(
f"Two maps are using the same name {xmap['name']} in the same site {site['name']}!"
)
console.warning(
"This will cause issue during the backup and the restore process."
)
console.warning("It is recommanded you to rename one of the two maps.")
loop = True
while loop:
resp = input("Do you want to continue anyway (y/N)? ")
if resp.lower() == "y":
loop = False
["maps"].append({xmap["name"]: xmap["id"]})
["maps_ids"][xmap["name"]] = xmap["id"]
elif resp.lower() == "n" or resp == "":
loop = False
sys.exit(200)
else:
maps_ids[xmap["name"]] = xmap["id"]
return maps_ids
def _no_magic(backup: dict, site_name: str, device: dict, device_type: str = None):
if not device["mac"] in backup["org"]["magics"]:
backup["org"]["devices_without_magic"].append(
{
"site": site_name,
"device_type": device.get("type", device_type),
"model": device.get("model"),
"name": device.get("name"),
"mac": device.get("mac"),
"serial": device.get("serial"),
}
)
#####################################################################
#### INVENTORY FUNCTIONS ####
def _backup_inventory(
mist_session: mistapi.APISession,
org_id: str,
org_name: str = None,
backup: dict = {},
):
PB.log_title(f"Backuping Org {org_name} Elements ")
backup["org"]["id"] = org_id
################################################
## Backuping inventory
for device_type in DEVICE_TYPES:
message = f"Backuping {device_type} magics"
PB.log_message(message)
try:
response = mistapi.api.v1.orgs.inventory.getOrgInventory(
mist_session, org_id, type=device_type, limit=1000
)
inventory = mistapi.get_all(mist_session, response)
for data in inventory:
if data.get("magic"):
backup["org"]["magics"][data["mac"]] = data["magic"]
backup["org"]["devices"].append({
"mac": data["mac"],
"serial": data["serial"],
"type": data["type"],
})
PB.log_success(message, True)
except Exception as e:
PB.log_failure(message, True)
LOGGER.error("Exception occurred", exc_info=True)
################################################
## Retrieving org MxEdges
message = f"Backuping Org MxEdges"
PB.log_message(message)
try:
response = mistapi.api.v1.orgs.mxedges.listOrgMxEdges(
mist_session, org_id, limit=1000
)
mxedges = mistapi.get_all(mist_session, response)
backup["org"]["mxedges"] = mxedges
PB.log_success(message, True)
except Exception as e:
PB.log_failure(message, True)
LOGGER.error("Exception occurred", exc_info=True)
for mxedge in mxedges:
_no_magic(backup, "Org", mxedge, "mxedge")
################################################
## Retrieving device profiles
message = f"Backuping Device Profiles"
PB.log_message(message)
try:
response = mistapi.api.v1.orgs.deviceprofiles.listOrgDeviceProfiles(
mist_session, org_id, limit=1000
)
deviceprofiles = mistapi.get_all(mist_session, response)
for deviceprofile in deviceprofiles:
backup["org"]["old_deviceprofiles_id"][
deviceprofile["name"]
] = deviceprofile["id"]
PB.log_success(message, True)
except Exception as e:
PB.log_failure(message, True)
LOGGER.error("Exception occurred", exc_info=True)
################################################
## Retrieving evpntopologies
message = f"Backuping EVPN Topologies"
PB.log_message(message)
try:
response = mistapi.api.v1.orgs.evpn_topologies.listOrgEvpnTopologies(
mist_session, org_id
)
evpn_topologies = mistapi.get_all(mist_session, response)
for evpn_topology in evpn_topologies:
backup["org"]["old_evpntopo_id"][deviceprofile["name"]] = evpn_topology[
"id"
]
PB.log_success(message, True)
except Exception as e:
PB.log_failure(message, True)
LOGGER.error("Exception occurred", exc_info=True)
################################################
## Retrieving Sites list
message = f"Retrieving Sites list"
PB.log_message(message)
try:
response = mistapi.api.v1.orgs.sites.listOrgSites(
mist_session, org_id, limit=1000
)
sites = mistapi.get_all(mist_session, response)
PB.log_success(message, True)
except Exception as e:
PB.log_failure(message, True)
LOGGER.error("Exception occurred", exc_info=True)
################################################
## Backuping Sites Devices
for site in sites:
PB.log_title(f"Backuping Site {site['name']}")
message = f"Devices List"
PB.log_message(message)
try:
_backup_site_id_dict(site, backup)
backup["org"]["sites"][site["name"]]["old_maps_ids"] = _backup_site_maps(
mist_session, site
)
response = mistapi.api.v1.sites.devices.listSiteDevices(
mist_session, site["id"], type="all", limit=1000
)
devices = mistapi.get_all(mist_session, response)
backup["org"]["sites"][site["name"]]["devices"] = devices
PB.log_success(message, True)
except Exception as e:
PB.log_failure(message, True)
LOGGER.error("Exception occurred", exc_info=True)
################################################
## Backuping Site Devices Images
for device in devices:
_no_magic(backup, site["name"], device)
message = f"Backuping {device['type'].upper()} {device['serial']} images"
PB.log_message(message)
try:
i = 1
while f"image{i}_url" in device:
url = device[f"image{i}_url"]
image_name = f"{FILE_PREFIX}_org_{org_id}_device_{device['serial']}_image_{i}.png"
urllib.request.urlretrieve(url, image_name)
i += 1
PB.log_success(message, True)
except Exception as e:
PB.log_failure(message, True)
LOGGER.error("Exception occurred", exc_info=True)
################################################
## End
PB.log_title(f"Backup Done", end=True)
print()
def _save_to_file(backup_data:dict,backup_file:str, backup_name:str):
backup_path = f"./org_backup/{backup_name}/{backup_file.replace('./','')}"
message = f"Saving to file {backup_path} "
PB.log_message(message, display_pbar=False)
try:
with open(backup_file, "w") as f:
json.dump(backup_data, f)
PB.log_success(message, display_pbar=False)
except Exception as e:
PB.log_failure(message, display_pbar=False)
LOGGER.error("Exception occurred", exc_info=True)
def _start_inventory_backup(
mist_session: mistapi.APISession,
org_id: str,
org_name: str,
backup_folder:str,
backup_name:str
):
# FOLDER
try:
if not os.path.exists(backup_folder):
os.makedirs(backup_folder)
os.chdir(backup_folder)
if not os.path.exists(backup_name):
os.makedirs(backup_name)
os.chdir(backup_name)
except Exception as e:
print(e)
LOGGER.error("Exception occurred", exc_info=True)
# PREPARE PROGRESS BAR
try:
device_count = 0
for device_type in DEVICE_TYPES:
response = mistapi.api.v1.orgs.inventory.getOrgInventory(
mist_session, org_id, type=device_type, limit=1
)
if response.headers.get("X-Page-Total"):
device_count += int(response.headers.get("X-Page-Total"))
else:
device_count += len(response.data)
response = mistapi.api.v1.orgs.sites.countOrgSites(
mist_session, org_id, limit=1
)
if response.headers.get("X-Page-Total"):
site_count = int(response.headers.get("X-Page-Total"))
else:
site_count = len(response.data)
PB.set_steps_total(2 + len(DEVICE_TYPES) + site_count + device_count)
except Exception as e:
LOGGER.error("Exception occurred", exc_info=True)
sys.exit(0)
backup = {
"org": {
"id": "",
"sites": {},
"old_sites_id": {},
"old_deviceprofiles_id": {},
"old_evpntopo_id": {},
"magics": {},
"devices": [],
"devices_without_magic": [],
}
}
_backup_inventory(mist_session, org_id, org_name, backup)
_save_to_file(backup, BACKUP_FILE, backup_name)
if backup["org"]["devices_without_magic"]:
console.warning(
"It was not possible to retrieve the claim codes for the following devices:"
)
mistapi.cli.display_list_of_json_as_table(
backup["org"]["devices_without_magic"],
["site", "device_type", "model", "name", "mac", "serial"],
)
print()
def start(
mist_session: mistapi.APISession,
org_id: str,
backup_folder: str = None,
backup_name:str=None,
backup_name_date:bool=False,
backup_name_ts:bool=False,
):
"""
Start the backup process
PARAMS
-------
dst_apisession : mistapi.APISession
mistapi session with `Super User` access the destination Org, already logged in
org_id : str
org_id of the org to backup
org_name : str
Org name where to deploy the inventory. This parameter requires "org_id" to be defined
backup_folder_param : str
Path to the folder where to save the org backup (a subfolder will be created with the
org name). default is "./org_backup"
backup_name : str
Name of the subfolder where the the backup files will be saved
default is the org name
backup_name_date : bool, default = False
if `backup_name_date`==`True`, append the current date and time (ISO
format) to the backup name
backup_name_ts : bool, default = False
if `backup_name_ts`==`True`, append the current timestamp to the backup
name
"""
current_folder = os.getcwd()
if not backup_folder:
backup_folder = DEFAULT_BACKUP_FOLDER
if not org_id:
org_id = mistapi.cli.select_org(mist_session)[0]
org_name = mistapi.api.v1.orgs.orgs.getOrg(mist_session, org_id).data["name"]
if not backup_name:
backup_name = org_name
if backup_name_date:
backup_name = f"{backup_name}_{datetime.datetime.isoformat(datetime.datetime.now()).split('.')[0].replace(':','.')}"
elif backup_name_ts:
backup_name = f"{backup_name}_{round(datetime.datetime.timestamp(datetime.datetime.now()))}"
_start_inventory_backup(mist_session, org_id, org_name, backup_folder, backup_name)
os.chdir(current_folder)
#####################################################################
#### USAGE ####
def usage(error_message:str=None):
"""
display usage
"""
print(
"""
-------------------------------------------------------------------------------
Written by Thomas Munzer ([email protected])
Github repository: https://github.com/tmunzer/Mist_library/
This script is licensed under the MIT License.
-------------------------------------------------------------------------------
Python script to backup all the devices from an organization. It will backup the
devices claim codes (if any), configuration (including position on the maps) and
pictures.
You can use the script "org_inventory_deploy.py" to restore the generated backup
files to an existing organization or to a new one.
This script will not change/create/delete/touch any existing objects. It will
just retrieve every single object from the organization.
-------
Requirements:
mistapi: https://pypi.org/project/mistapi/
-------
Usage:
This script can be run as is (without parameters), or with the options below.
If no options are defined, or if options are missing, the missing options will
be asked by the script or the default values will be used.
It is recommended to use an environment file to store the required information
to request the Mist Cloud (see https://pypi.org/project/mistapi/ for more
information about the available parameters).
-------
Script Parameters:
-h, --help display this help
-o, --org_id= Set the org_id
-b, --backup_folder= Path to the folder where to save the org backup (a
subfolder will be created with the org name)
default is "./org_backup"
-d, --datetime append the current date and time (ISO format) to the
backup name
-t, --timestamp append the current timestamp to the backup
-l, --log_file= define the filepath/filename where to write the logs
default is "./script.log"
-e, --env= define the env file to use (see mistapi env file
documentation here: https://pypi.org/project/mistapi/)
default is "~/.mist_env"
-------
Examples:
python3 ./org_inventory_backup.py
python3 ./org_inventory_backup.py --org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
"""
)
if error_message:
console.critical(error_message)
sys.exit(0)
def check_mistapi_version():
if mistapi.__version__ < MISTAPI_MIN_VERSION:
LOGGER.critical(
f'"mistapi" package version {MISTAPI_MIN_VERSION} is required, you are currently using version {mistapi.__version__}.'
)
LOGGER.critical(f"Please use the pip command to updated it.")
LOGGER.critical("")
LOGGER.critical(f" # Linux/macOS")
LOGGER.critical(f" python3 -m pip install --upgrade mistapi")
LOGGER.critical("")
LOGGER.critical(f" # Windows")
LOGGER.critical(f" py -m pip install --upgrade mistapi")
print(
f"""
Critical:
\"mistapi\" package version {MISTAPI_MIN_VERSION} is required, you are currently using version {mistapi.__version__}.
Please use the pip command to updated it.
# Linux/macOS
python3 -m pip install --upgrade mistapi
# Windows
py -m pip install --upgrade mistapi
"""
)
sys.exit(2)
else:
LOGGER.info(
f'"mistapi" package version {MISTAPI_MIN_VERSION} is required, '
f'you are currently using version {mistapi.__version__}.'
)
#####################################################################
#### SCRIPT ENTRYPOINT ####
if __name__ == "__main__":
try:
opts, args = getopt.getopt(
sys.argv[1:],
"ho:e:l:b:dt",
["help", "org_id=", "env=", "log_file=", "backup_folder=", "datetime", "timestamp"],
)
except getopt.GetoptError as err:
console.error(err)
usage()
ORG_ID = None
BACKUP_FOLDER = DEFAULT_BACKUP_FOLDER
BACKUP_NAME = False
BACKUP_NAME_DATE = False
BACKUP_NAME_TS = False
for o, a in opts:
if o in ["-h", "--help"]:
usage()
elif o in ["-o", "--org_id"]:
ORG_ID = a
elif o in ["-e", "--env"]:
ENV_FILE = a
elif o in ["-l", "--log_file"]:
LOG_FILE = a
elif o in ["-b", "--backup_folder"]:
BACKUP_FOLDER = a
elif o in ["-d", "--datetime"]:
if BACKUP_NAME_TS:
usage("Inavlid Parameters: \"-d\"/\"--date\" and \"-t\"/\"--timestamp\" are exclusive")
else:
BACKUP_NAME_DATE = True
elif o in ["-t", "--timestamp"]:
if BACKUP_NAME_DATE:
usage("Inavlid Parameters: \"-d\"/\"--date\" and \"-t\"/\"--timestamp\" are exclusive")
else:
BACKUP_NAME_TS = True
else:
assert False, "unhandled option"
#### LOGS ####
logging.basicConfig(filename=LOG_FILE, filemode="w")
LOGGER.setLevel(logging.DEBUG)
check_mistapi_version()
### START ###
APISESSION = mistapi.APISession(env_file=ENV_FILE)
APISESSION.login()
### START ###
start(APISESSION, ORG_ID, BACKUP_FOLDER, BACKUP_NAME, BACKUP_NAME_DATE, BACKUP_NAME_TS)