-
Notifications
You must be signed in to change notification settings - Fork 15
/
org_complete_backup.py
409 lines (345 loc) · 13 KB
/
org_complete_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
"""
-------------------------------------------------------------------------------
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 a whole organization configuration and devices.
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/
This script requires the following scripts to be in the same folder:
- org_conf_backup.py
- org_inventory_backup.py
-------
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= Optional, org_id of the org to clone
--src_env= Optional, env file to use to access the src org (see
mistapi env file documentation here:
https://pypi.org/project/mistapi/)
default is "~/.mist_env"
-l, --log_file= define the filepath/filename where to write the logs
default is "./script.log"
-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
-------
Examples:
python3 ./org_complete_backup.py
python3 ./org_complete_backup.py \
--org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
"""
#####################################################################
#### IMPORTS ####
import sys
import logging
import getopt
import datetime
MISTAPI_MIN_VERSION = "0.52.0"
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)
try:
import org_conf_backup
import org_inventory_backup
except:
print(
"""
Critical:
This script is using other scripts from the mist_library to perform all the
action. Please make sure the following python files are in the same folder
as the org_clone.py file:
- org_conf_backup.py
- org_inventory_backup.py
"""
)
sys.exit(2)
#####################################################################
#### PARAMETERS #####
DEFAULT_BACKUP_FOLDER = "./org_backup"
LOG_FILE = "./script.log"
SRC_ENV_FILE = "~/.mist_env"
#####################################################################
#### LOGS ####
LOGGER = logging.getLogger(__name__)
#####################################################################
#### ORG FUNCTIONS ####
def _backup_org(
source_mist_session: mistapi.APISession,
org_id: str,
backup_folder_param:str,
backup_name:str
):
LOGGER.debug(f"org_complete_backup:_backup_org")
LOGGER.debug(f"org_complete_backup:_backup_org:parameter:org_id:{org_id}")
LOGGER.debug(f"org_complete_backup:_backup_org:parameter:backup_folder_param:{backup_folder_param}")
LOGGER.debug(f"org_complete_backup:_backup_org:parameter:backup_name:{backup_name}")
try:
_print_new_step("Backuping SOURCE Org Configuration")
org_conf_backup.start(
mist_session=source_mist_session,
org_id=org_id,
backup_folder_param=backup_folder_param,
backup_name=backup_name
)
except:
sys.exit(255)
#######
#######
def _backup_inventory(
source_mist_session: mistapi.APISession,
org_id: str,
backup_folder_param: str,
backup_name:str
):
LOGGER.debug(f"org_complete_backup:_backup_inventory")
LOGGER.debug(f"org_complete_backup:_backup_inventory:parameter:org_id:{org_id}")
LOGGER.debug(f"org_complete_backup:_backup_inventory:parameter:backup_folder_param:{backup_folder_param}")
LOGGER.debug(f"org_complete_backup:_backup_inventory:parameter:backup_name:{backup_name}")
_print_new_step("Backuping SOURCE Org Inventory")
org_inventory_backup.start(
mist_session=source_mist_session,
org_id=org_id,
backup_folder=backup_folder_param,
backup_name=backup_name
)
#######
#######
def _print_new_step(message):
print()
print("".center(80, "*"))
print(f" {message} ".center(80, "*"))
print("".center(80, "*"))
print()
LOGGER.info(f"{message}")
#######
#######
def start(
apisession: mistapi.APISession,
org_id: str = None,
backup_folder_param: str = None,
backup_name:str=None,
backup_name_date:bool=False,
backup_name_ts:bool=False,
):
"""
Start the process to clone the src org to the dst org
PARAMS
-------
apisession : mistapi.APISession
mistapi session with `Super User` access the source Org, already logged in
org_id : str
Optional, org_id of the org to clone
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
"""
LOGGER.debug(f"org_complete_backup:start")
LOGGER.debug(f"org_complete_backup:start:parameter:org_id:{org_id}")
LOGGER.debug(f"org_complete_backup:start:parameter:backup_folder_param:{backup_folder_param}")
LOGGER.debug(f"org_complete_backup:start:parameter:backup_name:{backup_name}")
LOGGER.debug(f"org_complete_backup:start:parameter:backup_name_date:{backup_name_date}")
LOGGER.debug(f"org_complete_backup:start:parameter:backup_name_ts:{backup_name_ts}")
if not backup_folder_param:
backup_folder_param = DEFAULT_BACKUP_FOLDER
if not org_id:
org_id = mistapi.cli.select_org(apisession)[0]
org_name = mistapi.api.v1.orgs.orgs.getOrg(apisession, 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()))}"
_backup_org(apisession, org_id, backup_folder_param, backup_name)
_backup_inventory(apisession, org_id, backup_folder_param, backup_name)
_print_new_step("Process finished")
###############################################################################
#### USAGE ####
def usage(error_message:str=None):
"""
display script 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 a whole organization configuration and devices.
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/
This script requires the following scripts to be in the same folder:
- org_conf_backup.py
- org_inventory_backup.py
-------
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
--org_id= Optional, org_id of the org to clone
-e, --env= Optional, env file to use to access the src org (see
mistapi env file documentation here:
https://pypi.org/project/mistapi/)
default is "~/.mist_env"
-l, --log_file= define the filepath/filename where to write the logs
default is "./script.log"
-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
-------
Examples:
python3 ./org_complete_backup.py
python3 ./org_complete_backup.py \
--org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
"""
)
if error_message:
console.critical(error_message)
sys.exit(0)
def check_mistapi_version():
"""
Function to check the mistapi package version
"""
if mistapi.__version__ < MISTAPI_MIN_VERSION:
LOGGER.critical(
f"\"mistapi\" package version {MISTAPI_MIN_VERSION} is required, "
f"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:l:b:e:td",
[
"help",
"org_id=",
"env=",
"src_env=",
"log_file=",
"backup_folder=",
"datetime", "timestamp"
],
)
except getopt.GetoptError as err:
usage(err)
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 ["-b", "--backup_folder"]:
BACKUP_FOLDER = a
elif o in ["-h", "--help"]:
usage()
sys.exit(0)
elif o in ["-l", "--log_file"]:
LOG_FILE = a
elif o in ["-e", "--env", "--src_env"]:
SRC_ENV_FILE = a
elif o in ["-o", "--org_id"]:
ORG_ID = 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()
### MIST SESSION ###
print(" API Session to access the Source Org ".center(80, "_"))
apisession = mistapi.APISession(env_file=SRC_ENV_FILE)
apisession.login()
### START ###
start(
apisession,
org_id=ORG_ID,
backup_folder_param=BACKUP_FOLDER,
backup_name=BACKUP_NAME,
backup_name_date=BACKUP_NAME_DATE,
backup_name_ts=BACKUP_NAME_TS,
)