This repository has been archived by the owner on Oct 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
googlefuncts.py
419 lines (324 loc) · 14.1 KB
/
googlefuncts.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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
#!/usr/bin/env python
# Copyright 2016 Google, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This application demonstrates how to perform basic operations on blobs
(objects) in a Google Cloud Storage bucket.
For more information, see the README.md under /storage and the documentation
at https://cloud.google.com/storage/docs.
"""
import argparse
import datetime
import pprint
# [START storage_upload_file]
from google.cloud import storage
# [END storage_upload_file]
def create_bucket(bucket_name):
"""Creates a new bucket."""
storage_client = storage.Client()
bucket = storage_client.create_bucket(bucket_name)
print('Bucket {} created'.format(bucket.name))
def delete_bucket(bucket_name):
"""Deletes a bucket. The bucket must be empty."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
bucket.delete()
print('Bucket {} deleted'.format(bucket.name))
def enable_default_kms_key(bucket_name, kms_key_name):
# [START storage_set_bucket_default_kms_key]
"""Sets a bucket's default KMS key."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
bucket.default_kms_key_name = kms_key_name
bucket.patch()
print('Set default KMS key for bucket {} to {}.'.format(
bucket.name,
bucket.default_kms_key_name))
# [END storage_set_bucket_default_kms_key]
def get_bucket_labels(bucket_name):
"""Prints out a bucket's labels."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
labels = bucket.labels
pprint.pprint(labels)
def add_bucket_label(bucket_name):
"""Add a label to a bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
labels = bucket.labels
labels['example'] = 'label'
bucket.labels = labels
bucket.patch()
print('Updated labels on {}.'.format(bucket.name))
pprint.pprint(bucket.labels)
def remove_bucket_label(bucket_name):
"""Remove a label from a bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
labels = bucket.labels
if 'example' in labels:
del labels['example']
bucket.labels = labels
bucket.patch()
print('Updated labels on {}.'.format(bucket.name))
pprint.pprint(bucket.labels)
def list_blobs(bucket_name):
"""Lists all the blobs in the bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blobs = bucket.list_blobs()
for blob in blobs:
print(blob.name)
def get_blobs(bucket_name, prefix):
"""Return list of all the blobs in the bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blobs = bucket.list_blobs(prefix=prefix)
return blobs
def list_blobs_with_prefix(bucket_name, prefix, delimiter=None):
"""Lists all the blobs in the bucket that begin with the prefix.
This can be used to list all blobs in a "folder", e.g. "public/".
The delimiter argument can be used to restrict the results to only the
"files" in the given "folder". Without the delimiter, the entire tree under
the prefix is returned. For example, given these blobs:
/a/1.txt
/a/b/2.txt
If you just specify prefix = '/a', you'll get back:
/a/1.txt
/a/b/2.txt
However, if you specify prefix='/a' and delimiter='/', you'll get back:
/a/1.txt
"""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blobs = bucket.list_blobs(prefix=prefix, delimiter=delimiter)
print('Blobs:')
for blob in blobs:
print(blob.name)
if delimiter:
print('Prefixes:')
for prefix in blobs.prefixes:
print(prefix)
# [START storage_upload_file]
def upload_blob(bucket_name, source_file_name, destination_blob_name):
"""Uploads a file to the bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(destination_blob_name)
blob.upload_from_file(source_file_name)
print('File {} uploaded to {}.'.format(
source_file_name,
destination_blob_name))
# [END storage_upload_file]
def upload_blob_with_kms(bucket_name, source_file_name, destination_blob_name,
kms_key_name):
# [START storage_upload_with_kms_key]
"""Uploads a file to the bucket, encrypting it with the given KMS key."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(destination_blob_name, kms_key_name=kms_key_name)
blob.upload_from_filename(source_file_name)
print('File {} uploaded to {} with encryption key {}.'.format(
source_file_name,
destination_blob_name,
kms_key_name))
# [END storage_upload_with_kms_key]
def download_blob(bucket_name, source_blob_name, destination_file_name):
"""Downloads a blob from the bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(source_blob_name)
blob.download_to_filename(destination_file_name)
print('Blob {} downloaded to {}.'.format(
source_blob_name,
destination_file_name))
def delete_blob(bucket_name, blob_name):
"""Deletes a blob from the bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(blob_name)
blob.delete()
print('Blob {} deleted.'.format(blob_name))
def blob_metadata(bucket_name, blob_name):
"""Prints out a blob's metadata."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.get_blob(blob_name)
print('Blob: {}'.format(blob.name))
print('Bucket: {}'.format(blob.bucket.name))
print('Storage class: {}'.format(blob.storage_class))
print('ID: {}'.format(blob.id))
print('Size: {} bytes'.format(blob.size))
print('Updated: {}'.format(blob.updated))
print('Generation: {}'.format(blob.generation))
print('Metageneration: {}'.format(blob.metageneration))
print('Etag: {}'.format(blob.etag))
print('Owner: {}'.format(blob.owner))
print('Component count: {}'.format(blob.component_count))
print('Crc32c: {}'.format(blob.crc32c))
print('md5_hash: {}'.format(blob.md5_hash))
print('Cache-control: {}'.format(blob.cache_control))
print('Content-type: {}'.format(blob.content_type))
print('Content-disposition: {}'.format(blob.content_disposition))
print('Content-encoding: {}'.format(blob.content_encoding))
print('Content-language: {}'.format(blob.content_language))
print('Metadata: {}'.format(blob.metadata))
print("Temporary hold: ",
'enabled' if blob.temporary_hold else 'disabled')
print("Event based hold: ",
'enabled' if blob.event_based_hold else 'disabled')
if blob.retention_expiration_time:
print("retentionExpirationTime: {}"
.format(blob.retention_expiration_time))
def make_blob_public(bucket_name, blob_name):
"""Makes a blob publicly accessible."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(blob_name)
blob.make_public()
print('Blob {} is publicly accessible at {}'.format(
blob.name, blob.public_url))
def generate_signed_url(bucket_name, blob_name):
"""Generates a signed URL for a blob.
Note that this method requires a service account key file. You can not use
this if you are using Application Default Credentials from Google Compute
Engine or from the Google Cloud SDK.
"""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(blob_name)
url = blob.generate_signed_url(
# This URL is valid for 1 hour
expiration=datetime.timedelta(hours=1),
# Allow GET requests using this URL.
method='GET')
print('The signed url for {} is {}'.format(blob.name, url))
return url
def rename_blob(bucket_name, blob_name, new_name):
"""Renames a blob."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(blob_name)
new_blob = bucket.rename_blob(blob, new_name)
print('Blob {} has been renamed to {}'.format(
blob.name, new_blob.name))
def copy_blob(bucket_name, blob_name, new_bucket_name, new_blob_name):
"""Copies a blob from one bucket to another with a new name."""
storage_client = storage.Client()
source_bucket = storage_client.get_bucket(bucket_name)
source_blob = source_bucket.blob(blob_name)
destination_bucket = storage_client.get_bucket(new_bucket_name)
new_blob = source_bucket.copy_blob(
source_blob, destination_bucket, new_blob_name)
print('Blob {} in bucket {} copied to blob {} in bucket {}.'.format(
source_blob.name, source_bucket.name, new_blob.name,
destination_bucket.name))
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument('bucket_name', help='Your cloud storage bucket.')
subparsers = parser.add_subparsers(dest='command')
subparsers.add_parser('create-bucket', help=create_bucket.__doc__)
subparsers.add_parser('delete-bucket', help=delete_bucket.__doc__)
subparsers.add_parser('get-bucket-labels', help=get_bucket_labels.__doc__)
subparsers.add_parser('add-bucket-label', help=add_bucket_label.__doc__)
subparsers.add_parser(
'remove-bucket-label', help=remove_bucket_label.__doc__)
subparsers.add_parser('list', help=list_blobs.__doc__)
list_with_prefix_parser = subparsers.add_parser(
'list-with-prefix', help=list_blobs_with_prefix.__doc__)
list_with_prefix_parser.add_argument('prefix')
list_with_prefix_parser.add_argument('--delimiter', default=None)
upload_parser = subparsers.add_parser('upload', help=upload_blob.__doc__)
upload_parser.add_argument('source_file_name')
upload_parser.add_argument('destination_blob_name')
enable_default_kms_parser = subparsers.add_parser(
'enable-default-kms-key', help=enable_default_kms_key.__doc__)
enable_default_kms_parser.add_argument('kms_key_name')
upload_kms_parser = subparsers.add_parser(
'upload-with-kms-key', help=upload_blob_with_kms.__doc__)
upload_kms_parser.add_argument('source_file_name')
upload_kms_parser.add_argument('destination_blob_name')
upload_kms_parser.add_argument('kms_key_name')
download_parser = subparsers.add_parser(
'download', help=download_blob.__doc__)
download_parser.add_argument('source_blob_name')
download_parser.add_argument('destination_file_name')
delete_parser = subparsers.add_parser('delete', help=delete_blob.__doc__)
delete_parser.add_argument('blob_name')
metadata_parser = subparsers.add_parser(
'metadata', help=blob_metadata.__doc__)
metadata_parser.add_argument('blob_name')
make_public_parser = subparsers.add_parser(
'make-public', help=make_blob_public.__doc__)
make_public_parser.add_argument('blob_name')
signed_url_parser = subparsers.add_parser(
'signed-url', help=generate_signed_url.__doc__)
signed_url_parser.add_argument('blob_name')
rename_parser = subparsers.add_parser('rename', help=rename_blob.__doc__)
rename_parser.add_argument('blob_name')
rename_parser.add_argument('new_name')
copy_parser = subparsers.add_parser('copy', help=rename_blob.__doc__)
copy_parser.add_argument('blob_name')
copy_parser.add_argument('new_bucket_name')
copy_parser.add_argument('new_blob_name')
args = parser.parse_args()
if args.command == 'create-bucket':
create_bucket(args.bucket_name)
if args.command == 'enable-default-kms-key':
enable_default_kms_key(args.bucket_name, args.kms_key_name)
elif args.command == 'delete-bucket':
delete_bucket(args.bucket_name)
if args.command == 'get-bucket-labels':
get_bucket_labels(args.bucket_name)
if args.command == 'add-bucket-label':
add_bucket_label(args.bucket_name)
if args.command == 'remove-bucket-label':
remove_bucket_label(args.bucket_name)
elif args.command == 'list':
list_blobs(args.bucket_name)
elif args.command == 'list-with-prefix':
list_blobs_with_prefix(args.bucket_name, args.prefix, args.delimiter)
elif args.command == 'upload':
upload_blob(
args.bucket_name,
args.source_file_name,
args.destination_blob_name)
elif args.command == 'upload-with-kms-key':
upload_blob_with_kms(
args.bucket_name,
args.source_file_name,
args.destination_blob_name,
args.kms_key_name)
elif args.command == 'download':
download_blob(
args.bucket_name,
args.source_blob_name,
args.destination_file_name)
elif args.command == 'delete':
delete_blob(args.bucket_name, args.blob_name)
elif args.command == 'metadata':
blob_metadata(args.bucket_name, args.blob_name)
elif args.command == 'make-public':
make_blob_public(args.bucket_name, args.blob_name)
elif args.command == 'signed-url':
generate_signed_url(args.bucket_name, args.blob_name)
elif args.command == 'rename':
rename_blob(args.bucket_name, args.blob_name, args.new_name)
elif args.command == 'copy':
copy_blob(
args.bucket_name,
args.blob_name,
args.new_bucket_name,
args.new_blob_name)