2013-08-03 13:41:15 +08:00
|
|
|
from collections import OrderedDict
|
2010-10-20 09:33:24 +08:00
|
|
|
import os
|
2013-08-03 13:41:15 +08:00
|
|
|
|
2010-10-20 09:33:24 +08:00
|
|
|
from django.conf import settings
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
from django.core.files.storage import default_storage, Storage, FileSystemStorage
|
2013-11-02 04:15:41 +08:00
|
|
|
from django.utils.functional import empty, LazyObject
|
2013-02-03 05:58:02 +08:00
|
|
|
from django.utils.module_loading import import_by_path
|
2011-01-02 09:31:55 +08:00
|
|
|
from django.utils._os import safe_join
|
2013-11-02 04:15:41 +08:00
|
|
|
from django.utils import six, lru_cache
|
2010-10-20 09:33:24 +08:00
|
|
|
|
|
|
|
from django.contrib.staticfiles import utils
|
|
|
|
from django.contrib.staticfiles.storage import AppStaticStorage
|
|
|
|
|
|
|
|
|
|
|
|
class BaseFinder(object):
|
|
|
|
"""
|
|
|
|
A base file finder to be used for custom staticfiles finder classes.
|
|
|
|
"""
|
|
|
|
def find(self, path, all=False):
|
|
|
|
"""
|
|
|
|
Given a relative file path this ought to find an
|
|
|
|
absolute file path.
|
|
|
|
|
|
|
|
If the ``all`` parameter is ``False`` (default) only
|
|
|
|
the first found file path will be returned; if set
|
|
|
|
to ``True`` a list of all found files paths is returned.
|
|
|
|
"""
|
2013-09-07 02:24:52 +08:00
|
|
|
raise NotImplementedError('subclasses of BaseFinder must provide a find() method')
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-08-11 22:07:39 +08:00
|
|
|
def list(self, ignore_patterns):
|
2010-10-20 09:33:24 +08:00
|
|
|
"""
|
|
|
|
Given an optional list of paths to ignore, this should return
|
2011-03-08 06:54:55 +08:00
|
|
|
a two item iterable consisting of the relative path and storage
|
|
|
|
instance.
|
2010-10-20 09:33:24 +08:00
|
|
|
"""
|
2013-09-07 02:24:52 +08:00
|
|
|
raise NotImplementedError('subclasses of BaseFinder must provide a list() method')
|
2010-10-20 09:33:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
class FileSystemFinder(BaseFinder):
|
|
|
|
"""
|
|
|
|
A static files finder that uses the ``STATICFILES_DIRS`` setting
|
|
|
|
to locate files.
|
|
|
|
"""
|
|
|
|
def __init__(self, apps=None, *args, **kwargs):
|
2011-02-02 04:10:29 +08:00
|
|
|
# List of locations with static files
|
|
|
|
self.locations = []
|
2010-10-21 11:16:58 +08:00
|
|
|
# Maps dir paths to an appropriate storage instance
|
2013-08-03 13:41:15 +08:00
|
|
|
self.storages = OrderedDict()
|
2011-02-01 22:57:10 +08:00
|
|
|
if not isinstance(settings.STATICFILES_DIRS, (list, tuple)):
|
|
|
|
raise ImproperlyConfigured(
|
|
|
|
"Your STATICFILES_DIRS setting is not a tuple or list; "
|
|
|
|
"perhaps you forgot a trailing comma?")
|
2010-10-20 09:33:24 +08:00
|
|
|
for root in settings.STATICFILES_DIRS:
|
|
|
|
if isinstance(root, (list, tuple)):
|
|
|
|
prefix, root = root
|
|
|
|
else:
|
|
|
|
prefix = ''
|
2011-02-01 22:57:10 +08:00
|
|
|
if os.path.abspath(settings.STATIC_ROOT) == os.path.abspath(root):
|
|
|
|
raise ImproperlyConfigured(
|
|
|
|
"The STATICFILES_DIRS setting should "
|
|
|
|
"not contain the STATIC_ROOT setting")
|
2011-02-02 04:10:29 +08:00
|
|
|
if (prefix, root) not in self.locations:
|
|
|
|
self.locations.append((prefix, root))
|
2010-10-20 09:33:24 +08:00
|
|
|
for prefix, root in self.locations:
|
2011-01-16 07:38:00 +08:00
|
|
|
filesystem_storage = FileSystemStorage(location=root)
|
|
|
|
filesystem_storage.prefix = prefix
|
|
|
|
self.storages[root] = filesystem_storage
|
2010-10-20 09:33:24 +08:00
|
|
|
super(FileSystemFinder, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def find(self, path, all=False):
|
|
|
|
"""
|
2011-01-05 20:41:40 +08:00
|
|
|
Looks for files in the extra locations
|
2010-10-20 09:33:24 +08:00
|
|
|
as defined in ``STATICFILES_DIRS``.
|
|
|
|
"""
|
|
|
|
matches = []
|
|
|
|
for prefix, root in self.locations:
|
|
|
|
matched_path = self.find_location(root, path, prefix)
|
|
|
|
if matched_path:
|
|
|
|
if not all:
|
|
|
|
return matched_path
|
|
|
|
matches.append(matched_path)
|
|
|
|
return matches
|
|
|
|
|
|
|
|
def find_location(self, root, path, prefix=None):
|
|
|
|
"""
|
2011-01-05 20:41:40 +08:00
|
|
|
Finds a requested static file in a location, returning the found
|
2010-10-20 09:33:24 +08:00
|
|
|
absolute path (or ``None`` if no match).
|
|
|
|
"""
|
|
|
|
if prefix:
|
2010-12-31 22:22:32 +08:00
|
|
|
prefix = '%s%s' % (prefix, os.sep)
|
2010-10-20 09:33:24 +08:00
|
|
|
if not path.startswith(prefix):
|
|
|
|
return None
|
|
|
|
path = path[len(prefix):]
|
2011-01-02 09:31:55 +08:00
|
|
|
path = safe_join(root, path)
|
2010-10-20 09:33:24 +08:00
|
|
|
if os.path.exists(path):
|
|
|
|
return path
|
|
|
|
|
|
|
|
def list(self, ignore_patterns):
|
|
|
|
"""
|
|
|
|
List all files in all locations.
|
|
|
|
"""
|
|
|
|
for prefix, root in self.locations:
|
|
|
|
storage = self.storages[root]
|
|
|
|
for path in utils.get_files(storage, ignore_patterns):
|
2011-01-16 07:38:00 +08:00
|
|
|
yield path, storage
|
2010-10-20 09:33:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
class AppDirectoriesFinder(BaseFinder):
|
|
|
|
"""
|
2011-01-05 20:41:40 +08:00
|
|
|
A static files finder that looks in the directory of each app as
|
|
|
|
specified in the source_dir attribute of the given storage class.
|
2010-10-20 09:33:24 +08:00
|
|
|
"""
|
|
|
|
storage_class = AppStaticStorage
|
|
|
|
|
|
|
|
def __init__(self, apps=None, *args, **kwargs):
|
2011-01-16 07:38:00 +08:00
|
|
|
# The list of apps that are handled
|
|
|
|
self.apps = []
|
|
|
|
# Mapping of app module paths to storage instances
|
2013-08-03 13:41:15 +08:00
|
|
|
self.storages = OrderedDict()
|
2011-01-16 07:38:00 +08:00
|
|
|
if apps is None:
|
|
|
|
apps = settings.INSTALLED_APPS
|
|
|
|
for app in apps:
|
|
|
|
app_storage = self.storage_class(app)
|
|
|
|
if os.path.isdir(app_storage.location):
|
|
|
|
self.storages[app] = app_storage
|
|
|
|
if app not in self.apps:
|
|
|
|
self.apps.append(app)
|
2010-10-20 09:33:24 +08:00
|
|
|
super(AppDirectoriesFinder, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def list(self, ignore_patterns):
|
|
|
|
"""
|
|
|
|
List all files in all app storages.
|
|
|
|
"""
|
2012-07-21 03:14:27 +08:00
|
|
|
for storage in six.itervalues(self.storages):
|
2011-09-21 23:58:32 +08:00
|
|
|
if storage.exists(''): # check if storage location exists
|
2010-10-20 09:33:24 +08:00
|
|
|
for path in utils.get_files(storage, ignore_patterns):
|
2011-01-16 07:38:00 +08:00
|
|
|
yield path, storage
|
2010-10-20 09:33:24 +08:00
|
|
|
|
|
|
|
def find(self, path, all=False):
|
|
|
|
"""
|
|
|
|
Looks for files in the app directories.
|
|
|
|
"""
|
|
|
|
matches = []
|
|
|
|
for app in self.apps:
|
2011-01-16 07:38:00 +08:00
|
|
|
match = self.find_in_app(app, path)
|
|
|
|
if match:
|
2010-10-20 09:33:24 +08:00
|
|
|
if not all:
|
2011-01-16 07:38:00 +08:00
|
|
|
return match
|
|
|
|
matches.append(match)
|
2010-10-20 09:33:24 +08:00
|
|
|
return matches
|
|
|
|
|
|
|
|
def find_in_app(self, app, path):
|
|
|
|
"""
|
2011-01-05 20:41:40 +08:00
|
|
|
Find a requested static file in an app's static locations.
|
2010-10-20 09:33:24 +08:00
|
|
|
"""
|
2011-01-16 07:38:00 +08:00
|
|
|
storage = self.storages.get(app, None)
|
|
|
|
if storage:
|
|
|
|
if storage.prefix:
|
|
|
|
prefix = '%s%s' % (storage.prefix, os.sep)
|
|
|
|
if not path.startswith(prefix):
|
|
|
|
return None
|
|
|
|
path = path[len(prefix):]
|
|
|
|
# only try to find a file if the source dir actually exists
|
|
|
|
if storage.exists(path):
|
|
|
|
matched_path = storage.path(path)
|
|
|
|
if matched_path:
|
|
|
|
return matched_path
|
2010-10-20 09:33:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
class BaseStorageFinder(BaseFinder):
|
|
|
|
"""
|
|
|
|
A base static files finder to be used to extended
|
|
|
|
with an own storage class.
|
|
|
|
"""
|
|
|
|
storage = None
|
|
|
|
|
|
|
|
def __init__(self, storage=None, *args, **kwargs):
|
|
|
|
if storage is not None:
|
|
|
|
self.storage = storage
|
|
|
|
if self.storage is None:
|
|
|
|
raise ImproperlyConfigured("The staticfiles storage finder %r "
|
|
|
|
"doesn't have a storage class "
|
|
|
|
"assigned." % self.__class__)
|
|
|
|
# Make sure we have an storage instance here.
|
|
|
|
if not isinstance(self.storage, (Storage, LazyObject)):
|
|
|
|
self.storage = self.storage()
|
|
|
|
super(BaseStorageFinder, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def find(self, path, all=False):
|
|
|
|
"""
|
|
|
|
Looks for files in the default file storage, if it's local.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
self.storage.path('')
|
|
|
|
except NotImplementedError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
if self.storage.exists(path):
|
|
|
|
match = self.storage.path(path)
|
|
|
|
if all:
|
|
|
|
match = [match]
|
|
|
|
return match
|
|
|
|
return []
|
|
|
|
|
|
|
|
def list(self, ignore_patterns):
|
|
|
|
"""
|
|
|
|
List all files of the storage.
|
|
|
|
"""
|
|
|
|
for path in utils.get_files(self.storage, ignore_patterns):
|
2011-01-16 07:38:00 +08:00
|
|
|
yield path, self.storage
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-09-21 23:58:32 +08:00
|
|
|
|
2010-10-20 09:33:24 +08:00
|
|
|
class DefaultStorageFinder(BaseStorageFinder):
|
|
|
|
"""
|
|
|
|
A static files finder that uses the default storage backend.
|
|
|
|
"""
|
|
|
|
storage = default_storage
|
|
|
|
|
2011-09-21 23:58:32 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(DefaultStorageFinder, self).__init__(*args, **kwargs)
|
|
|
|
base_location = getattr(self.storage, 'base_location', empty)
|
|
|
|
if not base_location:
|
|
|
|
raise ImproperlyConfigured("The storage backend of the "
|
|
|
|
"staticfiles finder %r doesn't have "
|
|
|
|
"a valid location." % self.__class__)
|
|
|
|
|
2010-10-20 09:33:24 +08:00
|
|
|
|
|
|
|
def find(path, all=False):
|
|
|
|
"""
|
2011-01-05 20:41:40 +08:00
|
|
|
Find a static file with the given path using all enabled finders.
|
|
|
|
|
2010-10-20 09:33:24 +08:00
|
|
|
If ``all`` is ``False`` (default), return the first matching
|
2011-01-05 20:41:40 +08:00
|
|
|
absolute path (or ``None`` if no match). Otherwise return a list.
|
2010-10-20 09:33:24 +08:00
|
|
|
"""
|
|
|
|
matches = []
|
|
|
|
for finder in get_finders():
|
|
|
|
result = finder.find(path, all=all)
|
|
|
|
if not all and result:
|
|
|
|
return result
|
|
|
|
if not isinstance(result, (list, tuple)):
|
|
|
|
result = [result]
|
|
|
|
matches.extend(result)
|
|
|
|
if matches:
|
|
|
|
return matches
|
|
|
|
# No match.
|
2013-05-27 10:47:50 +08:00
|
|
|
return [] if all else None
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-09-21 23:58:32 +08:00
|
|
|
|
2010-10-20 09:33:24 +08:00
|
|
|
def get_finders():
|
|
|
|
for finder_path in settings.STATICFILES_FINDERS:
|
|
|
|
yield get_finder(finder_path)
|
|
|
|
|
2011-09-21 23:58:32 +08:00
|
|
|
|
2013-11-02 04:15:41 +08:00
|
|
|
@lru_cache.lru_cache(maxsize=None)
|
|
|
|
def get_finder(import_path):
|
2010-10-20 09:33:24 +08:00
|
|
|
"""
|
2011-01-05 20:41:40 +08:00
|
|
|
Imports the staticfiles finder class described by import_path, where
|
2010-10-20 09:33:24 +08:00
|
|
|
import_path is the full Python path to the class.
|
|
|
|
"""
|
2013-02-03 05:58:02 +08:00
|
|
|
Finder = import_by_path(import_path)
|
2010-10-20 09:33:24 +08:00
|
|
|
if not issubclass(Finder, BaseFinder):
|
|
|
|
raise ImproperlyConfigured('Finder "%s" is not a subclass of "%s"' %
|
|
|
|
(Finder, BaseFinder))
|
|
|
|
return Finder()
|