-
Notifications
You must be signed in to change notification settings - Fork 52
/
GetFilePermissionsWithPaths.py
executable file
·92 lines (84 loc) · 4.01 KB
/
GetFilePermissionsWithPaths.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
#!/usr/bin/env python3
"""
# Purpose: For a Google Drive User, show drive file permissions and file paths
# Note: This script can use GAM7 or Advanced GAM:
# https://github.com/GAM-team/GAM
# https://github.com/taers232c/GAMADV-XTD3
# Customize: Set INCLUDE_OWNER
# Python: Use python or python3 below as appropriate to your system; verify that you have version 3
# $ python -V or python3 -V
# Python 3.x.y
# Usage:
# 1: Get ACLs/paths for the user's files
# To select a folder as a starting point rather than My Drive, add: select <DriveFileID>
# To have that folder included in the output, add: showparent
# $ gam redirect csv ./filelistperms.csv user [email protected] print filelist fields id,name,mimetype,permissions,owners.emailaddress filepath showownedby any
# 2: From that list of ACLs, output a CSV file that lists the shared file permissions; the file paths are included on each line
# $ python3 GetFilePermissionsWithPaths.py filelistperms.csv deleteperms.csv
# 3: Inspect deleteperms.csv, verify that it makes sense and then proceed if desired
# 4: If desired, delete the ACLs
# $ gam csv ./deleteperms.csv gam user "~Owner" delete drivefileacl "~driveFileId" "~permissionId"
"""
import csv
import re
import sys
FILE_NAME = 'name'
ALT_FILE_NAME = 'title'
QUOTE_CHAR = '"' # Adjust as needed
LINE_TERMINATOR = '\n' # On Windows, you probably want '\r\n'
PERMISSIONS_N_TYPE = re.compile(r"permissions.(\d+).type")
if (len(sys.argv) > 1) and (sys.argv[1] != '-'):
inputFile = open(sys.argv[1], 'r', encoding='utf-8')
else:
inputFile = sys.stdin
inputCSV = csv.DictReader(inputFile, quotechar=QUOTE_CHAR)
inputFieldNames = inputCSV.fieldnames
pathFieldNames = [field for field in inputFieldNames if field.startswith('path')]
if (len(sys.argv) > 2) and (sys.argv[2] != '-'):
outputFile = open(sys.argv[2], 'w', encoding='utf-8', newline='')
else:
outputFile = sys.stdout
outputFieldNames = ['User', 'Owner', 'driveFileId', 'driveFileTitle', 'mimeType', 'permissionId',
'role', 'type', 'emailAddress', 'domain', 'allowFileDiscovery']+pathFieldNames
outputCSV = csv.DictWriter(outputFile, outputFieldNames,
lineterminator=LINE_TERMINATOR, quotechar=QUOTE_CHAR)
outputCSV.writeheader()
for row in inputCSV:
prow = {}
for field in pathFieldNames:
prow[field] = row[field]
for k, v in iter(row.items()):
mg = PERMISSIONS_N_TYPE.match(k)
if mg and v:
permissions_N = mg.group(1)
if v in ['user', 'group']:
allowFileDiscovery = ''
emailAddress = row[f'permissions.{permissions_N}.emailAddress'].lower()
domain = emailAddress[emailAddress.find('@')+1:]
elif v == 'domain':
allowFileDiscovery = row.get(f'permissions.{permissions_N}.allowFileDiscovery',
str(row.get(f'permissions.{permissions_N}.withLink') == 'False'))
emailAddress = ''
domain = row[f'permissions.{permissions_N}.domain'].lower()
else: #anyone
allowFileDiscovery = row.get(f'permissions.{permissions_N}.allowFileDiscovery',
str(row.get(f'permissions.{permissions_N}.withLink') == 'False'))
emailAddress = ''
domain = ''
orow = {'User': row['Owner'],
'Owner': row['owners.0.emailAddress'],
'driveFileId': row['id'],
'driveFileTitle': row.get(FILE_NAME, row.get(ALT_FILE_NAME, 'Unknown')),
'mimeType': row.get('mimeType', ''),
'permissionId': f'id:{row[f"permissions.{permissions_N}.id"]}',
'role': row[f'permissions.{permissions_N}.role'],
'type': v,
'emailAddress': emailAddress,
'domain': domain,
'allowFileDiscovery': allowFileDiscovery}
orow.update(prow)
outputCSV.writerow(orow)
if inputFile != sys.stdin:
inputFile.close()
if outputFile != sys.stdout:
outputFile.close()