-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add Google Cloud Storage support (GCS) #2193
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
"""GCS Bucket File Upload Backend.""" | ||
import functools | ||
import logging | ||
|
||
from ..exceptions import FileUploadInternalError | ||
from .base import BaseBackend | ||
|
||
log = logging.getLogger("openassessment.fileupload.api") # pylint: disable=invalid-name | ||
|
||
|
||
def catch_broad_exception(method): | ||
"""Decorator to catch broad exceptions, log them, and raise a FileUploadInternalError.""" | ||
@functools.wraps(method) | ||
def wrapper(*args, **kwargs): | ||
try: | ||
return method(*args, **kwargs) | ||
except Exception as ex: # pylint: disable=broad-except | ||
log.exception( | ||
f"Internal exception occurred while executing ora2 file-upload backend gcs.{method.__name__}: {str(ex)}" | ||
) | ||
raise FileUploadInternalError(ex) from ex | ||
return wrapper | ||
|
||
|
||
class Backend(BaseBackend): | ||
""" GCS Bucket File Upload Backend. """ | ||
|
||
@catch_broad_exception | ||
def get_upload_url(self, key, content_type): | ||
"""Get a signed URL for uploading a file to GCS""" | ||
bucket_name, key_name = self._retrieve_parameters(key) | ||
blob = get_blob_object(bucket_name, key_name) | ||
|
||
return blob.generate_signed_url( | ||
version="v4", | ||
expiration=self.UPLOAD_URL_TIMEOUT, | ||
method="PUT", | ||
content_type=content_type, | ||
) | ||
|
||
@catch_broad_exception | ||
def get_download_url(self, key): | ||
"""Get a signed URL for downloading a file from GCS""" | ||
bucket_name, key_name = self._retrieve_parameters(key) | ||
blob = get_blob_object(bucket_name, key_name) | ||
if not blob.exists(): | ||
return "" | ||
|
||
return blob.generate_signed_url( | ||
version="v4", | ||
expiration=self.DOWNLOAD_URL_TIMEOUT, | ||
method="GET", | ||
) | ||
|
||
@catch_broad_exception | ||
def remove_file(self, key): | ||
"""Remove a file from GCS""" | ||
bucket_name, key_name = self._retrieve_parameters(key) | ||
blob = get_blob_object(bucket_name, key_name) | ||
if blob.exists(): | ||
blob.delete() | ||
return True | ||
|
||
return False | ||
|
||
|
||
def get_blob_object(bucket_name, key_name): | ||
"""Get a blob object from GCS""" | ||
# By default; avoid the need of google-cloud-storage library. It will be only needed if gcs backend is used. | ||
from google.cloud import storage # pylint: disable=import-outside-toplevel | ||
|
||
client = storage.Client() | ||
return client.bucket(bucket_name).blob(key_name) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -625,6 +625,7 @@ def serialize_training_examples(examples, assessment_el): | |
answer_el = etree.SubElement(example_el, 'answer') | ||
try: | ||
answer = example_dict.get('answer') | ||
parts = [] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change looks unrelated? |
||
if answer is None: | ||
parts = [] | ||
elif isinstance(answer, dict): | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change looks unrelated?