-
-
Notifications
You must be signed in to change notification settings - Fork 868
/
Copy pathgcloud.py
377 lines (316 loc) · 13.2 KB
/
gcloud.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
import gzip
import io
import mimetypes
from datetime import timedelta
from tempfile import SpooledTemporaryFile
from django.core.exceptions import ImproperlyConfigured
from django.core.exceptions import SuspiciousOperation
from django.core.files.base import File
from django.utils import timezone
from django.utils.deconstruct import deconstructible
from storages.base import BaseStorage
from storages.compress import CompressedFileMixin
from storages.utils import check_location
from storages.utils import clean_name
from storages.utils import get_available_overwrite_name
from storages.utils import safe_join
from storages.utils import setting
from storages.utils import to_bytes
try:
from google import auth
from google.auth.credentials import TokenState
from google.auth.transport import requests
from google.cloud.exceptions import NotFound
from google.cloud.storage import Blob
from google.cloud.storage import Client
from google.cloud.storage.blob import _quote
from google.cloud.storage.retry import DEFAULT_RETRY
except ImportError:
raise ImproperlyConfigured(
"Could not load Google Cloud Storage bindings.\n"
"See https://github.com/GoogleCloudPlatform/gcloud-python"
)
CONTENT_ENCODING = "content_encoding"
CONTENT_TYPE = "content_type"
class GoogleCloudFile(CompressedFileMixin, File):
def __init__(self, name, mode, storage):
self.name = name
self.mime_type, self.mime_encoding = mimetypes.guess_type(name)
self._mode = mode
self._storage = storage
self.blob = storage.bucket.get_blob(name, chunk_size=storage.blob_chunk_size)
if not self.blob and "w" in mode:
self.blob = Blob(
self.name, storage.bucket, chunk_size=storage.blob_chunk_size
)
self._file = None
self._is_dirty = False
@property
def size(self):
return self.blob.size
def _get_file(self):
if self._file is None:
self._file = SpooledTemporaryFile(
max_size=self._storage.max_memory_size,
suffix=".GSStorageFile",
dir=setting("FILE_UPLOAD_TEMP_DIR"),
)
if "r" in self._mode:
self._is_dirty = False
# This automatically decompresses the file
self.blob.download_to_file(self._file, checksum="crc32c")
self._file.seek(0)
return self._file
def _set_file(self, value):
self._file = value
file = property(_get_file, _set_file)
def read(self, num_bytes=None):
if "r" not in self._mode:
raise AttributeError("File was not opened in read mode.")
if num_bytes is None:
num_bytes = -1
return super().read(num_bytes)
def write(self, content):
if "w" not in self._mode:
raise AttributeError("File was not opened in write mode.")
self._is_dirty = True
return super().write(to_bytes(content))
def close(self):
if self._file is not None:
if self._is_dirty:
blob_params = self._storage.get_object_parameters(self.name)
self.blob.upload_from_file(
self.file,
rewind=True,
content_type=self.mime_type,
retry=DEFAULT_RETRY,
predefined_acl=blob_params.get("acl", self._storage.default_acl),
)
self._file.close()
self._file = None
@deconstructible
class GoogleCloudStorage(BaseStorage):
def __init__(self, **settings):
super().__init__(**settings)
check_location(self)
self._bucket = None
self._client = None
def get_default_settings(self):
return {
"project_id": setting("GS_PROJECT_ID"),
"credentials": setting("GS_CREDENTIALS"),
"bucket_name": setting("GS_BUCKET_NAME"),
"custom_endpoint": setting("GS_CUSTOM_ENDPOINT", None),
"location": setting("GS_LOCATION", ""),
"default_acl": setting("GS_DEFAULT_ACL"),
"querystring_auth": setting("GS_QUERYSTRING_AUTH", True),
"expiration": setting("GS_EXPIRATION", timedelta(seconds=86400)),
"gzip": setting("GS_IS_GZIPPED", False),
"gzip_content_types": setting(
"GZIP_CONTENT_TYPES",
(
"text/css",
"text/javascript",
"application/javascript",
"application/x-javascript",
"image/svg+xml",
),
),
"file_overwrite": setting("GS_FILE_OVERWRITE", True),
"object_parameters": setting("GS_OBJECT_PARAMETERS", {}),
# The max amount of memory a returned file can take up before being
# rolled over into a temporary file on disk. Default is 0: Do not
# roll over.
"max_memory_size": setting("GS_MAX_MEMORY_SIZE", 0),
"blob_chunk_size": setting("GS_BLOB_CHUNK_SIZE"),
# use in cases where service account key isn't available in env
# in such cases, sign blob api is REQUIRED for signing data
"iam_sign_blob": setting("GS_IAM_SIGN_BLOB", False),
"sa_email": setting("GS_SA_EMAIL"),
}
@property
def client(self):
if self._client is None:
if self.iam_sign_blob and not self.credentials:
self.credentials, self.project_id = auth.default(
scopes=["https://www.googleapis.com/auth/cloud-platform"]
)
self._client = Client(project=self.project_id, credentials=self.credentials)
return self._client
@property
def bucket(self):
if self._bucket is None:
self._bucket = self.client.bucket(self.bucket_name)
return self._bucket
def _normalize_name(self, name):
"""
Normalizes the name so that paths like /path/to/ignored/../something.txt
and ./file.txt work. Note that clean_name adds ./ to some paths so
they need to be fixed here. We check to make sure that the path pointed
to is not outside the directory specified by the LOCATION setting.
"""
try:
return safe_join(self.location, name)
except ValueError:
raise SuspiciousOperation("Attempted access to '%s' denied." % name)
def _open(self, name, mode="rb"):
name = self._normalize_name(clean_name(name))
file_object = GoogleCloudFile(name, mode, self)
if not file_object.blob:
raise FileNotFoundError("File does not exist: %s" % name)
return file_object
def _compress_content(self, content):
content.seek(0)
zbuf = io.BytesIO()
with gzip.GzipFile(mode="wb", fileobj=zbuf, mtime=0.0) as zfile:
zfile.write(to_bytes(content.read()))
zbuf.seek(0)
return zbuf
def _save(self, name, content):
cleaned_name = clean_name(name)
name = self._normalize_name(cleaned_name)
content.name = cleaned_name
file_object = GoogleCloudFile(name, "rw", self)
blob_params = self.get_object_parameters(name)
if file_object.mime_encoding and CONTENT_ENCODING not in blob_params:
blob_params[CONTENT_ENCODING] = file_object.mime_encoding
upload_params = {}
upload_params["predefined_acl"] = blob_params.pop("acl", self.default_acl)
upload_params[CONTENT_TYPE] = blob_params.pop(
CONTENT_TYPE, file_object.mime_type
)
if (
self.gzip
and upload_params[CONTENT_TYPE] in self.gzip_content_types
and CONTENT_ENCODING not in blob_params
):
content = self._compress_content(content)
blob_params[CONTENT_ENCODING] = "gzip"
for prop, val in blob_params.items():
setattr(file_object.blob, prop, val)
file_object.blob.upload_from_file(
content,
rewind=True,
retry=DEFAULT_RETRY,
size=getattr(content, "size", None),
**upload_params,
)
return cleaned_name
def get_object_parameters(self, name):
"""Override this to return a dictionary of overwritable blob-property to value.
Returns GS_OBJECT_PARAMETERS by default. See the docs for all possible options.
"""
object_parameters = self.object_parameters.copy()
return object_parameters
def delete(self, name):
name = self._normalize_name(clean_name(name))
try:
self.bucket.delete_blob(name, retry=DEFAULT_RETRY)
except NotFound:
pass
def exists(self, name):
if not name: # root element aka the bucket
try:
self.client.get_bucket(self.bucket)
return True
except NotFound:
return False
name = self._normalize_name(clean_name(name))
return bool(self.bucket.get_blob(name))
def listdir(self, name):
name = self._normalize_name(clean_name(name))
# For bucket.list_blobs and logic below name needs to end in /
# but for the root path "" we leave it as an empty string
if name and not name.endswith("/"):
name += "/"
iterator = self.bucket.list_blobs(prefix=name, delimiter="/")
blobs = list(iterator)
prefixes = iterator.prefixes
files = []
dirs = []
for blob in blobs:
parts = blob.name.split("/")
files.append(parts[-1])
for folder_path in prefixes:
parts = folder_path.split("/")
dirs.append(parts[-2])
return list(dirs), files
def _get_blob(self, name):
# Wrap google.cloud.storage's blob to raise if the file doesn't exist
blob = self.bucket.get_blob(name)
if blob is None:
raise NotFound("File does not exist: {}".format(name))
return blob
def size(self, name):
name = self._normalize_name(clean_name(name))
blob = self._get_blob(name)
return blob.size
def get_modified_time(self, name):
name = self._normalize_name(clean_name(name))
blob = self._get_blob(name)
updated = blob.updated
return updated if setting("USE_TZ") else timezone.make_naive(updated)
def get_created_time(self, name):
"""
Return the creation time (as a datetime) of the file specified by name.
The datetime will be timezone-aware if USE_TZ=True.
"""
name = self._normalize_name(clean_name(name))
blob = self._get_blob(name)
created = blob.time_created
return created if setting("USE_TZ") else timezone.make_naive(created)
def url(self, name, parameters=None):
"""
Return public URL or a signed URL for the Blob.
To keep things snappy, the existence of blobs for public URLs is not checked.
"""
name = self._normalize_name(clean_name(name))
blob = self.bucket.blob(name)
blob_params = self.get_object_parameters(name)
no_signed_url = (
blob_params.get("acl", self.default_acl) == "publicRead"
or not self.querystring_auth
)
if not self.custom_endpoint and no_signed_url:
return blob.public_url
elif no_signed_url:
return "{storage_base_url}/{quoted_name}".format(
storage_base_url=self.custom_endpoint,
quoted_name=_quote(name, safe=b"/~"),
)
else:
default_params = {
"bucket_bound_hostname": self.custom_endpoint,
"expiration": self.expiration,
"version": "v4",
}
params = parameters or {}
if self.iam_sign_blob:
service_account_email, access_token = self._get_iam_sign_blob_params()
default_params["service_account_email"] = service_account_email
default_params["access_token"] = access_token
for key, value in default_params.items():
if value and key not in params:
params[key] = value
return blob.generate_signed_url(**params)
def get_available_name(self, name, max_length=None):
name = clean_name(name)
if self.file_overwrite:
return get_available_overwrite_name(name, max_length)
return super().get_available_name(name, max_length)
def _get_iam_sign_blob_params(self):
if self.credentials.token_state != TokenState.FRESH:
self.credentials.refresh(requests.Request())
try:
service_account_email = self.credentials.service_account_email
except AttributeError:
service_account_email = None
# sa_email has final say of service_account used to sign url if provided
if self.sa_email:
service_account_email = self.sa_email
if not service_account_email:
raise AttributeError(
"Sign Blob API requires service_account_email to be available "
"through ADC or setting `sa_email`"
)
return service_account_email, self.credentials.token