Attach storage_type to Documents

This commit is contained in:
Daniel Quinn 2018-02-04 13:13:24 +00:00
parent 885dbf67d5
commit da6dc2ad5b
2 changed files with 45 additions and 2 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-02-04 13:07
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('documents', '0018_auto_20170715_1712'),
]
operations = [
migrations.AddField(
model_name='document',
name='storage_type',
field=models.CharField(choices=[('unencrypted', 'Unencrypted'), ('gpg', 'Encrypted with GNU Privacy Guard')], default='gpg', editable=False, max_length=11),
),
]

View File

@ -190,6 +190,13 @@ class Document(models.Model):
TYPE_TIF = "tiff" TYPE_TIF = "tiff"
TYPES = (TYPE_PDF, TYPE_PNG, TYPE_JPG, TYPE_GIF, TYPE_TIF,) TYPES = (TYPE_PDF, TYPE_PNG, TYPE_JPG, TYPE_GIF, TYPE_TIF,)
STORAGE_TYPE_UNENCRYPTED = "unencrypted"
STORAGE_TYPE_GPG = "gpg"
STORAGE_TYPES = (
(STORAGE_TYPE_UNENCRYPTED, "Unencrypted"),
(STORAGE_TYPE_GPG, "Encrypted with GNU Privacy Guard")
)
correspondent = models.ForeignKey( correspondent = models.ForeignKey(
Correspondent, Correspondent,
blank=True, blank=True,
@ -229,6 +236,12 @@ class Document(models.Model):
default=timezone.now, db_index=True) default=timezone.now, db_index=True)
modified = models.DateTimeField( modified = models.DateTimeField(
auto_now=True, editable=False, db_index=True) auto_now=True, editable=False, db_index=True)
storage_type = models.CharField(
max_length=11,
choices=STORAGE_TYPES,
default=STORAGE_TYPE_GPG,
editable=False
)
class Meta(object): class Meta(object):
ordering = ("correspondent", "title") ordering = ("correspondent", "title")
@ -244,11 +257,16 @@ class Document(models.Model):
@property @property
def source_path(self): def source_path(self):
file_name = "{:07}.{}".format(self.pk, self.file_type)
if self.storage_type == self.STORAGE_TYPE_GPG:
file_name += ".gpg"
return os.path.join( return os.path.join(
settings.MEDIA_ROOT, settings.MEDIA_ROOT,
"documents", "documents",
"originals", "originals",
"{:07}.{}.gpg".format(self.pk, self.file_type) file_name
) )
@property @property
@ -265,11 +283,16 @@ class Document(models.Model):
@property @property
def thumbnail_path(self): def thumbnail_path(self):
file_name = "{:07}.png".format(self.pk)
if self.storage_type == self.STORAGE_TYPE_GPG:
file_name += ".gpg"
return os.path.join( return os.path.join(
settings.MEDIA_ROOT, settings.MEDIA_ROOT,
"documents", "documents",
"thumbnails", "thumbnails",
"{:07}.png.gpg".format(self.pk) file_name
) )
@property @property