forked from dtsvetkov1/Google-Drive-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload_to_drive.py
391 lines (316 loc) · 14.3 KB
/
upload_to_drive.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
#!/usr/bin/python3
"""Example cooment to make pylint stop giving me errors."""
import datetime
import hashlib
import mimetypes
import time
import os
import httplib2
from apiclient import discovery
from oauth2client import client
from oauth2client import tools
# from oauth2client.tools import run
from oauth2client.file import Storage
from apiclient.http import MediaFileUpload
# Import our folder uploading script
# import initial_upload
# If modifying these scopes, delete your previously saved credentials
# at ~/.credentials/drive-python-quickstart.json
SCOPES = ['https://www.googleapis.com/auth/drive.metadata.readonly',
'https://www.googleapis.com/auth/drive.file',
'https://www.googleapis.com/auth/drive']
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Drive Sync'
# Declare full path to folder and folder name
FULL_PATH = r'PUT YOUR FULL FOLDER PATH HERE'
DIR_NAME = 'PUT YOUR FOLDER NAME HERE'
# Or simply
# DIR_NAME = FULL_PATH.split('/')[-1]
# Don't really need it here
GOOGLE_MIME_TYPES = {
'application/vnd.google-apps.document':
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
# 'application/vnd.oasis.opendocument.text',
'application/vnd.google-apps.spreadsheet':
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
# 'application/vnd.oasis.opendocument.spreadsheet',
'application/vnd.google-apps.presentation':
'application/vnd.openxmlformats-officedocument.presentationml.presentation'
# 'application/vnd.oasis.opendocument.presentation'
}
# 'application/vnd.google-apps.folder': '',
# 'application/vnd.google-apps.form': 'application/pdf',
# 'application/vnd.google-apps.fusiontable': '',
# 'application/vnd.google-apps.map': 'application/pdf',
# 'application/vnd.google-apps.photo': 'image/jpeg',
# 'application/vnd.google-apps.file': '',
# 'application/vnd.google-apps.sites': '',
# 'application/vnd.google-apps.unknown': '',
# 'application/vnd.google-apps.video': '',
# 'application/vnd.google-apps.audio': '',
# 'application/vnd.google-apps.drive-sdk': ''
# 'application/octet-stream': 'text/plain'
def folder_upload(service):
'''Uploads folder and all it's content (if it doesnt exists)
in root folder.
Args:
items: List of folders in root path on Google Drive.
service: Google Drive service instance.
Returns:
Dictionary, where keys are folder's names
and values are id's of these folders.
'''
parents_id = {}
for root, _, files in os.walk(FULL_PATH, topdown=True):
last_dir = root.split('/')[-1]
pre_last_dir = root.split('/')[-2]
if pre_last_dir not in parents_id.keys():
pre_last_dir = []
else:
pre_last_dir = parents_id[pre_last_dir]
folder_metadata = {'name': last_dir,
'parents': [pre_last_dir],
'mimeType': 'application/vnd.google-apps.folder'}
create_folder = service.files().create(body=folder_metadata,
fields='id').execute()
folder_id = create_folder.get('id', [])
for name in files:
file_metadata = {'name': name, 'parents': [folder_id]}
media = MediaFileUpload(
os.path.join(root, name),
mimetype=mimetypes.MimeTypes().guess_type(name)[0])
service.files().create(body=file_metadata,
media_body=media,
fields='id').execute()
parents_id[last_dir] = folder_id
return parents_id
def check_upload(service):
"""Checks if folder is already uploaded,
and if it's not, uploads it.
Args:
service: Google Drive service instance.
Returns:
ID of uploaded folder, full path to this folder on computer.
"""
results = service.files().list(
pageSize=100,
q="'root' in parents and trashed != True and \
mimeType='application/vnd.google-apps.folder'").execute()
items = results.get('files', [])
# Check if folder exists, and then create it or get this folder's id.
if DIR_NAME in [item['name'] for item in items]:
folder_id = [item['id']for item in items
if item['name'] == DIR_NAME][0]
else:
parents_id = folder_upload(service)
folder_id = parents_id[DIR_NAME]
return folder_id, FULL_PATH
def get_credentials():
"""Gets valid user credentials from storage.
If nothing has been stored, or if the stored credentials are invalid,
the OAuth2 flow is completed to obtain the new credentials.
Returns:
Credentials, the obtained credential.
"""
home_dir = os.path.expanduser('~')
credential_dir = os.path.join(home_dir, '.credentials')
if not os.path.exists(credential_dir):
os.makedirs(credential_dir)
credential_path = os.path.join(credential_dir,
'drive-python-sync.json')
store = Storage(credential_path)
credentials = store.get()
if not credentials or credentials.invalid:
flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
flow.user_agent = APPLICATION_NAME
# if flags:
credentials = tools.run_flow(flow, store, flags=None)
# else: # Needed only for compatibility with Python 2.6
# flags = None
# credentials = tools.run_flow(flow, store, flags)
print('Storing credentials to ', credential_path)
return credentials
def get_tree(folder_name, tree_list, root, parents_id, service):
"""Gets folder tree relative paths.
Recursively gets through subfolders, remembers their names ad ID's.
Args:
folder_name: Name of folder, initially
name of parent folder string.
folder_id: ID of folder, initially ID of parent folder.
tree_list: List of relative folder paths, initially
empy list.
root: Current relative folder path, initially empty string.
parents_id: Dictionary with pairs of {key:value} like
{folder's name: folder's Drive ID}, initially empty dict.
service: Google Drive service instance.
Returns:
List of folder tree relative folder paths.
"""
folder_id = parents_id[folder_name]
results = service.files().list(
pageSize=1000,
q=("%r in parents and \
mimeType = 'application/vnd.google-apps.folder'and \
trashed != True" % folder_id)).execute()
items = results.get('files', [])
root += folder_name + os.path.sep
for item in items:
parents_id[item['name']] = item['id']
tree_list.append(root + item['name'])
folder_id = [i['id'] for i in items
if i['name'] == item['name']][0]
folder_name = item['name']
get_tree(folder_name, tree_list,
root, parents_id, service)
def by_lines(input_str):
"""Helps Sort items by the number of slashes in it.
Returns:
Number of slashes in string.
"""
return input_str.count(os.path.sep)
def main():
"""Syncronizes computer folder with Google Drive folder.
Checks files if they exist, uploads new files and subfolders,
deletes old files from Google Drive and refreshes existing stuff.
"""
credentials = get_credentials()
http = credentials.authorize(httplib2.Http())
service = discovery.build('drive', 'v3', http=http)
# Get id of Google Drive folder and it's path (from other script)
# folder_id, full_path = initial_upload.check_upload(service)
folder_id, full_path = check_upload(service)
folder_name = full_path.split(os.path.sep)[-1]
tree_list = []
root = ''
parents_id = {}
parents_id[folder_name] = folder_id
get_tree(folder_name, tree_list, root, parents_id, service)
os_tree_list = []
root_len = len(full_path.split(os.path.sep)[0:-2])
# Get list of folders three paths on computer
for root, dirs, files in os.walk(full_path, topdown=True):
for name in dirs:
var_path = (os.path.sep).join(
root.split(os.path.sep)[root_len + 1:])
os_tree_list.append(os.path.join(var_path, name))
# old folders on drive
remove_folders = list(set(tree_list).difference(set(os_tree_list)))
# new folders on drive, which you dont have(i suppose hehe)
upload_folders = list(set(os_tree_list).difference(set(tree_list)))
# foldes that match
exact_folders = list(set(os_tree_list).intersection(set(tree_list)))
# Add starting directory
exact_folders.append(folder_name)
# Sort uploadable folders
# so now in can be upload from top to down of tree
upload_folders = sorted(upload_folders, key=by_lines)
# Here we upload new (abcent on Drive) folders
for folder_dir in upload_folders:
var = os.path.join(full_path.split(os.path.sep)[0:-1]) + os.path.sep
variable = var + folder_dir
last_dir = folder_dir.split(os.path.sep)[-1]
pre_last_dir = folder_dir.split(os.path.sep)[-2]
files = [f for f in os.listdir(variable)
if os.path.isfile(os.path.join(variable, f))]
folder_metadata = {'name': last_dir,
'parents': [parents_id[pre_last_dir]],
'mimeType': 'application/vnd.google-apps.folder'}
create_folder = service.files().create(
body=folder_metadata, fields='id').execute()
folder_id = create_folder.get('id', [])
parents_id[last_dir] = folder_id
for os_file in files:
some_metadata = {'name': os_file, 'parents': [folder_id]}
os_file_mimetype = mimetypes.MimeTypes().guess_type(
os.path.join(variable, os_file))[0]
media = MediaFileUpload(os.path.join(variable, os_file),
mimetype=os_file_mimetype)
upload_this = service.files().create(body=some_metadata,
media_body=media,
fields='id').execute()
upload_this = upload_this.get('id', [])
# Check files in existed folders and replace them
# with newer versions if needed
for folder_dir in exact_folders:
var = (os.path.sep).join(full_path.split(
os.path.sep)[0:-1]) + os.path.sep
variable = var + folder_dir
last_dir = folder_dir.split(os.path.sep)[-1]
# print(last_dir, folder_dir)
os_files = [f for f in os.listdir(variable)
if os.path.isfile(os.path.join(variable, f))]
results = service.files().list(
pageSize=1000, q=('%r in parents and \
mimeType!="application/vnd.google-apps.folder" and \
trashed != True' % parents_id[last_dir]),
fields="files(id, name, mimeType, \
modifiedTime, md5Checksum)").execute()
items = results.get('files', [])
refresh_files = [f for f in items if f['name'] in os_files]
remove_files = [f for f in items if f['name'] not in os_files]
upload_files = [f for f in os_files
if f not in [j['name']for j in items]]
# Check files that exist both on Drive and on PC
for drive_file in refresh_files:
file_dir = os.path.join(variable, drive_file['name'])
file_time = os.path.getmtime(file_dir)
mtime = [f['modifiedTime']
for f in items if f['name'] == drive_file['name']][0]
mtime = datetime.datetime.strptime(
mtime[:-2], "%Y-%m-%dT%H:%M:%S.%f")
drive_time = time.mktime(mtime.timetuple())
# print(drive_file['name'])
# if file['mimeType'] in GOOGLE_MIME_TYPES.keys():
# print(file['name'], file['mimeType'])
# print()
os_file_md5 = hashlib.md5(open(file_dir, 'rb').read()).hexdigest()
if 'md5Checksum' in drive_file.keys():
# print(1, file['md5Checksum'])
drive_md5 = drive_file['md5Checksum']
# print(2, os_file_md5)
else:
# print('No hash')
drive_md5 = None
# print(drive_md5 != os_file_md5)
if (file_time > drive_time) or (drive_md5 != os_file_md5):
file_id = [f['id'] for f in items
if f['name'] == drive_file['name']][0]
file_mime = [f['mimeType'] for f in items
if f['name'] == drive_file['name']][0]
# File's new content.
# file_mime = mimetypes.MimeTypes().guess_type(file_dir)[0]
file_metadata = {'name': drive_file['name'],
'parents': [parents_id[last_dir]]}
# media_body = MediaFileUpload(file_dir, mimetype=filemime)
media_body = MediaFileUpload(file_dir, mimetype=file_mime)
# print('I am HERE, ', )
service.files().update(fileId=file_id,
media_body=media_body,
fields='id').execute()
# Remove old files from Drive
for drive_file in remove_files:
file_id = [f['id'] for f in items
if f['name'] == drive_file['name']][0]
service.files().delete(fileId=file_id).execute()
# Upload new files on Drive
for os_file in upload_files:
file_dir = os.path.join(variable, os_file)
# File's new content.
filemime = mimetypes.MimeTypes().guess_type(file_dir)[0]
file_metadata = {'name': os_file,
'parents': [parents_id[last_dir]]}
media_body = MediaFileUpload(file_dir, mimetype=filemime)
service.files().create(body=file_metadata,
media_body=media_body,
fields='id').execute()
remove_folders = sorted(remove_folders, key=by_lines, reverse=True)
# Delete old folders from Drive
for folder_dir in remove_folders:
var = (os.path.sep).join(full_path.split(
os.path.sep)[0:-1]) + os.path.sep
variable = var + folder_dir
last_dir = folder_dir.split('/')[-1]
folder_id = parents_id[last_dir]
service.files().delete(fileId=folder_id).execute()
if __name__ == '__main__':
main()