2013-10-28 04:26:51 +08:00
|
|
|
"""
|
2014-09-24 13:13:13 +08:00
|
|
|
Storing files according to a custom storage system
|
2013-10-28 04:26:51 +08:00
|
|
|
|
|
|
|
``FileField`` and its variations can take a ``storage`` argument to specify how
|
|
|
|
and where files should be stored.
|
|
|
|
"""
|
|
|
|
|
2014-06-23 20:51:53 +08:00
|
|
|
import os
|
2013-10-28 04:26:51 +08:00
|
|
|
import random
|
|
|
|
import tempfile
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
from django.core.files.storage import FileSystemStorage
|
|
|
|
|
|
|
|
|
2014-10-15 15:42:06 +08:00
|
|
|
class OldStyleFSStorage(FileSystemStorage):
|
|
|
|
"""
|
|
|
|
Storage backend without support for the ``max_length`` argument in
|
|
|
|
``get_available_name()`` and ``save()``; for backward-compatibility and
|
|
|
|
deprecation testing.
|
|
|
|
"""
|
|
|
|
def get_available_name(self, name):
|
|
|
|
return name
|
|
|
|
|
|
|
|
def save(self, name, content):
|
|
|
|
return super(OldStyleFSStorage, self).save(name, content)
|
|
|
|
|
|
|
|
|
2014-06-23 20:51:53 +08:00
|
|
|
temp_storage_location = tempfile.mkdtemp(dir=os.environ['DJANGO_TEST_TEMP_DIR'])
|
2013-10-28 04:26:51 +08:00
|
|
|
temp_storage = FileSystemStorage(location=temp_storage_location)
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2013-10-28 04:26:51 +08:00
|
|
|
class Storage(models.Model):
|
|
|
|
def custom_upload_to(self, filename):
|
|
|
|
return 'foo'
|
|
|
|
|
|
|
|
def random_upload_to(self, filename):
|
|
|
|
# This returns a different result each time,
|
|
|
|
# to make sure it only gets called once.
|
|
|
|
return '%s/%s' % (random.randint(100, 999), filename)
|
|
|
|
|
|
|
|
normal = models.FileField(storage=temp_storage, upload_to='tests')
|
|
|
|
custom = models.FileField(storage=temp_storage, upload_to=custom_upload_to)
|
|
|
|
random = models.FileField(storage=temp_storage, upload_to=random_upload_to)
|
|
|
|
default = models.FileField(storage=temp_storage, upload_to='tests', default='tests/default.txt')
|
|
|
|
empty = models.FileField(storage=temp_storage)
|
2014-10-15 15:42:06 +08:00
|
|
|
limited_length = models.FileField(storage=temp_storage, upload_to='tests', max_length=20)
|
|
|
|
extended_length = models.FileField(storage=temp_storage, upload_to='tests', max_length=300)
|
|
|
|
old_style = models.FileField(
|
|
|
|
storage=OldStyleFSStorage(location=temp_storage_location),
|
|
|
|
upload_to='tests',
|
|
|
|
)
|