Writing a custom storage system

If you need to provide custom file storage – a common example is storing fileson some remote system – you can do so by defining a custom storage class.You’ll need to follow these steps:

  • Your custom storage system must be a subclass ofdjango.core.files.storage.Storage:
  1. from django.core.files.storage import Storage
  2.  
  3. class MyStorage(Storage):
  4. ...
  • Django must be able to instantiate your storage system without any arguments.This means that any settings should be taken from django.conf.settings:
  1. from django.conf import settings
  2. from django.core.files.storage import Storage
  3.  
  4. class MyStorage(Storage):
  5. def __init__(self, option=None):
  6. if not option:
  7. option = settings.CUSTOM_STORAGE_OPTIONS
  8. ...
  • Your storage class must implement the _open() and _save()methods, along with any other methods appropriate to your storage class. Seebelow for more on these methods.

In addition, if your class provides local file storage, it must overridethe path() method.

  • Your storage class must be deconstructibleso it can be serialized when it’s used on a field in a migration. As longas your field has arguments that are themselvesserializable, you can use thedjango.utils.deconstruct.deconstructible class decorator for this(that’s what Django uses on FileSystemStorage).

By default, the following methods raise NotImplementedError and willtypically have to be overridden:

By way of example, if listing the contents of certain storage backends turnsout to be expensive, you might decide not to implement Storage.listdir.

Another example would be a backend that only handles writing to files. In thiscase, you would not need to implement any of the above methods.

Ultimately, which of these methods are implemented is up to you. Leaving somemethods unimplemented will result in a partial (possibly broken) interface.

You’ll also usually want to use hooks specifically designed for custom storageobjects. These are:

  • open(_name, mode='rb')
  • Required.

Called by Storage.open(), this is the actual mechanism the storage classuses to open the file. This must return a File object, though in most cases,you’ll want to return some subclass here that implements logic specific to thebackend storage system.

  • save(_name, content)
  • Called by Storage.save(). The name will already have gone throughget_valid_name() and get_available_name(), and the content will be aFile object itself.

Should return the actual name of name of the file saved (usually the namepassed in, but if the storage needs to change the file name return the new nameinstead).

  • getvalid_name(_name)
  • Returns a filename suitable for use with the underlying storage system. Thename argument passed to this method is either the original filename sent tothe server or, if upload_to is a callable, the filename returned by thatmethod after any path information is removed. Override this to customize hownon-standard characters are converted to safe filenames.

The code provided on Storage retains only alpha-numeric characters, periodsand underscores from the original filename, removing everything else.

  • getalternative_name(_file_root, file_ext)
  • New in Django 3.0:

Returns an alternative filename based on the file_root and file_extparameters. By default, an underscore plus a random 7 character alphanumericstring is appended to the filename before the extension.

  • getavailable_name(_name, max_length=None)
  • Returns a filename that is available in the storage mechanism, possibly takingthe provided filename into account. The name argument passed to this methodwill have already cleaned to a filename valid for the storage system, accordingto the get_valid_name() method described above.

The length of the filename will not exceed max_length, if provided. If afree unique filename cannot be found, a SuspiciousFileOperation exception is raised.

If a file with name already exists, get_alternative_name() is called toobtain an alternative name.