GnuPG for archive file.

This commit is contained in:
Jonas Winkler 2020-11-25 20:16:27 +01:00
parent f51d2be303
commit 6f30ceea38
3 changed files with 9 additions and 6 deletions

View File

@ -194,7 +194,7 @@ class Consumer(LoggingMixin):
thumbnail, document.thumbnail_path)
if archive_path and os.path.isfile(archive_path):
self._write(Document.STORAGE_TYPE_UNENCRYPTED,
self._write(document.storage_type,
archive_path, document.archive_path)
# Delete the file only if it was successfully consumed

View File

@ -227,6 +227,8 @@ class Document(models.Model):
@property
def archive_path(self):
fname = "{:07}{}".format(self.pk, ".pdf")
if self.storage_type == self.STORAGE_TYPE_GPG:
fname += ".gpg"
return os.path.join(
settings.ARCHIVE_DIR,

View File

@ -137,16 +137,17 @@ class DocumentViewSet(RetrieveModelMixin,
def file_response(self, pk, request, disposition):
doc = Document.objects.get(id=pk)
mime_type = doc.mime_type
filename = doc.file_name
if not self.original_requested(request) and os.path.isfile(doc.archive_path): # NOQA: E501
file_handle = doc.archive_file
filename = doc.archive_file_name
mime_type = 'application/pdf'
elif doc.storage_type == Document.STORAGE_TYPE_UNENCRYPTED:
file_handle = doc.source_file
else:
file_handle = GnuPG.decrypted(doc.source_file)
file_handle = doc.source_file
filename = doc.file_name
mime_type = doc.mime_type
if doc.storage_type == Document.STORAGE_TYPE_GPG:
file_handle = GnuPG.decrypted(file_handle)
response = HttpResponse(file_handle, content_type=mime_type)
response["Content-Disposition"] = '{}; filename="{}"'.format(