2010-05-09 05:38:00 +08:00
|
|
|
|
====================================
|
2008-08-24 06:25:40 +08:00
|
|
|
|
Writing custom django-admin commands
|
|
|
|
|
====================================
|
|
|
|
|
|
2012-12-29 23:35:12 +08:00
|
|
|
|
.. module:: django.core.management
|
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
|
Applications can register their own actions with ``manage.py``. For example,
|
|
|
|
|
you might want to add a ``manage.py`` action for a Django app that you're
|
2010-06-05 13:26:04 +08:00
|
|
|
|
distributing. In this document, we will be building a custom ``closepoll``
|
2010-05-09 05:38:00 +08:00
|
|
|
|
command for the ``polls`` application from the
|
2010-08-20 03:27:44 +08:00
|
|
|
|
:doc:`tutorial</intro/tutorial01>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
To do this, just add a ``management/commands`` directory to the application.
|
2012-02-18 04:04:11 +08:00
|
|
|
|
Django will register a ``manage.py`` command for each Python module in that
|
|
|
|
|
directory whose name doesn't begin with an underscore. For example::
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
polls/
|
2008-08-24 06:25:40 +08:00
|
|
|
|
__init__.py
|
|
|
|
|
models.py
|
|
|
|
|
management/
|
|
|
|
|
__init__.py
|
|
|
|
|
commands/
|
|
|
|
|
__init__.py
|
2012-02-05 02:27:14 +08:00
|
|
|
|
_private.py
|
2010-05-09 05:38:00 +08:00
|
|
|
|
closepoll.py
|
|
|
|
|
tests.py
|
2008-08-24 06:25:40 +08:00
|
|
|
|
views.py
|
|
|
|
|
|
2014-07-08 06:04:00 +08:00
|
|
|
|
On Python 2, be sure to include ``__init__.py`` files in both the
|
|
|
|
|
``management`` and ``management/commands`` directories as done above or your
|
|
|
|
|
command will not be detected.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
In this example, the ``closepoll`` command will be made available to any project
|
|
|
|
|
that includes the ``polls`` application in :setting:`INSTALLED_APPS`.
|
|
|
|
|
|
2012-02-05 02:27:14 +08:00
|
|
|
|
The ``_private.py`` module will not be available as a management command.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
The ``closepoll.py`` module has only one requirement -- it must define a class
|
|
|
|
|
``Command`` that extends :class:`BaseCommand` or one of its
|
|
|
|
|
:ref:`subclasses<ref-basecommand-subclasses>`.
|
|
|
|
|
|
|
|
|
|
.. admonition:: Standalone scripts
|
|
|
|
|
|
|
|
|
|
Custom management commands are especially useful for running standalone
|
|
|
|
|
scripts or for scripts that are periodically executed from the UNIX crontab
|
|
|
|
|
or from Windows scheduled tasks control panel.
|
|
|
|
|
|
|
|
|
|
To implement the command, edit ``polls/management/commands/closepoll.py`` to
|
2014-08-18 22:30:44 +08:00
|
|
|
|
look like this::
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
2012-04-25 14:37:16 +08:00
|
|
|
|
from polls.models import Poll
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
|
help = 'Closes the specified poll for voting'
|
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
def add_arguments(self, parser):
|
|
|
|
|
parser.add_argument('poll_id', nargs='+', type=int)
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
def handle(self, *args, **options):
|
2014-06-06 23:55:56 +08:00
|
|
|
|
for poll_id in options['poll_id']:
|
2010-05-09 05:38:00 +08:00
|
|
|
|
try:
|
2014-06-06 23:55:56 +08:00
|
|
|
|
poll = Poll.objects.get(pk=poll_id)
|
2010-05-09 05:38:00 +08:00
|
|
|
|
except Poll.DoesNotExist:
|
|
|
|
|
raise CommandError('Poll "%s" does not exist' % poll_id)
|
|
|
|
|
|
|
|
|
|
poll.opened = False
|
|
|
|
|
poll.save()
|
|
|
|
|
|
2012-05-19 19:51:54 +08:00
|
|
|
|
self.stdout.write('Successfully closed poll "%s"' % poll_id)
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
Before Django 1.8, management commands were based on the :py:mod:`optparse`
|
|
|
|
|
module, and positional arguments were passed in ``*args`` while optional
|
|
|
|
|
arguments were passed in ``**options``. Now that management commands use
|
|
|
|
|
:py:mod:`argparse` for argument parsing, all arguments are passed in
|
|
|
|
|
``**options`` by default, unless you name your positional arguments to ``args``
|
|
|
|
|
(compatibility mode). You are encouraged to exclusively use ``**options`` for
|
|
|
|
|
new commands.
|
|
|
|
|
|
2013-02-09 17:17:26 +08:00
|
|
|
|
.. _management-commands-output:
|
|
|
|
|
|
2010-06-05 13:26:04 +08:00
|
|
|
|
.. note::
|
|
|
|
|
When you are using management commands and wish to provide console
|
|
|
|
|
output, you should write to ``self.stdout`` and ``self.stderr``,
|
|
|
|
|
instead of printing to ``stdout`` and ``stderr`` directly. By
|
|
|
|
|
using these proxies, it becomes much easier to test your custom
|
2013-02-09 17:17:26 +08:00
|
|
|
|
command. Note also that you don't need to end messages with a newline
|
|
|
|
|
character, it will be added automatically, unless you specify the ``ending``
|
|
|
|
|
parameter::
|
|
|
|
|
|
|
|
|
|
self.stdout.write("Unterminated line", ending='')
|
2010-06-05 13:26:04 +08:00
|
|
|
|
|
|
|
|
|
The new custom command can be called using ``python manage.py closepoll
|
2010-05-09 05:38:00 +08:00
|
|
|
|
<poll_id>``.
|
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
The ``handle()`` method takes one or more ``poll_ids`` and sets ``poll.opened``
|
2011-05-13 12:33:42 +08:00
|
|
|
|
to ``False`` for each one. If the user referenced any nonexistent polls, a
|
2010-05-09 05:38:00 +08:00
|
|
|
|
:class:`CommandError` is raised. The ``poll.opened`` attribute does not exist
|
2010-08-20 03:27:44 +08:00
|
|
|
|
in the :doc:`tutorial</intro/tutorial01>` and was added to
|
2010-05-09 05:38:00 +08:00
|
|
|
|
``polls.models.Poll`` for this example.
|
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
.. _custom-commands-options:
|
|
|
|
|
|
|
|
|
|
Accepting optional arguments
|
|
|
|
|
============================
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
The same ``closepoll`` could be easily modified to delete a given poll instead
|
2014-06-06 23:55:56 +08:00
|
|
|
|
of closing it by accepting additional command line options. These custom
|
2014-08-18 22:30:44 +08:00
|
|
|
|
options can be added in the :meth:`~BaseCommand.add_arguments` method like this::
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2014-06-06 23:55:56 +08:00
|
|
|
|
def add_arguments(self, parser):
|
|
|
|
|
# Positional arguments
|
|
|
|
|
parser.add_argument('poll_id', nargs='+', type=int)
|
|
|
|
|
|
|
|
|
|
# Named (optional) arguments
|
|
|
|
|
parser.add_argument('--delete',
|
2010-05-09 05:38:00 +08:00
|
|
|
|
action='store_true',
|
|
|
|
|
dest='delete',
|
|
|
|
|
default=False,
|
2014-06-06 23:55:56 +08:00
|
|
|
|
help='Delete poll instead of closing it')
|
2012-04-24 02:05:12 +08:00
|
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
|
# ...
|
|
|
|
|
if options['delete']:
|
|
|
|
|
poll.delete()
|
|
|
|
|
# ...
|
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
.. versionchanged:: 1.8
|
|
|
|
|
|
|
|
|
|
Previously, only the standard :py:mod:`optparse` library was supported and
|
|
|
|
|
you would have to extend the command ``option_list`` variable with
|
|
|
|
|
``optparse.make_option()``.
|
|
|
|
|
|
2012-04-24 02:05:12 +08:00
|
|
|
|
The option (``delete`` in our example) is available in the options dict
|
2014-06-06 23:55:56 +08:00
|
|
|
|
parameter of the handle method. See the :py:mod:`argparse` Python documentation
|
|
|
|
|
for more about ``add_argument`` usage.
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2010-06-05 13:26:04 +08:00
|
|
|
|
In addition to being able to add custom command line options, all
|
2010-08-20 03:27:44 +08:00
|
|
|
|
:doc:`management commands</ref/django-admin>` can accept some
|
2010-05-09 05:38:00 +08:00
|
|
|
|
default options such as :djadminopt:`--verbosity` and :djadminopt:`--traceback`.
|
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
.. _management-commands-and-locales:
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
Management commands and locales
|
|
|
|
|
===============================
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
By default, the :meth:`BaseCommand.execute` method sets the hardcoded 'en-us'
|
2013-02-04 19:55:45 +08:00
|
|
|
|
locale because some commands shipped with Django perform several tasks
|
2013-02-04 07:53:48 +08:00
|
|
|
|
(for example, user-facing content rendering and database population) that
|
|
|
|
|
require a system-neutral string language (for which we use 'en-us').
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
If, for some reason, your custom management command needs to use a fixed locale
|
|
|
|
|
different from 'en-us', you should manually activate and deactivate it in your
|
2014-06-18 07:07:54 +08:00
|
|
|
|
:meth:`~BaseCommand.handle` method using the functions provided by the I18N
|
2014-08-18 22:30:44 +08:00
|
|
|
|
support code::
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
|
from django.utils import translation
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
class Command(BaseCommand):
|
|
|
|
|
...
|
|
|
|
|
can_import_settings = True
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
def handle(self, *args, **options):
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
# Activate a fixed locale, e.g. Russian
|
|
|
|
|
translation.activate('ru')
|
|
|
|
|
|
|
|
|
|
# Or you can activate the LANGUAGE_CODE # chosen in the settings:
|
2014-08-18 22:30:44 +08:00
|
|
|
|
from django.conf import settings
|
|
|
|
|
translation.activate(settings.LANGUAGE_CODE)
|
2013-02-04 07:53:48 +08:00
|
|
|
|
|
|
|
|
|
# Your command logic here
|
2014-08-18 22:30:44 +08:00
|
|
|
|
...
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
translation.deactivate()
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
Another need might be that your command simply should use the locale set in
|
|
|
|
|
settings and Django should be kept from forcing it to 'en-us'. You can achieve
|
|
|
|
|
it by using the :data:`BaseCommand.leave_locale_alone` option.
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
When working on the scenarios described above though, take into account that
|
|
|
|
|
system management commands typically have to be very careful about running in
|
|
|
|
|
non-uniform locales, so you might need to:
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
* Make sure the :setting:`USE_I18N` setting is always ``True`` when running
|
|
|
|
|
the command (this is a good example of the potential problems stemming
|
|
|
|
|
from a dynamic runtime environment that Django commands avoid offhand by
|
|
|
|
|
always using a fixed locale).
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
* Review the code of your command and the code it calls for behavioral
|
|
|
|
|
differences when locales are changed and evaluate its impact on
|
|
|
|
|
predictable behavior of your command.
|
2011-01-03 22:27:28 +08:00
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
Command objects
|
|
|
|
|
===============
|
|
|
|
|
|
|
|
|
|
.. class:: BaseCommand
|
|
|
|
|
|
|
|
|
|
The base class from which all management commands ultimately derive.
|
|
|
|
|
|
|
|
|
|
Use this class if you want access to all of the mechanisms which
|
|
|
|
|
parse the command-line arguments and work out what code to call in
|
|
|
|
|
response; if you don't need to change any of that behavior,
|
|
|
|
|
consider using one of its :ref:`subclasses<ref-basecommand-subclasses>`.
|
|
|
|
|
|
|
|
|
|
Subclassing the :class:`BaseCommand` class requires that you implement the
|
|
|
|
|
:meth:`~BaseCommand.handle` method.
|
|
|
|
|
|
|
|
|
|
Attributes
|
|
|
|
|
----------
|
|
|
|
|
|
2010-06-05 13:26:04 +08:00
|
|
|
|
All attributes can be set in your derived class and can be used in
|
2013-08-06 00:23:26 +08:00
|
|
|
|
:class:`BaseCommand`’s :ref:`subclasses<ref-basecommand-subclasses>`.
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
|
|
|
|
.. attribute:: BaseCommand.args
|
|
|
|
|
|
|
|
|
|
A string listing the arguments accepted by the command,
|
|
|
|
|
suitable for use in help messages; e.g., a command which takes
|
2013-12-28 16:53:02 +08:00
|
|
|
|
a list of application names might set this to '<app_label
|
|
|
|
|
app_label ...>'.
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
.. deprecated:: 1.8
|
|
|
|
|
|
|
|
|
|
This should be done now in the :meth:`~BaseCommand.add_arguments()`
|
|
|
|
|
method, by calling the ``parser.add_argument()`` method. See the
|
|
|
|
|
``closepoll`` example above.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
.. attribute:: BaseCommand.can_import_settings
|
|
|
|
|
|
|
|
|
|
A boolean indicating whether the command needs to be able to
|
|
|
|
|
import Django settings; if ``True``, ``execute()`` will verify
|
|
|
|
|
that this is possible before proceeding. Default value is
|
|
|
|
|
``True``.
|
|
|
|
|
|
|
|
|
|
.. attribute:: BaseCommand.help
|
|
|
|
|
|
|
|
|
|
A short description of the command, which will be printed in the
|
2010-06-05 13:26:04 +08:00
|
|
|
|
help message when the user runs the command
|
2010-05-09 05:38:00 +08:00
|
|
|
|
``python manage.py help <command>``.
|
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
.. attribute:: BaseCommand.missing_args_message
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 1.8
|
|
|
|
|
|
|
|
|
|
If your command defines mandatory positional arguments, you can customize
|
|
|
|
|
the message error returned in the case of missing arguments. The default is
|
|
|
|
|
output by :py:mod:`argparse` ("too few arguments").
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
.. attribute:: BaseCommand.option_list
|
|
|
|
|
|
|
|
|
|
This is the list of ``optparse`` options which will be fed
|
|
|
|
|
into the command's ``OptionParser`` for parsing arguments.
|
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
.. deprecated:: 1.8
|
|
|
|
|
|
|
|
|
|
You should now override the :meth:`~BaseCommand.add_arguments` method to
|
|
|
|
|
add custom arguments accepted by your command.
|
|
|
|
|
See :ref:`the example above <custom-commands-options>`.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
.. attribute:: BaseCommand.output_transaction
|
|
|
|
|
|
|
|
|
|
A boolean indicating whether the command outputs SQL
|
|
|
|
|
statements; if ``True``, the output will automatically be
|
|
|
|
|
wrapped with ``BEGIN;`` and ``COMMIT;``. Default value is
|
|
|
|
|
``False``.
|
|
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
|
.. attribute:: BaseCommand.requires_system_checks
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 1.7
|
|
|
|
|
|
|
|
|
|
A boolean; if ``True``, the entire Django project will be checked for
|
|
|
|
|
potential problems prior to executing the command. If
|
|
|
|
|
``requires_system_checks`` is missing, the value of
|
|
|
|
|
``requires_model_validation`` is used. If the latter flag is missing
|
|
|
|
|
as well, the default value (``True``) is used. Defining both
|
|
|
|
|
``requires_system_checks`` and ``requires_model_validation`` will result
|
|
|
|
|
in an error.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
.. attribute:: BaseCommand.requires_model_validation
|
|
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
|
.. deprecated:: 1.7
|
|
|
|
|
Replaced by ``requires_system_checks``
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
A boolean; if ``True``, validation of installed models will be
|
|
|
|
|
performed prior to executing the command. Default value is
|
|
|
|
|
``True``. To validate an individual application's models
|
|
|
|
|
rather than all applications' models, call
|
|
|
|
|
:meth:`~BaseCommand.validate` from :meth:`~BaseCommand.handle`.
|
|
|
|
|
|
2013-02-04 07:53:48 +08:00
|
|
|
|
.. attribute:: BaseCommand.leave_locale_alone
|
|
|
|
|
|
|
|
|
|
A boolean indicating whether the locale set in settings should be preserved
|
|
|
|
|
during the execution of the command instead of being forcibly set to 'en-us'.
|
|
|
|
|
|
|
|
|
|
Default value is ``False``.
|
|
|
|
|
|
|
|
|
|
Make sure you know what you are doing if you decide to change the value of
|
2013-02-04 19:55:45 +08:00
|
|
|
|
this option in your custom command if it creates database content that
|
|
|
|
|
is locale-sensitive and such content shouldn't contain any translations (like
|
2013-07-24 19:14:32 +08:00
|
|
|
|
it happens e.g. with django.contrib.auth permissions) as making the locale
|
2013-02-04 19:55:45 +08:00
|
|
|
|
differ from the de facto default 'en-us' might cause unintended effects. See
|
|
|
|
|
the `Management commands and locales`_ section above for further details.
|
2013-02-04 07:53:48 +08:00
|
|
|
|
|
|
|
|
|
This option can't be ``False`` when the
|
|
|
|
|
:data:`~BaseCommand.can_import_settings` option is set to ``False`` too
|
|
|
|
|
because attempting to set the locale needs access to settings. This condition
|
|
|
|
|
will generate a :class:`CommandError`.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
Methods
|
|
|
|
|
-------
|
|
|
|
|
|
|
|
|
|
:class:`BaseCommand` has a few methods that can be overridden but only
|
|
|
|
|
the :meth:`~BaseCommand.handle` method must be implemented.
|
|
|
|
|
|
|
|
|
|
.. admonition:: Implementing a constructor in a subclass
|
|
|
|
|
|
2014-08-18 22:30:44 +08:00
|
|
|
|
If you implement ``__init__`` in your subclass of :class:`BaseCommand`,
|
|
|
|
|
you must call :class:`BaseCommand`’s ``__init__``::
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2014-08-18 22:30:44 +08:00
|
|
|
|
class Command(BaseCommand):
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
|
super(Command, self).__init__(*args, **kwargs)
|
|
|
|
|
# ...
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2014-06-06 23:55:56 +08:00
|
|
|
|
.. method:: BaseCommand.add_arguments(parser)
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 1.8
|
|
|
|
|
|
|
|
|
|
Entry point to add parser arguments to handle command line arguments passed
|
|
|
|
|
to the command. Custom commands should override this method to add both
|
|
|
|
|
positional and optional arguments accepted by the command. Calling
|
|
|
|
|
``super()`` is not needed when directly subclassing ``BaseCommand``.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
.. method:: BaseCommand.get_version()
|
|
|
|
|
|
|
|
|
|
Return the Django version, which should be correct for all
|
|
|
|
|
built-in Django commands. User-supplied commands can
|
|
|
|
|
override this method to return their own version.
|
|
|
|
|
|
|
|
|
|
.. method:: BaseCommand.execute(*args, **options)
|
|
|
|
|
|
|
|
|
|
Try to execute this command, performing model validation if
|
|
|
|
|
needed (as controlled by the attribute
|
|
|
|
|
:attr:`requires_model_validation`). If the command raises a
|
|
|
|
|
:class:`CommandError`, intercept it and print it sensibly to
|
|
|
|
|
stderr.
|
|
|
|
|
|
2012-03-03 01:13:53 +08:00
|
|
|
|
.. admonition:: Calling a management command in your code
|
|
|
|
|
|
|
|
|
|
``execute()`` should not be called directly from your code to execute a
|
|
|
|
|
command. Use :ref:`call_command <call-command>` instead.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
.. method:: BaseCommand.handle(*args, **options)
|
|
|
|
|
|
|
|
|
|
The actual logic of the command. Subclasses must implement this method.
|
|
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
|
.. method:: BaseCommand.check(app_configs=None, tags=None, display_num_errors=False)
|
2012-12-29 23:35:12 +08:00
|
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
|
.. versionadded:: 1.7
|
|
|
|
|
|
|
|
|
|
Uses the system check framework to inspect the entire Django project for
|
|
|
|
|
potential problems. Serious problems are raised as a :class:`CommandError`;
|
|
|
|
|
warnings are output to stderr; minor notifications are output to stdout.
|
|
|
|
|
|
2014-06-26 17:33:09 +08:00
|
|
|
|
If ``app_configs`` and ``tags`` are both ``None``, all system checks are
|
|
|
|
|
performed. ``tags`` can be a list of check tags, like ``compatibility`` or
|
|
|
|
|
``models``.
|
2014-01-20 10:45:21 +08:00
|
|
|
|
|
|
|
|
|
.. method:: BaseCommand.validate(app=None, display_num_errors=False)
|
2012-12-29 23:35:12 +08:00
|
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
|
.. deprecated:: 1.7
|
|
|
|
|
Replaced with the :djadmin:`check` command
|
2012-12-29 23:35:12 +08:00
|
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
|
If ``app`` is None, then all installed apps are checked for errors.
|
2012-12-29 23:35:12 +08:00
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
.. _ref-basecommand-subclasses:
|
|
|
|
|
|
|
|
|
|
BaseCommand subclasses
|
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
|
|
.. class:: AppCommand
|
|
|
|
|
|
2013-12-25 06:43:47 +08:00
|
|
|
|
A management command which takes one or more installed application labels as
|
|
|
|
|
arguments, and does something with each of them.
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2013-12-25 06:43:47 +08:00
|
|
|
|
Rather than implementing :meth:`~BaseCommand.handle`, subclasses must
|
|
|
|
|
implement :meth:`~AppCommand.handle_app_config`, which will be called once for
|
|
|
|
|
each application.
|
|
|
|
|
|
|
|
|
|
.. method:: AppCommand.handle_app_config(app_config, **options)
|
|
|
|
|
|
|
|
|
|
Perform the command's actions for ``app_config``, which will be an
|
|
|
|
|
:class:`~django.apps.AppConfig` instance corresponding to an application
|
|
|
|
|
label given on the command line.
|
|
|
|
|
|
|
|
|
|
.. versionchanged:: 1.7
|
|
|
|
|
|
|
|
|
|
Previously, :class:`AppCommand` subclasses had to implement
|
|
|
|
|
``handle_app(app, **options)`` where ``app`` was a models module. The new
|
|
|
|
|
API makes it possible to handle applications without a models module. The
|
|
|
|
|
fastest way to migrate is as follows::
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2013-12-25 06:43:47 +08:00
|
|
|
|
def handle_app_config(app_config, **options):
|
|
|
|
|
if app_config.models_module is None:
|
|
|
|
|
return # Or raise an exception.
|
|
|
|
|
app = app_config.models_module
|
|
|
|
|
# Copy the implementation of handle_app(app_config, **options) here.
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
2013-12-25 06:43:47 +08:00
|
|
|
|
However, you may be able to simplify the implementation by using directly
|
|
|
|
|
the attributes of ``app_config``.
|
2010-05-09 05:38:00 +08:00
|
|
|
|
|
|
|
|
|
.. class:: LabelCommand
|
|
|
|
|
|
|
|
|
|
A management command which takes one or more arbitrary arguments
|
|
|
|
|
(labels) on the command line, and does something with each of
|
|
|
|
|
them.
|
|
|
|
|
|
|
|
|
|
Rather than implementing :meth:`~BaseCommand.handle`, subclasses must implement
|
|
|
|
|
:meth:`~LabelCommand.handle_label`, which will be called once for each label.
|
|
|
|
|
|
|
|
|
|
.. method:: LabelCommand.handle_label(label, **options)
|
|
|
|
|
|
|
|
|
|
Perform the command's actions for ``label``, which will be the
|
|
|
|
|
string as given on the command line.
|
|
|
|
|
|
|
|
|
|
.. class:: NoArgsCommand
|
|
|
|
|
|
2014-06-18 07:07:54 +08:00
|
|
|
|
.. deprecated:: 1.8
|
|
|
|
|
|
|
|
|
|
Use :class:`BaseCommand` instead, which takes no arguments by default.
|
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
A command which takes no arguments on the command line.
|
|
|
|
|
|
|
|
|
|
Rather than implementing :meth:`~BaseCommand.handle`, subclasses must implement
|
2010-06-05 13:26:04 +08:00
|
|
|
|
:meth:`~NoArgsCommand.handle_noargs`; :meth:`~BaseCommand.handle` itself is
|
2010-05-09 05:38:00 +08:00
|
|
|
|
overridden to ensure no arguments are passed to the command.
|
|
|
|
|
|
|
|
|
|
.. method:: NoArgsCommand.handle_noargs(**options)
|
|
|
|
|
|
|
|
|
|
Perform this command's actions
|
|
|
|
|
|
|
|
|
|
.. _ref-command-exceptions:
|
|
|
|
|
|
|
|
|
|
Command exceptions
|
|
|
|
|
------------------
|
|
|
|
|
|
|
|
|
|
.. class:: CommandError
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
Exception class indicating a problem while executing a management
|
|
|
|
|
command.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
2010-05-09 05:38:00 +08:00
|
|
|
|
If this exception is raised during the execution of a management
|
2012-05-27 02:50:44 +08:00
|
|
|
|
command from a command line console, it will be caught and turned into a
|
|
|
|
|
nicely-printed error message to the appropriate output stream (i.e., stderr);
|
|
|
|
|
as a result, raising this exception (with a sensible description of the
|
2010-05-09 05:38:00 +08:00
|
|
|
|
error) is the preferred way to indicate that something has gone
|
|
|
|
|
wrong in the execution of a command.
|
2012-05-27 02:50:44 +08:00
|
|
|
|
|
|
|
|
|
If a management command is called from code through
|
|
|
|
|
:ref:`call_command <call-command>`, it's up to you to catch the exception
|
|
|
|
|
when needed.
|