-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapautolock.py
199 lines (178 loc) · 6.34 KB
/
snapautolock.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
"""Module providing functions to get and lock snapshots
meeting certain criteria for a user specified # of days"""
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(days):
"""This function converts a datetime, checks validity, then returns epoch time"""
currentdate = datetime.datetime.now()
expirydate = int((currentdate + datetime.timedelta(days=int(days))).timestamp())
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 getsnapshots(api_session, uri):
"""This function gets a list of snapshots and locks unlocked
snapshots for a certain time with exclusions"""
resourceurl = "/platform/1/snapshot/snapshots"
snapresult = api_session[0].get(uri + resourceurl, verify=False)
if snapresult.status_code == 200 or snapresult.status_code == 201:
logging.info(
"GET request at by "
+ api_session[1]
+ " at "
+ uri
+ resourceurl
+ " successful"
)
snapresult = json.loads(snapresult.content.decode(encoding="UTF-8"))
elif snapresult.status_code != 200 or snapresult.status_code != 201:
logging.info(
"GET request at by "
+ api_session[1]
+ " at "
+ uri
+ resourceurl
+ " unsuccessful"
)
print(
"\nIssue encountered with retrieving snapshots at "
+ uri
+ " Please try again.\n"
)
return 0
snapids = []
if len(snapresult["snapshots"]) == 0:
print("\nThere are no snapshots!")
return 0
else:
lis = ["SIQ", "FSAnalyze", "Index"]
for snapshot in snapresult["snapshots"]:
if (
snapshot["has_locks"] is False
and any(substring in snapshot["name"] for substring in lis) is False
):
snapids.append(snapshot["id"])
return snapids
def locksnapshots(api_session, uri, days, snapids):
"""This function will lock a snapshot or list of snapshots"""
expirydate = datetoepoch(int(days))
for snap in snapids:
resourceurl = "/platform/12/snapshot/snapshots/" + str(snap) + "/locks"
print("\nProceeding with creation of snapshot lock...\n")
data = json.dumps(
{
"comment": "This lock was created by snapautolock.",
"expires": expirydate,
}
)
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"))
lockid = response["id"]
print(
"\nLock ID "
+ str(lockid)
+ " created "
+ "on snap ID "
+ str(snap)
+ "!\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!")
return 0
def main():
"""This function is the main function that runs the snaplock"""
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
parser = argparse.ArgumentParser(
description="Lock all snapshots for provided timeframe"
)
parser.add_argument("ip", help="Enter a valid IP address")
parser.add_argument(
"days",
help="Type a number of days for the snapshots to be locked.",
)
args = parser.parse_args()
ip = args.ip
validateinput(ip)
days = args.days
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
filename="isi_tools.log",
level=logging.INFO,
)
port = 8080
uri = "https://" + str(ip) + ":" + str(port)
api_session = getsession(uri)
snapids = getsnapshots(api_session, uri)
if not snapids:
print(
"No non-system derived snapshots were found that did not have a lock!\n\n"
)
else:
locksnapshots(api_session, uri, days, snapids)
if __name__ == "__main__":
main()