2011-07-08 17:39:56 +08:00
|
|
|
from __future__ import with_statement
|
|
|
|
|
2010-10-20 09:33:24 +08:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
from optparse import make_option
|
|
|
|
|
2011-08-11 22:07:39 +08:00
|
|
|
from django.core.files.storage import FileSystemStorage
|
2010-10-20 09:33:24 +08:00
|
|
|
from django.core.management.base import CommandError, NoArgsCommand
|
2011-07-05 05:34:29 +08:00
|
|
|
from django.utils.encoding import smart_str, smart_unicode
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-08-11 22:07:39 +08:00
|
|
|
from django.contrib.staticfiles import finders, storage
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-07-08 17:39:56 +08:00
|
|
|
|
2010-10-20 09:33:24 +08:00
|
|
|
class Command(NoArgsCommand):
|
|
|
|
"""
|
|
|
|
Command that allows to copy or symlink media files from different
|
2010-11-17 23:36:26 +08:00
|
|
|
locations to the settings.STATIC_ROOT.
|
2010-10-20 09:33:24 +08:00
|
|
|
"""
|
|
|
|
option_list = NoArgsCommand.option_list + (
|
2011-08-11 22:07:39 +08:00
|
|
|
make_option('--noinput',
|
|
|
|
action='store_false', dest='interactive', default=True,
|
|
|
|
help="Do NOT prompt the user for input of any kind."),
|
|
|
|
make_option('--no-post-process',
|
|
|
|
action='store_false', dest='post_process', default=True,
|
|
|
|
help="Do NOT post process collected files."),
|
2010-10-20 09:33:24 +08:00
|
|
|
make_option('-i', '--ignore', action='append', default=[],
|
|
|
|
dest='ignore_patterns', metavar='PATTERN',
|
|
|
|
help="Ignore files or directories matching this glob-style "
|
|
|
|
"pattern. Use multiple times to ignore more."),
|
2011-08-11 22:07:39 +08:00
|
|
|
make_option('-n', '--dry-run',
|
|
|
|
action='store_true', dest='dry_run', default=False,
|
|
|
|
help="Do everything except modify the filesystem."),
|
|
|
|
make_option('-c', '--clear',
|
|
|
|
action='store_true', dest='clear', default=False,
|
|
|
|
help="Clear the existing files using the storage "
|
|
|
|
"before trying to copy or link the original file."),
|
|
|
|
make_option('-l', '--link',
|
|
|
|
action='store_true', dest='link', default=False,
|
|
|
|
help="Create a symbolic link to each file instead of copying."),
|
2010-10-20 09:33:24 +08:00
|
|
|
make_option('--no-default-ignore', action='store_false',
|
|
|
|
dest='use_default_ignore_patterns', default=True,
|
|
|
|
help="Don't ignore the common private glob-style patterns 'CVS', "
|
|
|
|
"'.*' and '*~'."),
|
|
|
|
)
|
2011-08-11 22:07:39 +08:00
|
|
|
help = "Collect static files in a single location."
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-01-08 18:03:27 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
2011-01-20 00:36:20 +08:00
|
|
|
super(NoArgsCommand, self).__init__(*args, **kwargs)
|
2011-02-02 03:19:52 +08:00
|
|
|
self.copied_files = []
|
|
|
|
self.symlinked_files = []
|
|
|
|
self.unmodified_files = []
|
2011-08-11 22:07:39 +08:00
|
|
|
self.storage = storage.staticfiles_storage
|
2010-10-20 09:33:24 +08:00
|
|
|
try:
|
2011-02-02 03:19:52 +08:00
|
|
|
self.storage.path('')
|
2010-10-20 09:33:24 +08:00
|
|
|
except NotImplementedError:
|
2011-02-02 03:19:52 +08:00
|
|
|
self.local = False
|
2010-10-20 09:33:24 +08:00
|
|
|
else:
|
2011-02-02 03:19:52 +08:00
|
|
|
self.local = True
|
2011-07-26 16:47:46 +08:00
|
|
|
# Use ints for file times (ticket #14665), if supported
|
|
|
|
if hasattr(os, 'stat_float_times'):
|
|
|
|
os.stat_float_times(False)
|
2011-01-08 18:03:27 +08:00
|
|
|
|
|
|
|
def handle_noargs(self, **options):
|
2011-07-05 05:34:29 +08:00
|
|
|
self.clear = options['clear']
|
|
|
|
self.dry_run = options['dry_run']
|
2011-01-08 18:03:27 +08:00
|
|
|
ignore_patterns = options['ignore_patterns']
|
|
|
|
if options['use_default_ignore_patterns']:
|
|
|
|
ignore_patterns += ['CVS', '.*', '*~']
|
2011-07-05 05:34:29 +08:00
|
|
|
self.ignore_patterns = list(set(ignore_patterns))
|
|
|
|
self.interactive = options['interactive']
|
|
|
|
self.symlink = options['link']
|
2011-01-08 18:03:27 +08:00
|
|
|
self.verbosity = int(options.get('verbosity', 1))
|
2011-08-11 22:07:39 +08:00
|
|
|
self.post_process = options['post_process']
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-07-05 05:34:29 +08:00
|
|
|
if self.symlink:
|
2010-10-20 09:33:24 +08:00
|
|
|
if sys.platform == 'win32':
|
|
|
|
raise CommandError("Symlinking is not supported by this "
|
|
|
|
"platform (%s)." % sys.platform)
|
2011-02-02 03:19:52 +08:00
|
|
|
if not self.local:
|
2010-10-20 09:33:24 +08:00
|
|
|
raise CommandError("Can't symlink to a remote destination.")
|
|
|
|
|
|
|
|
# Warn before doing anything more.
|
2011-07-05 05:34:29 +08:00
|
|
|
if (isinstance(self.storage, FileSystemStorage) and
|
|
|
|
self.storage.location):
|
|
|
|
destination_path = self.storage.location
|
|
|
|
destination_display = ':\n\n %s' % destination_path
|
|
|
|
else:
|
|
|
|
destination_path = None
|
|
|
|
destination_display = '.'
|
|
|
|
|
|
|
|
if self.clear:
|
|
|
|
clear_display = 'This will DELETE EXISTING FILES!'
|
|
|
|
else:
|
|
|
|
clear_display = 'This will overwrite existing files!'
|
|
|
|
|
|
|
|
if self.interactive:
|
2011-02-15 07:45:32 +08:00
|
|
|
confirm = raw_input(u"""
|
2011-02-02 03:19:52 +08:00
|
|
|
You have requested to collect static files at the destination
|
2011-07-05 05:34:29 +08:00
|
|
|
location as specified in your settings%s
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-07-05 05:34:29 +08:00
|
|
|
%s
|
2010-10-20 09:33:24 +08:00
|
|
|
Are you sure you want to do this?
|
|
|
|
|
2011-07-05 05:34:29 +08:00
|
|
|
Type 'yes' to continue, or 'no' to cancel: """
|
|
|
|
% (destination_display, clear_display))
|
2010-10-20 09:33:24 +08:00
|
|
|
if confirm != 'yes':
|
2011-01-05 20:41:40 +08:00
|
|
|
raise CommandError("Collecting static files cancelled.")
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-07-05 05:34:29 +08:00
|
|
|
if self.clear:
|
|
|
|
self.clear_dir('')
|
|
|
|
|
|
|
|
handler = {
|
|
|
|
True: self.link_file,
|
2011-08-11 22:07:39 +08:00
|
|
|
False: self.copy_file,
|
2011-07-05 05:34:29 +08:00
|
|
|
}[self.symlink]
|
|
|
|
|
2011-08-11 22:07:39 +08:00
|
|
|
found_files = []
|
2010-10-20 09:33:24 +08:00
|
|
|
for finder in finders.get_finders():
|
2011-07-05 05:34:29 +08:00
|
|
|
for path, storage in finder.list(self.ignore_patterns):
|
2011-02-02 03:19:52 +08:00
|
|
|
# Prefix the relative path if the source storage contains it
|
|
|
|
if getattr(storage, 'prefix', None):
|
2011-07-06 18:28:18 +08:00
|
|
|
prefixed_path = os.path.join(storage.prefix, path)
|
|
|
|
else:
|
|
|
|
prefixed_path = path
|
2011-08-11 22:07:39 +08:00
|
|
|
found_files.append(prefixed_path)
|
2011-07-06 18:28:18 +08:00
|
|
|
handler(path, prefixed_path, storage)
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-08-11 22:07:39 +08:00
|
|
|
# Here we check if the storage backend has a post_process
|
|
|
|
# method and pass it the list of modified files.
|
|
|
|
if self.post_process and hasattr(self.storage, 'post_process'):
|
|
|
|
post_processed = self.storage.post_process(found_files, **options)
|
|
|
|
for path in post_processed:
|
|
|
|
self.log(u"Post-processed '%s'" % path, level=1)
|
|
|
|
else:
|
|
|
|
post_processed = []
|
|
|
|
|
|
|
|
modified_files = self.copied_files + self.symlinked_files
|
|
|
|
actual_count = len(modified_files)
|
2010-10-20 09:33:24 +08:00
|
|
|
unmodified_count = len(self.unmodified_files)
|
2011-08-11 22:07:39 +08:00
|
|
|
|
2011-01-08 18:03:27 +08:00
|
|
|
if self.verbosity >= 1:
|
2011-08-11 22:07:39 +08:00
|
|
|
template = ("\n%(actual_count)s %(identifier)s %(action)s"
|
|
|
|
"%(destination)s%(unmodified)s.\n")
|
|
|
|
summary = template % {
|
|
|
|
'actual_count': actual_count,
|
|
|
|
'identifier': 'static file' + (actual_count > 1 and 's' or ''),
|
|
|
|
'action': self.symlink and 'symlinked' or 'copied',
|
|
|
|
'destination': (destination_path and " to '%s'"
|
|
|
|
% destination_path or ''),
|
|
|
|
'unmodified': (self.unmodified_files and ', %s unmodified'
|
|
|
|
% unmodified_count or ''),
|
|
|
|
}
|
|
|
|
self.stdout.write(smart_str(summary))
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-01-08 18:03:27 +08:00
|
|
|
def log(self, msg, level=2):
|
|
|
|
"""
|
|
|
|
Small log helper
|
|
|
|
"""
|
2011-02-15 07:45:32 +08:00
|
|
|
msg = smart_str(msg)
|
2011-01-08 18:03:27 +08:00
|
|
|
if not msg.endswith("\n"):
|
|
|
|
msg += "\n"
|
|
|
|
if self.verbosity >= level:
|
|
|
|
self.stdout.write(msg)
|
|
|
|
|
2011-07-05 05:34:29 +08:00
|
|
|
def clear_dir(self, path):
|
|
|
|
"""
|
|
|
|
Deletes the given relative path using the destinatin storage backend.
|
|
|
|
"""
|
|
|
|
dirs, files = self.storage.listdir(path)
|
|
|
|
for f in files:
|
|
|
|
fpath = os.path.join(path, f)
|
|
|
|
if self.dry_run:
|
2011-08-11 22:07:39 +08:00
|
|
|
self.log(u"Pretending to delete '%s'" %
|
|
|
|
smart_unicode(fpath), level=1)
|
2011-07-05 05:34:29 +08:00
|
|
|
else:
|
|
|
|
self.log(u"Deleting '%s'" % smart_unicode(fpath), level=1)
|
|
|
|
self.storage.delete(fpath)
|
|
|
|
for d in dirs:
|
|
|
|
self.clear_dir(os.path.join(path, d))
|
|
|
|
|
|
|
|
def delete_file(self, path, prefixed_path, source_storage):
|
2011-02-02 03:19:52 +08:00
|
|
|
# Whether we are in symlink mode
|
|
|
|
# Checks if the target file should be deleted if it already exists
|
|
|
|
if self.storage.exists(prefixed_path):
|
2010-10-20 09:33:24 +08:00
|
|
|
try:
|
2011-02-02 03:19:52 +08:00
|
|
|
# When was the target file modified last time?
|
2011-08-11 22:07:39 +08:00
|
|
|
target_last_modified = \
|
|
|
|
self.storage.modified_time(prefixed_path)
|
2010-10-20 09:33:24 +08:00
|
|
|
except (OSError, NotImplementedError):
|
2011-02-02 03:19:52 +08:00
|
|
|
# The storage doesn't support ``modified_time`` or failed
|
2010-10-20 09:33:24 +08:00
|
|
|
pass
|
|
|
|
else:
|
2011-02-02 03:19:52 +08:00
|
|
|
try:
|
|
|
|
# When was the source file modified last time?
|
|
|
|
source_last_modified = source_storage.modified_time(path)
|
|
|
|
except (OSError, NotImplementedError):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
# The full path of the target file
|
|
|
|
if self.local:
|
|
|
|
full_path = self.storage.path(prefixed_path)
|
|
|
|
else:
|
|
|
|
full_path = None
|
|
|
|
# Skip the file if the source file is younger
|
|
|
|
if target_last_modified >= source_last_modified:
|
2011-08-11 22:07:39 +08:00
|
|
|
if not ((self.symlink and full_path
|
|
|
|
and not os.path.islink(full_path)) or
|
|
|
|
(not self.symlink and full_path
|
|
|
|
and os.path.islink(full_path))):
|
2011-02-02 03:19:52 +08:00
|
|
|
if prefixed_path not in self.unmodified_files:
|
|
|
|
self.unmodified_files.append(prefixed_path)
|
2011-02-15 07:45:32 +08:00
|
|
|
self.log(u"Skipping '%s' (not modified)" % path)
|
2011-02-02 03:19:52 +08:00
|
|
|
return False
|
|
|
|
# Then delete the existing file if really needed
|
2011-07-05 05:34:29 +08:00
|
|
|
if self.dry_run:
|
2011-02-15 07:45:32 +08:00
|
|
|
self.log(u"Pretending to delete '%s'" % path)
|
2010-10-20 09:33:24 +08:00
|
|
|
else:
|
2011-02-15 07:45:32 +08:00
|
|
|
self.log(u"Deleting '%s'" % path)
|
2011-02-02 03:19:52 +08:00
|
|
|
self.storage.delete(prefixed_path)
|
|
|
|
return True
|
2010-10-20 09:33:24 +08:00
|
|
|
|
2011-07-05 05:34:29 +08:00
|
|
|
def link_file(self, path, prefixed_path, source_storage):
|
2011-02-02 03:19:52 +08:00
|
|
|
"""
|
|
|
|
Attempt to link ``path``
|
|
|
|
"""
|
|
|
|
# Skip this file if it was already copied earlier
|
|
|
|
if prefixed_path in self.symlinked_files:
|
2011-02-15 07:45:32 +08:00
|
|
|
return self.log(u"Skipping '%s' (already linked earlier)" % path)
|
2011-02-02 03:19:52 +08:00
|
|
|
# Delete the target file if needed or break
|
2011-07-05 05:34:29 +08:00
|
|
|
if not self.delete_file(path, prefixed_path, source_storage):
|
2011-02-02 03:19:52 +08:00
|
|
|
return
|
|
|
|
# The full path of the source file
|
|
|
|
source_path = source_storage.path(path)
|
|
|
|
# Finally link the file
|
2011-07-05 05:34:29 +08:00
|
|
|
if self.dry_run:
|
2011-02-15 07:45:32 +08:00
|
|
|
self.log(u"Pretending to link '%s'" % source_path, level=1)
|
2011-02-02 03:19:52 +08:00
|
|
|
else:
|
2011-02-15 07:45:32 +08:00
|
|
|
self.log(u"Linking '%s'" % source_path, level=1)
|
2011-02-02 03:19:52 +08:00
|
|
|
full_path = self.storage.path(prefixed_path)
|
|
|
|
try:
|
|
|
|
os.makedirs(os.path.dirname(full_path))
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
os.symlink(source_path, full_path)
|
|
|
|
if prefixed_path not in self.symlinked_files:
|
|
|
|
self.symlinked_files.append(prefixed_path)
|
|
|
|
|
2011-07-05 05:34:29 +08:00
|
|
|
def copy_file(self, path, prefixed_path, source_storage):
|
2011-02-02 03:19:52 +08:00
|
|
|
"""
|
|
|
|
Attempt to copy ``path`` with storage
|
|
|
|
"""
|
|
|
|
# Skip this file if it was already copied earlier
|
|
|
|
if prefixed_path in self.copied_files:
|
2011-02-15 07:45:32 +08:00
|
|
|
return self.log(u"Skipping '%s' (already copied earlier)" % path)
|
2011-02-02 03:19:52 +08:00
|
|
|
# Delete the target file if needed or break
|
2011-07-05 05:34:29 +08:00
|
|
|
if not self.delete_file(path, prefixed_path, source_storage):
|
2011-02-02 03:19:52 +08:00
|
|
|
return
|
|
|
|
# The full path of the source file
|
|
|
|
source_path = source_storage.path(path)
|
|
|
|
# Finally start copying
|
2011-07-05 05:34:29 +08:00
|
|
|
if self.dry_run:
|
2011-02-15 07:45:32 +08:00
|
|
|
self.log(u"Pretending to copy '%s'" % source_path, level=1)
|
2011-02-02 03:19:52 +08:00
|
|
|
else:
|
2011-02-15 07:45:32 +08:00
|
|
|
self.log(u"Copying '%s'" % source_path, level=1)
|
2011-02-02 03:19:52 +08:00
|
|
|
if self.local:
|
|
|
|
full_path = self.storage.path(prefixed_path)
|
2010-10-20 09:33:24 +08:00
|
|
|
try:
|
2011-02-02 03:19:52 +08:00
|
|
|
os.makedirs(os.path.dirname(full_path))
|
2010-10-20 09:33:24 +08:00
|
|
|
except OSError:
|
|
|
|
pass
|
2011-07-08 17:39:56 +08:00
|
|
|
with source_storage.open(path) as source_file:
|
|
|
|
self.storage.save(prefixed_path, source_file)
|
2011-02-02 03:19:52 +08:00
|
|
|
if not prefixed_path in self.copied_files:
|
|
|
|
self.copied_files.append(prefixed_path)
|