2008-08-24 06:25:40 +08:00
|
|
|
Writing a custom storage system
|
|
|
|
===============================
|
|
|
|
|
2008-09-04 04:27:54 +08:00
|
|
|
.. currentmodule:: django.core.files.storage
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
If you need to provide custom file storage -- a common example is storing files
|
|
|
|
on 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 of
|
|
|
|
``django.core.files.storage.Storage``::
|
|
|
|
|
|
|
|
from django.core.files.storage import Storage
|
|
|
|
|
|
|
|
class MyStorage(Storage):
|
|
|
|
...
|
|
|
|
|
|
|
|
#. Django must be able to instantiate your storage system without any arguments.
|
|
|
|
This means that any settings should be taken from ``django.conf.settings``::
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
from django.core.files.storage import Storage
|
|
|
|
|
|
|
|
class MyStorage(Storage):
|
|
|
|
def __init__(self, option=None):
|
|
|
|
if not option:
|
|
|
|
option = settings.CUSTOM_STORAGE_OPTIONS
|
|
|
|
...
|
|
|
|
|
2012-11-18 06:25:37 +08:00
|
|
|
#. Your storage class must implement the :meth:`_open()` and :meth:`_save()`
|
2012-11-17 23:05:34 +08:00
|
|
|
methods, along with any other methods appropriate to your storage class. See
|
|
|
|
below for more on these methods.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
In addition, if your class provides local file storage, it must override
|
|
|
|
the ``path()`` method.
|
|
|
|
|
2014-05-07 14:06:41 +08:00
|
|
|
#. Your storage class must be :ref:`deconstructible <custom-deconstruct-method>`
|
|
|
|
so it can be serialized when it's used on a field in a migration. As long
|
|
|
|
as your field has arguments that are themselves
|
|
|
|
:ref:`serializable <migration-serializing>`, you can use the
|
|
|
|
``django.utils.deconstruct.deconstructible`` class decorator for this
|
|
|
|
(that's what Django uses on FileSystemStorage).
|
|
|
|
|
2014-11-03 17:46:38 +08:00
|
|
|
By default, the following methods raise `NotImplementedError` and will
|
|
|
|
typically have to be overridden:
|
2008-09-04 04:27:54 +08:00
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* :meth:`Storage.delete`
|
|
|
|
* :meth:`Storage.exists`
|
|
|
|
* :meth:`Storage.listdir`
|
|
|
|
* :meth:`Storage.size`
|
|
|
|
* :meth:`Storage.url`
|
2008-09-04 04:27:54 +08:00
|
|
|
|
2014-11-03 17:46:38 +08:00
|
|
|
Note however that not all these methods are required and may be deliberately
|
|
|
|
omitted. As it happens, it is possible to leave each method unimplemented and
|
|
|
|
still have a working Storage.
|
|
|
|
|
|
|
|
By way of example, if listing the contents of certain storage backends turns
|
|
|
|
out to be expensive, you might decide not to implement `Storage.listdir`.
|
|
|
|
|
|
|
|
Another example would be a backend that only handles writing to files. In this
|
|
|
|
case, you would not need to implement any of the above methods.
|
|
|
|
|
|
|
|
Ultimately, which of these methods are implemented is up to you. Leaving some
|
|
|
|
methods unimplemented will result in a partial (possibly broken) interface.
|
|
|
|
|
2008-09-10 23:09:53 +08:00
|
|
|
You'll also usually want to use hooks specifically designed for custom storage
|
2008-09-04 04:27:54 +08:00
|
|
|
objects. These are:
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2012-11-17 23:05:34 +08:00
|
|
|
.. method:: _open(name, mode='rb')
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
**Required**.
|
|
|
|
|
|
|
|
Called by ``Storage.open()``, this is the actual mechanism the storage class
|
|
|
|
uses 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 the
|
|
|
|
backend storage system.
|
|
|
|
|
2012-11-17 23:05:34 +08:00
|
|
|
.. method:: _save(name, content)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Called by ``Storage.save()``. The ``name`` will already have gone through
|
|
|
|
``get_valid_name()`` and ``get_available_name()``, and the ``content`` will be a
|
2010-08-20 03:27:44 +08:00
|
|
|
``File`` object itself.
|
Fixed a whole bunch of small docs typos, errors, and ommissions.
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528.
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-04 02:30:54 +08:00
|
|
|
|
|
|
|
Should return the actual name of name of the file saved (usually the ``name``
|
|
|
|
passed in, but if the storage needs to change the file name return the new name
|
|
|
|
instead).
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2012-11-17 23:05:34 +08:00
|
|
|
.. method:: get_valid_name(name)
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Returns a filename suitable for use with the underlying storage system. The
|
|
|
|
``name`` argument passed to this method is the original filename sent to the
|
|
|
|
server, after having any path information removed. Override this to customize
|
|
|
|
how non-standard characters are converted to safe filenames.
|
|
|
|
|
|
|
|
The code provided on ``Storage`` retains only alpha-numeric characters, periods
|
|
|
|
and underscores from the original filename, removing everything else.
|
|
|
|
|
2012-11-17 23:05:34 +08:00
|
|
|
.. method:: get_available_name(name)
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Returns a filename that is available in the storage mechanism, possibly taking
|
|
|
|
the provided filename into account. The ``name`` argument passed to this method
|
|
|
|
will have already cleaned to a filename valid for the storage system, according
|
|
|
|
to the ``get_valid_name()`` method described above.
|
|
|
|
|
2014-08-08 22:20:08 +08:00
|
|
|
.. versionchanged:: 1.7
|
|
|
|
|
|
|
|
If a file with ``name`` already exists, an underscore plus a random 7
|
|
|
|
character alphanumeric string is appended to the filename before the
|
|
|
|
extension.
|
|
|
|
|
|
|
|
Previously, an underscore followed by a number (e.g. ``"_1"``, ``"_2"``,
|
2014-08-26 21:44:24 +08:00
|
|
|
etc.) was appended to the filename until an available name in the destination
|
2014-08-08 22:20:08 +08:00
|
|
|
directory was found. A malicious user could exploit this deterministic
|
|
|
|
algorithm to create a denial-of-service attack. This change was also made
|
|
|
|
in Django 1.6.6, 1.5.9, and 1.4.14.
|