-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnapandlock.py
More file actions
215 lines (189 loc) · 7.78 KB
/
snapandlock.py
File metadata and controls
215 lines (189 loc) · 7.78 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
from getpass import getpass
import argparse
import logging
import sys
import base64
import os
import datetime
import ipaddress
import json
import requests
import urllib3
def validateinput(ip):
"""This function checks for valid input"""
try:
ipaddress.ip_address(ip)
except ValueError:
print("\nPlease enter a valid IP address!\n")
sys.exit()
def datetoepoch(timestamp):
"""This function converts a datetime, checks validity, then returns epoch time"""
if timestamp:
year, month, day, hour, minute, second = map(int, timestamp.split("-"))
expirydate = int(
datetime.datetime(year, month, day, hour, minute, second).timestamp()
)
currentdate = int(datetime.datetime.now().timestamp())
else:
return 0
if expirydate < currentdate:
print("\nDate entered must be greater than current date!\n")
sys.exit()
else:
return expirydate
def getsession(uri):
"""This function gets a session and sets headers, returns session"""
creds = "creds.json"
if os.path.isfile(creds):
with open(creds, "r", encoding="utf-8") as f:
data = json.load(f)
user = data["username"]
p = base64.b64decode(data["password"]).decode("utf-8")
elif os.path.isfile(creds) is False:
user = input("Please provide your user name? \n")
print("\nPlease provide the password for your user account...\n")
p = getpass()
print("\n\nAttempting session to " + uri + " ...\n")
headers = {"Content-Type": "application/json"}
data = json.dumps({"username": user, "password": p, "services": ["platform"]})
api_session = requests.Session()
response = api_session.post(
uri + "/session/1/session", data=data, headers=headers, verify=False
)
if response.status_code == 200 or response.status_code == 201:
print("Session to " + uri + " established.\n")
logging.info("API session created successfully by " + user + " at " + uri)
elif response.status_code != 200 or response.status_code != 201:
print(
"\nSession to "
+ uri
+ " not established. Please check your password, user name, or IP and try again.\n"
)
logging.info("Creation of API session by " + user + " at " + uri + " unsuccessful")
sys.exit()
api_session.headers["referer"] = uri
api_session.headers["X-CSRF-Token"] = api_session.cookies.get("isicsrf")
return api_session, user
def createsnapshot(api_session, uri, path, name, snapexpires):
"""This function will create a snapshot on path/expiration provided"""
resourceurl = "/platform/1/snapshot/snapshots"
if name == 0 and snapexpires == 0:
data = json.dumps({"path": path})
elif snapexpires == 0 and name != 0:
data = json.dumps({"path": path, "name": name})
elif snapexpires != 0 and name == 0:
data = json.dumps({"path": path, "snapexpires": snapexpires})
else:
data = json.dumps({"path": path, "expires": snapexpires, "name": name})
response = api_session[0].post(uri + resourceurl, data=data, verify=False)
if response.status_code == 200 or response.status_code == 201:
logging.info("POST request by " + api_session[1] + " at " + uri + resourceurl + " successful")
response = json.loads(response.content.decode(encoding="UTF-8"))
snapid = response["id"]
print(
"\nSnapshot ID " + str(snapid) + " created!\n"
)
return snapid
elif response.status_code != 200 or response.status_code != 201:
logging.info("POST request by " + api_session[1] + " at " + uri + resourceurl + " unsuccessful")
print("\nSnapshot creation encountered an issue. Try again!")
sys.exit()
def locksnapshot(api_session, uri, snapid, lockexpires):
"""This function will lock a snapshot or list of snapshots"""
print("\nBe advised, a single snapshot can only have a maximum of 16 locks.\n")
resourceurl = "/platform/12/snapshot/snapshots/" + snapid + "/locks"
print("\nProceeding with creation of snapshot lock...\n")
if lockexpires == 0:
noxdata = json.dumps({"comment": "This lock was created by snapandlock."})
response = api_session[0].post(uri + resourceurl, data=noxdata, verify=False)
if response.status_code == 200 or response.status_code == 201:
logging.info("POST request by " + api_session[1] + " at " + uri + resourceurl + " successful")
response = json.loads(response.content.decode(encoding="UTF-8"))
lockid = response["id"]
print(
"\nLock ID "
+ str(lockid)
+ " created "
+ "on snap ID "
+ snapid
+ "!\n"
)
elif response.status_code != 200 or response.status_code != 201:
logging.info("POST request by " + api_session[1] + " at " + uri + resourceurl + " unsuccessful")
print("\nLock creation encountered an issue. Try again!")
elif lockexpires != 0:
xdata = json.dumps(
{
"comment": "This lock was created by snapandlock.",
"expires": lockexpires,
}
)
response = api_session[0].post(uri + resourceurl, data=xdata, verify=False)
if response.status_code == 200 or response.status_code == 201:
logging.info("POST request by " + api_session[1] + " at " + uri + resourceurl + " successful")
response = json.loads(response.content.decode(encoding="UTF-8"))
lockid = response["id"]
print(
"\nLock ID " + str(lockid) + " created on snap ID " + snapid + "!\n"
)
elif response.status_code != 200 or response.status_code != 201:
logging.info("POST request by " + api_session[1] + " at " + uri + resourceurl + " unsuccessful")
print(
"\nLock creation encountered an issue on snap ID "
+ snapid
+ ". Try again!"
)
return 0
def main():
"""This function is the main function that runs the snapandlock"""
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
parser = argparse.ArgumentParser(description="Lock a list of snapshots")
parser.add_argument("ip", help="Enter a valid IP address")
parser.add_argument(
"path",
help="Enter a path to take a snapshot "
+ "Example: /ifs/data/path",
)
parser.add_argument(
"-n",
"--name",
help="Type a custom name for the snapshot.",
)
parser.add_argument(
"-sx",
"--snapexpires",
help="Type a date in YYYY-MM-DD-HH-MM-SS format (24h) to expire snapshot",
)
parser.add_argument(
"-lx",
"--lockexpires",
help="Type a date in YYYY-MM-DD-HH-MM-SS format (24h) to expire lock",
)
args = parser.parse_args()
ip = args.ip
path = args.path
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
filename="isi_tools.log",
level=logging.INFO,
)
validateinput(ip)
if args.snapexpires is not None:
snapexpires = datetoepoch(args.snapexpires)
elif args.snapexpires is None:
snapexpires = 0
if args.lockexpires is not None:
lockexpires = datetoepoch(args.lockexpires)
elif args.lockexpires is None:
lockexpires= 0
if args.name is not None:
name = args.name
elif args.name is None:
name= 0
port = 8080
uri = "https://" + str(ip) + ":" + str(port)
api_session = getsession(uri)
snapid = str(createsnapshot(api_session, uri, path, name, snapexpires))
locksnapshot(api_session, uri, snapid, lockexpires)
if __name__ == "__main__":
main()