forked from rubrikinc/rubrik-scripts-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathls_snapshot.py
executable file
·78 lines (67 loc) · 3.04 KB
/
ls_snapshot.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
#!/usr/bin/python
#########################################################################
# Description #
# Uses the API to view what files and directories exist in a snapshot. #
# Can be performed recursively using the -r switch. #
# Recursive directory lookups will be slow because each lookup requires #
# its own API GET. #
#########################################################################
import argparse
import rubrik_cdm
import threading
import Queue
import urllib3
urllib3.disable_warnings()
parser = argparse.ArgumentParser(description='List files at location in snapshot via API', add_help=False)
parser.add_argument('snapshot', type=str, metavar='SNAP', help='Snapshot to list from')
parser.add_argument('directory', type=str, metavar='DIR', help='Directory to list the contents of')
parser.add_argument('-r', '--recursive', help='List files and directories recursively', action='store_true', default=False)
parser.add_argument('-h', '--hostname', help='Hostname of Rubrik Cluster', action='store', default='localhost')
parser.add_argument('-t', '--token', type=str, help='Login token. Use either login token or username/password', action='store', default='')
parser.add_argument('-u', '--username', type=str, help='Username. Use either login token or username/password', action='store', default='')
parser.add_argument('-p', '--password', type=str, help='Password. Use either login token or username/password', action='store', default='')
parser.add_argument('--threads', type=int, help='Number of threads to use for recursive listing; default 64. Do not exceed 300', action='store', default=64)
parser.add_argument('--help', action='help', help='show this help message and exit')
args = parser.parse_args()
host = args.hostname
if args.token:
token = args.token
r = rubrik_cdm.Connect(host,api_token=token)
else:
user = args.username
passwd = args.password
r = rubrik_cdm.Connect(host,user,passwd)
lsdir = args.directory
snap = args.snapshot
threads = args.threads
l = list()
q = Queue.Queue()
def worker():
while True:
i = q.get()
ls(i[0], i[1], i[2])
q.task_done()
def ls(snap, path, offset):
params = {"snapshot_id":snap, "path":path, "offset":offset}
response = r.get("internal", "/browse", authentication=True, params=params)
if response[u'hasMore']:
q.put([snap, path, (offset + 1000)])
data = response[u'data']
if len(data) == 0:
l.append(path + '/')
else:
for i in data:
filemode = i[u'fileMode']
newpath = path + ('' if path == '/' else '/') + i[u'filename']
if args.recursive and filemode == u'directory':
q.put([snap, newpath, 0])
else:
l.append(newpath + ('/' if filemode == u'directory' else ''))
ls(snap, lsdir, 0)
for i in range(threads):
t = threading.Thread(target=worker)
t.daemon = True
t.start()
q.join()
for i in sorted(l):
print(i)