forked from Rhilip/AutoRclone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
masshare.py
77 lines (63 loc) · 2.82 KB
/
masshare.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
from google.oauth2.service_account import Credentials
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
from googleapiclient.discovery import build
from argparse import ArgumentParser
from os.path import exists
from json import loads
from glob import glob
import pickle
successful = []
def _is_success(id, resp, exception):
global successful
if exception is None:
successful.append(resp['emailAddress'])
def masshare(drive_id=None, path='accounts', token='token.pickle', credentials='credentials.json'):
global successful
SCOPES = ["https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/iam"]
creds = None
if exists(token):
with open(token, 'rb') as t:
creds = pickle.load(t)
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
credentials, SCOPES)
creds = flow.run_local_server(port=0)
with open(token, 'wb') as t:
pickle.dump(creds, t)
drive = build("drive", "v3", credentials=creds)
accounts_to_add = []
print('Fetching emails')
for i in glob('%s/*.json' % path):
accounts_to_add.append(loads(open(i, 'r').read())['client_email'])
while len(successful) < len(accounts_to_add):
print('Preparing %d members' % (len(accounts_to_add) - len(successful)))
batch = drive.new_batch_http_request(callback=_is_success)
for i in accounts_to_add:
if i not in successful:
batch.add(drive.permissions().create(fileId=drive_id, fields='emailAddress', supportsAllDrives=True, body={
"role": "fileOrganizer",
"type": "user",
"emailAddress": i
}))
print('Adding')
batch.execute()
if __name__ == '__main__':
parse = ArgumentParser(description='A tool to add service accounts to a shared drive from a folder containing credential files.')
parse.add_argument('--path', '-p', default='accounts', help='Specify an alternative path to the service accounts folder.')
parse.add_argument('--token', default='token.pickle', help='Specify the pickle token file path.')
parse.add_argument('--credentials', default='credentials.json', help='Specify the credentials file path.')
parsereq = parse.add_argument_group('required arguments')
parsereq.add_argument('--drive-id', '-d', help='The ID of the Shared Drive.', required=True)
args = parse.parse_args()
masshare(
drive_id=args.drive_id,
path=args.path,
token=args.token,
credentials=args.credentials
)