forked from stewartmcgown/uds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.py
231 lines (179 loc) · 7.11 KB
/
api.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
import sys
import time
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
from httplib2 import Http
from oauth2client import file, client, tools
from custom_exceptions import FileNotUDSError
from file_parts import UDSFile
class GoogleAPI:
ERROR_OUTPUT = "[ERROR]"
CLIENT_SECRET = 'client_secret.json'
def __init__(self):
self.reauth()
def reauth(self):
# Set up the Drive v3 API
SCOPES = ["https://www.googleapis.com/auth/drive"]
store = file.Storage('credentials.json')
credentials = store.get()
if not credentials or credentials.invalid:
try:
flow = client.flow_from_clientsecrets(GoogleAPI.CLIENT_SECRET, SCOPES)
credentials = tools.run_flow(flow, store)
except ConnectionRefusedError:
print("{!s} Make sure you've saved your OAuth credentials as {!s}".format(
GoogleAPI.ERROR_OUTPUT, GoogleAPI.CLIENT_SECRET))
sys.exit(
"If you've already done that, then run uds.py without any arguments first.")
self.service = build('drive', 'v3', http=credentials.authorize(Http()))
return self.service
def get_base_folder(self):
"""Locate the base UDS folder
Returns:
file: the file
:return:
"""
results = self.service.files().list(
q="properties has {key='udsRoot' and value='true'} and trashed=false",
pageSize=1,
fields="nextPageToken, files(id, name, properties)").execute()
folders = results.get('files', [])
if not folders:
return self.create_root_folder()
elif len(folders) == 1:
return folders[0]
else:
print("{!s} Multiple UDS Roots found.".format(GoogleAPI.ERROR_OUTPUT))
def create_root_folder(self):
"""Creates the base UDS folder and hides it from the user's drive
Returns:
str: id of the new folder
"""
root_meta = {
'name': "UDS Root",
'mimeType': 'application/vnd.google-apps.folder',
'properties': {'udsRoot': 'true'},
'parents': []
}
root_folder = self.service.files().create(body=root_meta,
fields='id').execute()
# Hide this folder
self.hide_file(root_folder['id'])
return root_folder
def create_media_folder(self, media):
"""Create a UDS media folder
Args:
media (UDSFile): the file to create for
"""
file_metadata = {
'name': media.name,
'mimeType': 'application/vnd.google-apps.folder',
'properties': {
'uds': 'true',
'size': media.size,
'size_numeric': media.size_numeric,
'encoded_size': media.encoded_size,
'md5': media.md5
},
'parents': media.parents
}
file = self.service.files().create(body=file_metadata,
fields='id').execute()
return file
def list_files(self, query=None):
"""List all UDS files
Search the user's drive for all UDS files. Optionally, give a query parameter to
return only files matching that.
Args:
query (str): Search for this query
Returns:
list: containing files matching the search
"""
q = "properties has {key='uds' and value='true'} and trashed=false"
if query is not None:
q += " and name contains '%s'" % query
# Call the Drive v3 API
results = self.service.files().list(
q=q,
pageSize=1000,
fields="nextPageToken, files(id, name, properties, mimeType)").execute()
items = results.get('files', [])
files = []
for f in items:
props = f.get("properties", {})
files.append(UDSFile(
name=f.get("name"),
base64=None,
mime=f.get("mimeType"),
size=props.get("size"),
size_numeric=props.get("size_numeric"),
encoded_size=props.get("encoded_size"),
id=f.get("id"),
shared=props.get("shared"),
md5=f.get("md5Checksum")
))
return files
def recursive_list_folder(self, parent_id, token=None):
"""Recursively list a folder
Creates a flat array of a folders contents, with all children being present on the
top level.
Args:
parent_id (str): ID of the root node to list from
token (str, optional): Token to use for starting page
"""
all_parts = []
while True:
page_of_files = self.service.files().list(
q="parents in {!r}".format(parent_id),
pageSize=100,
pageToken=token,
fields="nextPageToken, files(id, name, properties)").execute()
all_parts += page_of_files.get("files", [])
token = page_of_files.get("nextPageToken")
if token is None:
break
return all_parts
def delete_file(self, id):
"""Delete a UDS file
Attempts to delete a file at a given ID.
Args:
id (str): ID of the file
Raises:
FileNotUDSError: If the file is found, but is not of type UDS
"""
# Ensure the file is a UDS one
try:
info = self.service.files().get(fileId=id, fields="*").execute()
if info.get("properties").get("uds"):
return self.service.files().delete(fileId=id).execute()
else:
raise FileNotUDSError()
except Exception:
raise FileNotFoundError()
def get_file(self, id):
return self.service.files().get(fileId=id, fields="*").execute()
def export_media(self, _id):
return self.service.files().export_media(fileId=_id, mimeType='text/plain')
def upload_single_file(self, media_file, file_metadata):
"""Uploads a single file to the Drive
Args:
media_file (MediaBody): The file to upload
file_metadata (dict): metadata for the file
"""
while True:
try:
_file = self.service.files().create(body=file_metadata,
media_body=media_file,
fields='id').execute()
break
except HttpError as e:
print('Failed to upload chunk {}. Retrying... '
.format(file_metadata.get("properties", {}).get("part")))
time.sleep(1)
return _file, file_metadata
def hide_file(self, id):
"""Hide a given file
Removes the parents of the file so it no longer shows up in the user's drive.
"""
self.service.files().update(fileId=id,
removeParents='root').execute()