-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcheck_local_commit_events.py
More file actions
583 lines (503 loc) · 20.4 KB
/
check_local_commit_events.py
File metadata and controls
583 lines (503 loc) · 20.4 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
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
"""
-------------------------------------------------------------------------------
Written by Thomas Munzer (tmunzer@juniper.net)
Github repository: https://github.com/tmunzer/Mist_library/
This script is licensed under the MIT License.
-------------------------------------------------------------------------------
This script can be used to retrieve and save into files the CLI Commit events
(commit done locally one the switches) for all the switches belonging to a Mist
Organization.
The script is automatically retrieving the list of sites with managed switches,
then it is retrieving the commit events for each site, and saving the CLI
commit events into a file.
The script is creating a dedicated folder for each Mist Org (based on the
org_id), one sub folder for each site with managed switches withing the org
(based on the site_id), and then one file for each switch with local commit
events (based on the switch MAC address).
-------
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
-f, --file= OPTIONAL: path to the CSV file
-o, --org_id= Set the org_id where the webhook must be create/delete/retrieved
This parameter cannot be used if -s/--site_id is used.
If no org_id and not site_id are defined, the script will show
a menu to select the org/the site.
-d, --duration= retrieve the CLI commits for the specified duration (e.g. 1h, 1d,
7d, 30d).
WARNING: There is no validation on the value, please check the
MIST API documentation for more information. Wrong format may
result in empty results.
default: 7d
maximum: 30d
-f, --folder= folder where to save the files. The script will create a subfolder
with the org_id then one subfolder per site, and one file per
switch with CLI commit events in the subfolder.
If the folder doesn't exists, it will be created.
default: "./cli_commit_events"
-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 ./check_local_commit_events.py
python3 ./check_local_commit_events.py \
-d 1w \
--org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
"""
#### IMPORTS ####
import os
import sys
import argparse
import logging
MISTAPI_MIN_VERSION = "0.52.2"
try:
import mistapi
from mistapi.__logger import console as CONSOLE
except ImportError:
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 #####
ENV_FILE = "~/.mist_env"
CSV_FILE = "./update_port_config.csv"
LOG_FILE = "./script.log"
###############################################################################
#### LOGS ####
LOGGER = logging.getLogger(__name__)
#####################################################################
# PROGRESS BAR AND DISPLAY
class ProgressBar:
"""Progress bar for long-running operations."""
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("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):
"""Set the total number of steps for the progress bar."""
self.steps_count = 0
self.steps_total = steps_total
def log_message(self, message, display_pbar: bool = True):
"""Log a message."""
self._pb_new_step(message, " ", display_pbar=display_pbar)
def log_success(self, message, inc: bool = False, display_pbar: bool = True):
"""Log a success message."""
LOGGER.info("%s: Success", message)
self._pb_new_step(
message, "\033[92m\u2714\033[0m\n", inc=inc, display_pbar=display_pbar
)
def log_warning(self, message, inc: bool = False, display_pbar: bool = True):
"""Log a warning message."""
LOGGER.warning("%s: Warning", message)
self._pb_new_step(
message, "\033[93m\u2b58\033[0m\n", inc=inc, display_pbar=display_pbar
)
def log_failure(self, message, inc: bool = False, display_pbar: bool = True):
"""Log a failure message."""
LOGGER.error("%s: Failure", message)
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):
"""Log a title message."""
LOGGER.info("%s", message)
self._pb_title(message, end=end, display_pbar=display_pbar)
PB = ProgressBar()
###############################################################################
# FUNCTION
def _find_sites(apisession: mistapi.APISession, org_id: str) -> list:
"""
Find all the sites from the org with Managed switches
PARAMS
-------
apisession : mistapi.APISession
mistapi session with `Super User` access the Org, already logged in
org_id : str
org_id where the webhook guests be added. This parameter cannot be used if "site_id"
is used. If no org_id and not site_id are defined, the script will show a menu to
select the org/the site.
RETURNS
-------
list:
list of site_id where there is at list one managed switch
"""
site_ids = []
try:
message = "Retrieving the Sites with managed switches"
PB.log_message(message, display_pbar=False)
resp = mistapi.api.v1.orgs.devices.countOrgDevices(
apisession, org_id, distinct="site_id", managed="true", limit=1000
)
if resp.status_code == 200:
results = mistapi.get_all(apisession, resp)
for site in results:
if site.get("site_id") != "00000000-0000-0000-0000-000000000000":
site_ids.append(site.get("site_id"))
PB.log_success(message, display_pbar=False)
return site_ids
else:
PB.log_failure(message, display_pbar=False)
sys.exit(100)
except Exception:
PB.log_failure(message, display_pbar=False)
LOGGER.error("Exception occurred", exc_info=True)
sys.exit(100)
def _find_events(apisession: mistapi.APISession, site_id: str, duration: str) -> list:
"""
Find all the cli commit events from the org
PARAMS
-------
apisession : mistapi.APISession
mistapi session with `Super User` access the Org, already logged in
org_id : str
org_id where the webhook guests be added. This parameter cannot be used if "site_id"
is used. If no org_id and not site_id are defined, the script will show a menu to
select the org/the site.
RETURNS
-------
list:
list of the cli commit events
"""
try:
message = f"Site {site_id}: retrieving CLI Commit Events"
PB.log_message(message, display_pbar=True)
resp = mistapi.api.v1.sites.devices.searchSiteDeviceEvents(
apisession, site_id, type="SW_CONFIGURED", limit=1000, duration=duration
)
if resp.status_code == 200:
results = mistapi.get_all(apisession, resp)
PB.log_success(message, inc=True, display_pbar=True)
return results
else:
PB.log_failure(message, inc=True, display_pbar=True)
sys.exit(100)
except Exception:
PB.log_failure(message, inc=True, display_pbar=True)
LOGGER.error("Exception occurred", exc_info=True)
sys.exit(100)
def _process_events(events: list, site_id: str) -> dict:
cli_events = {}
message = f"Site {site_id}: processing CLI Commit Events"
PB.log_message(message, display_pbar=True)
for event in events:
if event.get("commit_method") == "cli":
config_diff = event.get("config_diff", "unknown")
text = event.get("text", "unknown")
timestamp = event.get("timestamp")
mac = event.get("mac")
commit_user = event.get("commit_user")
version = event.get("version")
if not cli_events.get(mac):
cli_events[mac] = []
cli_events[mac].append(
{
"config_diff": config_diff,
"result": text,
"timestamp": timestamp,
"commit_user": commit_user,
"version": version,
}
)
PB.log_success(message, inc=True, display_pbar=True)
return cli_events
def _save_events(events: dict, site_id: str) -> None:
if len(events) > 0:
message = f"Site {site_id}: saving CLI Commit Events"
PB.log_message(message, display_pbar=True)
try:
if not os.path.exists(site_id):
os.makedirs(site_id)
for mac, switch_events in events.items():
file_path = f"./{site_id}/{mac}"
sorted_switch_events = sorted(
switch_events, key=lambda d: d["timestamp"], reverse=True
)
with open(file_path, "w") as f:
for e in sorted_switch_events:
f.write(
f"-------------- commit at {e.get('timestamp')} - user {e.get('commit_user')} --------------\n"
)
f.write(e.get("config_diff"))
f.write("\n-\n")
f.write(f"result: {e.get('result')}\n\n")
except Exception:
PB.log_failure(message, inc=True, display_pbar=True)
LOGGER.error("Exception occurred", exc_info=True)
return
else:
message = f"Site {site_id}: no CLI Commit Events to save"
PB.log_message(message, display_pbar=True)
PB.log_success(message, inc=True, display_pbar=True)
def _check_folder(folder: str, org_id: str) -> None:
try:
if not os.path.exists(folder):
os.makedirs(folder)
os.chdir(folder)
if not os.path.exists(org_id):
os.makedirs(org_id)
os.chdir(org_id)
except Exception as e:
print(e)
LOGGER.error("Exception occurred", exc_info=True)
sys.exit(200)
def _processing_sites(
apisession: mistapi.APISession,
org_id: str,
site_ids: list,
duration: str = "7d",
folder: str = "./cli_commit_events",
) -> None:
_check_folder(folder, org_id)
for site_id in site_ids:
events = _find_events(apisession, site_id, duration)
cli_events = _process_events(events, site_id)
_save_events(cli_events, site_id)
###############################################################################
# START
def start(
apisession: mistapi.APISession,
org_id: str = "",
duration: str = "7d",
folder: str = "./cli_commit_events",
):
"""
Start the process
PARAMS
-------
apisession : mistapi.APISession
mistapi session with `Super User` access the Org, already logged in
org_id : str
org_id where the webhook guests be added. This parameter cannot be used if "site_id"
is used. If no org_id and not site_id are defined, the script will show a menu to
select the org/the site.
duration: str, default: 7d
retrieve the CLI commits for the specified duration (e.g. 1h, 1d, 7d, 30d), max: 30d
WARNING: There is no validation on the value, please check the MIST API documentation
for more information. Wrong format may result in empty results.
folder: str, default: "./cli_commit_events"
folder where to save the files. The script will create a subfolder with the org_id then
one subfolder per site, and one file per switch with CLI commit events in the subfolder.
If the folder doesn't exists, it will be created.
"""
if not org_id:
org_id = mistapi.cli.select_org(apisession)[0]
site_ids = _find_sites(apisession, org_id)
PB.set_steps_total(len(site_ids) * 3)
_processing_sites(apisession, org_id, site_ids, duration, folder)
###############################################################################
# USAGE
def usage(error_message: str|None = None):
"""
show script usage
"""
print(
"""
-------------------------------------------------------------------------------
Written by Thomas Munzer (tmunzer@juniper.net)
Github repository: https://github.com/tmunzer/Mist_library/
This script is licensed under the MIT License.
-------------------------------------------------------------------------------
This script can be used to retrieve and save into files the CLI Commit events
(commit done locally one the switches) for all the switches belonging to a Mist
Organization.
The script is automatically retrieving the list of sites with managed switches,
then it is retrieving the commit events for each site, and saving the CLI
commit events into a file.
The script is creating a dedicated folder for each Mist Org (based on the
org_id), one sub folder for each site with managed switches withing the org
(based on the site_id), and then one file for each switch with local commit
events (based on the switch MAC address).
-------
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
-f, --file= OPTIONAL: path to the CSV file
-o, --org_id= Set the org_id where the webhook must be create/delete/retrieved
This parameter cannot be used if -s/--site_id is used.
If no org_id and not site_id are defined, the script will show
a menu to select the org/the site.
-d, --duration= retrieve the CLI commits for the specified duration (e.g. 1h, 1d,
7d, 30d).
WARNING: There is no validation on the value, please check the
MIST API documentation for more information. Wrong format may
result in empty results.
default: 7d
maximum: 30d
-f, --folder= folder where to save the files. The script will create a subfolder
with the org_id then one subfolder per site, and one file per
switch with CLI commit events in the subfolder.
If the folder doesn't exists, it will be created.
default: "./cli_commit_events"
-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 ./check_local_commit_events.py
python3 ./check_local_commit_events.py \
-d 1w \
--org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
"""
)
if error_message:
CONSOLE.critical(error_message)
sys.exit(0)
def check_mistapi_version():
"""Check if the installed mistapi version meets the minimum requirement."""
current_version = mistapi.__version__.split(".")
required_version = MISTAPI_MIN_VERSION.split(".")
try:
for i, req in enumerate(required_version):
if current_version[int(i)] > req:
break
if current_version[int(i)] < req:
raise ImportError(
f'"mistapi" package version {MISTAPI_MIN_VERSION} is required '
f"but version {mistapi.__version__} is installed."
)
except ImportError as e:
LOGGER.critical(str(e))
LOGGER.critical("Please use the pip command to update it.")
LOGGER.critical("")
LOGGER.critical(" # Linux/macOS")
LOGGER.critical(" python3 -m pip install --upgrade mistapi")
LOGGER.critical("")
LOGGER.critical(" # Windows")
LOGGER.critical(" py -m pip install --upgrade mistapi")
print(
f"""
Critical:\r\n
{e}\r\n
Please use the pip command to update it.
# Linux/macOS
python3 -m pip install --upgrade mistapi
# Windows
py -m pip install --upgrade mistapi
"""
)
sys.exit(2)
finally:
LOGGER.info(
'"mistapi" package version %s is required, '
"you are currently using version %s.",
MISTAPI_MIN_VERSION,
mistapi.__version__,
)
#####################################################################
##### ENTRY POINT ####
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Retrieve and save CLI Commit events from Mist switches",
add_help=False,
)
# Add help manually to maintain control over usage function
parser.add_argument("-h", "--help", action="store_true", help="display this help")
parser.add_argument(
"-o", "--org_id", help="Set the org_id where the events must be retrieved"
)
parser.add_argument(
"-d",
"--duration",
default="7d",
help="retrieve the CLI commits for the specified duration (default: 7d)",
)
parser.add_argument(
"-f",
"--folder",
default="./cli_commit_events",
help="folder where to save the files (default: ./cli_commit_events)",
)
parser.add_argument(
"-e",
"--env",
default=ENV_FILE,
help="define the env file to use (default: ~/.mist_env)",
)
parser.add_argument(
"-l",
"--log_file",
default=LOG_FILE,
help="define the filepath/filename where to write the logs (default: ./script.log)",
)
args = parser.parse_args()
ORG_ID = args.org_id
DURATION = args.duration
FOLDER = args.folder
ENV_FILE = args.env
LOG_FILE = args.log_file
# Validate duration format
if not DURATION.endswith(("m", "h", "d", "w")):
usage(
f'Invalid -d / --duration parameter value, should be something like "10m", "2h", "7d", "1w"... Got "{DURATION}".'
)
#### 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(APISESSION, ORG_ID, DURATION, FOLDER)