2012-08-01 09:49:01 +08:00
|
|
|
import warnings
|
|
|
|
|
2013-08-03 13:41:15 +08:00
|
|
|
from collections import OrderedDict
|
|
|
|
|
2013-12-28 04:25:35 +08:00
|
|
|
from django.apps import apps
|
2007-08-16 14:06:55 +08:00
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
2007-12-17 14:53:15 +08:00
|
|
|
from django.core import serializers
|
2011-09-11 06:46:44 +08:00
|
|
|
from django.db import router, DEFAULT_DB_ALIAS
|
2014-02-27 05:48:20 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango19Warning
|
2007-08-16 14:06:55 +08:00
|
|
|
|
2007-09-10 05:57:59 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
class Command(BaseCommand):
|
2014-06-07 04:39:33 +08:00
|
|
|
help = ("Output the contents of the database as a fixture of the given "
|
|
|
|
"format (using each model's default manager unless --all is "
|
|
|
|
"specified).")
|
|
|
|
|
|
|
|
def add_arguments(self, parser):
|
|
|
|
parser.add_argument('args', metavar='app_label[.ModelName]', nargs='*',
|
|
|
|
help='Restricts dumped data to the specified app_label or app_label.ModelName.')
|
|
|
|
parser.add_argument('--format', default='json', dest='format',
|
|
|
|
help='Specifies the output serialization format for fixtures.')
|
|
|
|
parser.add_argument('--indent', default=None, dest='indent', type=int,
|
|
|
|
help='Specifies the indent level to use when pretty-printing output.')
|
|
|
|
parser.add_argument('--database', action='store', dest='database',
|
2013-12-28 16:53:02 +08:00
|
|
|
default=DEFAULT_DB_ALIAS,
|
|
|
|
help='Nominates a specific database to dump fixtures from. '
|
2014-06-07 04:39:33 +08:00
|
|
|
'Defaults to the "default" database.')
|
|
|
|
parser.add_argument('-e', '--exclude', dest='exclude', action='append', default=[],
|
2013-12-28 16:53:02 +08:00
|
|
|
help='An app_label or app_label.ModelName to exclude '
|
2014-06-07 04:39:33 +08:00
|
|
|
'(use multiple --exclude to exclude multiple apps/models).')
|
|
|
|
parser.add_argument('-n', '--natural', action='store_true', dest='use_natural_keys', default=False,
|
|
|
|
help='Use natural keys if they are available (deprecated: use --natural-foreign instead).')
|
|
|
|
parser.add_argument('--natural-foreign', action='store_true', dest='use_natural_foreign_keys', default=False,
|
|
|
|
help='Use natural foreign keys if they are available.')
|
|
|
|
parser.add_argument('--natural-primary', action='store_true', dest='use_natural_primary_keys', default=False,
|
|
|
|
help='Use natural primary keys if they are available.')
|
|
|
|
parser.add_argument('-a', '--all', action='store_true', dest='use_base_manager', default=False,
|
2013-12-28 16:53:02 +08:00
|
|
|
help="Use Django's base manager to dump all models stored in the database, "
|
2014-06-07 04:39:33 +08:00
|
|
|
"including those that would otherwise be filtered or modified by a custom manager.")
|
|
|
|
parser.add_argument('--pks', dest='primary_keys',
|
2013-12-28 16:53:02 +08:00
|
|
|
help="Only dump objects with given primary keys. "
|
|
|
|
"Accepts a comma separated list of keys. "
|
2014-06-07 04:39:33 +08:00
|
|
|
"This option will only work when you specify one model.")
|
|
|
|
parser.add_argument('-o', '--output', default=None, dest='output',
|
|
|
|
help='Specifies file to which the output is written.')
|
2007-08-16 14:06:55 +08:00
|
|
|
|
|
|
|
def handle(self, *app_labels, **options):
|
2011-10-23 11:43:43 +08:00
|
|
|
format = options.get('format')
|
|
|
|
indent = options.get('indent')
|
|
|
|
using = options.get('database')
|
|
|
|
excludes = options.get('exclude')
|
2014-03-23 13:10:12 +08:00
|
|
|
output = options.get('output')
|
2011-10-23 11:43:43 +08:00
|
|
|
show_traceback = options.get('traceback')
|
|
|
|
use_natural_keys = options.get('use_natural_keys')
|
2012-08-01 09:49:01 +08:00
|
|
|
if use_natural_keys:
|
|
|
|
warnings.warn("``--natural`` is deprecated; use ``--natural-foreign`` instead.",
|
2014-02-27 05:48:20 +08:00
|
|
|
RemovedInDjango19Warning)
|
2012-08-01 09:49:01 +08:00
|
|
|
use_natural_foreign_keys = options.get('use_natural_foreign_keys') or use_natural_keys
|
|
|
|
use_natural_primary_keys = options.get('use_natural_primary_keys')
|
2011-10-23 11:43:43 +08:00
|
|
|
use_base_manager = options.get('use_base_manager')
|
2013-05-19 18:39:14 +08:00
|
|
|
pks = options.get('primary_keys')
|
|
|
|
|
|
|
|
if pks:
|
|
|
|
primary_keys = pks.split(',')
|
|
|
|
else:
|
2013-05-30 01:47:49 +08:00
|
|
|
primary_keys = []
|
2008-06-11 22:01:35 +08:00
|
|
|
|
2010-08-07 00:48:07 +08:00
|
|
|
excluded_apps = set()
|
|
|
|
excluded_models = set()
|
|
|
|
for exclude in excludes:
|
|
|
|
if '.' in exclude:
|
2013-12-28 21:55:54 +08:00
|
|
|
try:
|
2014-01-26 19:57:08 +08:00
|
|
|
model = apps.get_model(exclude)
|
2013-12-28 21:55:54 +08:00
|
|
|
except LookupError:
|
2010-08-07 00:48:07 +08:00
|
|
|
raise CommandError('Unknown model in excludes: %s' % exclude)
|
2013-12-28 04:25:35 +08:00
|
|
|
excluded_models.add(model)
|
2010-08-07 00:48:07 +08:00
|
|
|
else:
|
|
|
|
try:
|
2013-12-28 04:25:35 +08:00
|
|
|
app_config = apps.get_app_config(exclude)
|
2013-12-14 18:11:52 +08:00
|
|
|
except LookupError:
|
2010-08-07 00:48:07 +08:00
|
|
|
raise CommandError('Unknown app in excludes: %s' % exclude)
|
2013-12-28 04:25:35 +08:00
|
|
|
excluded_apps.add(app_config)
|
2007-08-16 14:06:55 +08:00
|
|
|
|
|
|
|
if len(app_labels) == 0:
|
2013-05-19 18:39:14 +08:00
|
|
|
if primary_keys:
|
|
|
|
raise CommandError("You can only use --pks option with one model")
|
2013-12-28 04:25:35 +08:00
|
|
|
app_list = OrderedDict((app_config, None)
|
2013-12-31 06:53:54 +08:00
|
|
|
for app_config in apps.get_app_configs()
|
|
|
|
if app_config.models_module is not None and app_config not in excluded_apps)
|
2007-08-16 14:06:55 +08:00
|
|
|
else:
|
2013-05-19 18:39:14 +08:00
|
|
|
if len(app_labels) > 1 and primary_keys:
|
|
|
|
raise CommandError("You can only use --pks option with one model")
|
2013-08-03 13:41:15 +08:00
|
|
|
app_list = OrderedDict()
|
2009-02-28 13:35:22 +08:00
|
|
|
for label in app_labels:
|
|
|
|
try:
|
|
|
|
app_label, model_label = label.split('.')
|
|
|
|
try:
|
2013-12-28 04:25:35 +08:00
|
|
|
app_config = apps.get_app_config(app_label)
|
2013-12-14 18:11:52 +08:00
|
|
|
except LookupError:
|
2009-02-28 13:35:22 +08:00
|
|
|
raise CommandError("Unknown application: %s" % app_label)
|
2013-12-28 04:25:35 +08:00
|
|
|
if app_config.models_module is None or app_config in excluded_apps:
|
2010-08-07 00:48:07 +08:00
|
|
|
continue
|
2013-12-28 21:55:54 +08:00
|
|
|
try:
|
2014-01-26 19:57:08 +08:00
|
|
|
model = app_config.get_model(model_label)
|
2013-12-28 21:55:54 +08:00
|
|
|
except LookupError:
|
2009-02-28 13:35:22 +08:00
|
|
|
raise CommandError("Unknown model: %s.%s" % (app_label, model_label))
|
|
|
|
|
2013-12-28 04:25:35 +08:00
|
|
|
app_list_value = app_list.setdefault(app_config, [])
|
2014-02-11 22:59:57 +08:00
|
|
|
|
|
|
|
# We may have previously seen a "all-models" request for
|
|
|
|
# this app (no model qualifier was given). In this case
|
|
|
|
# there is no need adding specific models to the list.
|
|
|
|
if app_list_value is not None:
|
|
|
|
if model not in app_list_value:
|
|
|
|
app_list_value.append(model)
|
2009-02-28 13:35:22 +08:00
|
|
|
except ValueError:
|
2013-05-19 18:39:14 +08:00
|
|
|
if primary_keys:
|
|
|
|
raise CommandError("You can only use --pks option with one model")
|
2009-02-28 13:35:22 +08:00
|
|
|
# This is just an app - no model qualifier
|
|
|
|
app_label = label
|
|
|
|
try:
|
2013-12-28 04:25:35 +08:00
|
|
|
app_config = apps.get_app_config(app_label)
|
2013-12-14 18:11:52 +08:00
|
|
|
except LookupError:
|
2009-02-28 13:35:22 +08:00
|
|
|
raise CommandError("Unknown application: %s" % app_label)
|
2013-12-28 04:25:35 +08:00
|
|
|
if app_config.models_module is None or app_config in excluded_apps:
|
2010-08-07 00:48:07 +08:00
|
|
|
continue
|
2013-12-28 04:25:35 +08:00
|
|
|
app_list[app_config] = None
|
2007-08-16 14:06:55 +08:00
|
|
|
|
|
|
|
# Check that the serialization format exists; this is a shortcut to
|
|
|
|
# avoid collating all the objects and _then_ failing.
|
2007-12-17 19:09:56 +08:00
|
|
|
if format not in serializers.get_public_serializer_formats():
|
2013-09-07 03:24:55 +08:00
|
|
|
try:
|
|
|
|
serializers.get_serializer(format)
|
|
|
|
except serializers.SerializerDoesNotExist:
|
|
|
|
pass
|
2007-12-17 14:53:15 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
raise CommandError("Unknown serialization format: %s" % format)
|
|
|
|
|
2012-05-26 17:43:37 +08:00
|
|
|
def get_objects():
|
|
|
|
# Collate the objects to be serialized.
|
2014-10-15 23:37:23 +08:00
|
|
|
for model in serializers.sort_dependencies(app_list.items()):
|
2012-05-26 17:43:37 +08:00
|
|
|
if model in excluded_models:
|
|
|
|
continue
|
2013-07-30 19:08:59 +08:00
|
|
|
if not model._meta.proxy and router.allow_migrate(using, model):
|
2012-05-26 17:43:37 +08:00
|
|
|
if use_base_manager:
|
|
|
|
objects = model._base_manager
|
|
|
|
else:
|
|
|
|
objects = model._default_manager
|
2013-05-19 18:39:14 +08:00
|
|
|
|
|
|
|
queryset = objects.using(using).order_by(model._meta.pk.name)
|
|
|
|
if primary_keys:
|
|
|
|
queryset = queryset.filter(pk__in=primary_keys)
|
|
|
|
for obj in queryset.iterator():
|
2012-05-26 17:43:37 +08:00
|
|
|
yield obj
|
2009-02-28 13:35:22 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
try:
|
2012-05-26 17:43:37 +08:00
|
|
|
self.stdout.ending = None
|
2014-05-26 04:08:05 +08:00
|
|
|
stream = open(output, 'w') if output else None
|
|
|
|
try:
|
|
|
|
serializers.serialize(format, get_objects(), indent=indent,
|
|
|
|
use_natural_foreign_keys=use_natural_foreign_keys,
|
|
|
|
use_natural_primary_keys=use_natural_primary_keys,
|
|
|
|
stream=stream or self.stdout)
|
|
|
|
finally:
|
|
|
|
if stream:
|
|
|
|
stream.close()
|
2012-04-29 00:09:37 +08:00
|
|
|
except Exception as e:
|
2007-12-17 19:09:32 +08:00
|
|
|
if show_traceback:
|
|
|
|
raise
|
2007-08-16 14:06:55 +08:00
|
|
|
raise CommandError("Unable to serialize database: %s" % e)
|