-
Notifications
You must be signed in to change notification settings - Fork 11
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
fix(storages): use ssec storage at correct times #798
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
from django.contrib.postgres.search import SearchVectorField | ||
from django.core.exceptions import ImproperlyConfigured, ObjectDoesNotExist | ||
from django.core.files import File as DjangoFile | ||
from django.core.files.storage import storages | ||
from django.core.validators import RegexValidator | ||
from django.db import models, transaction | ||
from django.dispatch import receiver | ||
|
@@ -172,7 +173,10 @@ def clone(self): | |
self.pk = None | ||
self.save() | ||
|
||
storage = File.content.field.storage | ||
storage_backend = settings.ALEXANDRIA_FILE_STORAGE | ||
if settings.ALEXANDRIA_ENABLE_AT_REST_ENCRYPTION: | ||
storage_backend = "alexandria.storages.backends.s3.SsecGlobalS3Storage" | ||
storage = storages.create_storage({"BACKEND": storage_backend}) | ||
Comment on lines
-175
to
+179
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. The 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. Cloning was done this way on purpose. This is to avoid downloading and reuploading the same file content. We want to be able to use the S3 api in the storage class. 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. I'm aware of that and I like it. My comment was not very clear, tbh. What I'm actually concerned with is: this is quite a lot of logic packed in the I think it could be much clearer and easier to read if we could see here something like:
To achieve this I would suggest to e. g. add a class DynamicStorageFieldFile(FieldFile):
def __init__(self, instance, field, name):
super().__init__(instance, field, name)
self.storage = storages.create_storage(
{"BACKEND": settings.ALEXANDRIA_FILE_STORAGE}
)
storage_backend = settings.ALEXANDRIA_FILE_STORAGE
if settings.ALEXANDRIA_ENABLE_AT_REST_ENCRYPTION:
from alexandria.core.models import File
if instance.encryption_status == File.EncryptionStatus.SSEC_GLOBAL_KEY:
storage_backend = "alexandria.storages.backends.s3.SsecGlobalS3Storage"
self.storage = storages.create_storage({"BACKEND": storage_backend})
def copy(self, target_name):
# S3 compatible storage: copy the file in storage without downloading and reuploading
if isinstance(self.storage, S3Storage):
copy_args = {
"CopySource": {
"Bucket": self.storage.bucket,
"Key": self.name,
},
# Destination settings
"Bucket": self.storage.bucket,
"Key": target_name,
}
if isinstance(self.storage, SsecGlobalS3Storage):
copy_args["CopySourceSSECustomerKey"] = self.storage.ssec_secret
copy_args["CopySourceSSECustomerAlgorithm"] = self.storage.customer_algorithm
copy_args["SSECustomerKey"] = storage.ssec_secret
copy_args["SSECustomerAlgorithm"] = self.storage.customer_alorithm
self.storage.bucket.meta.client.copy_object(**copy_args)
self.instance.content = target_name
self.instance.save()
return
# otherwise use filesystem storage
with NamedTemporaryFile() as tmp:
temp_file = Path(tmp.name)
with temp_file.open("w+b") as file:
file.write(self.read())
self.instance.content = DjangoFile(file)
self.instance.save()
return Edited: The And a note: the above assumes that the |
||
latest_original.pk = None | ||
latest_original.document = self | ||
if isinstance(storage, S3Storage): | ||
|
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.
From what I understand this is the only place in your changes where storage selection is changed compared to before, right? This may however cause failure because the
DynamicStorageFieldFile
relies on theField.encryption_status
to determine whichstorage
to use. Theclone
method should do that as well. If it doesn't and thesettings.ALEXANDRIA_ENABLE_AT_REST_ENCRYPTION=True
will make the copy procedure fail for aFile
instance withencryption_status
empty and content unencrypted, do you agree or am I getting this wrong?