mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2208 from tastychutney/devel
Better documentation, removed runfcgi, added createcachetable
This commit is contained in:
commit
b1a4fab7e1
1 changed files with 49 additions and 39 deletions
|
@ -24,54 +24,55 @@ DOCUMENTATION = '''
|
||||||
module: django-manage
|
module: django-manage
|
||||||
short_description: Manages a Django application.
|
short_description: Manages a Django application.
|
||||||
description:
|
description:
|
||||||
- Manages a Django application.
|
- Manages a Django application using the I(manage.py) application frontend to I(django-admin). With the I(virtualenv) parameter, all management commands will be executed by the given I(virtualenv) installation.
|
||||||
version_added: "1.1"
|
version_added: "1.1"
|
||||||
options:
|
options:
|
||||||
command:
|
command:
|
||||||
choices: [ 'cleanup', 'flush', 'loaddata', 'runfcgi', 'syncdb', 'test', 'validate' ]
|
choices: [ 'cleanup', 'flush', 'loaddata', 'runfcgi', 'syncdb', 'test', 'validate' ]
|
||||||
description:
|
description:
|
||||||
- The name of the Django management command to run.
|
- The name of the Django management command to run. Allowed commands are cleanup, createcachetable, flush, loaddata, syncdb, test, validate.
|
||||||
required: true
|
required: true
|
||||||
app_path:
|
app_path:
|
||||||
description:
|
description:
|
||||||
- The path to the root of the Django application
|
- The path to the root of the Django application where B(manage.py) lives.
|
||||||
required: true
|
required: true
|
||||||
settings:
|
settings:
|
||||||
description:
|
description:
|
||||||
- The Python path to a settings module.
|
- The Python path to the application's settings module, such as 'myapp.settings'.
|
||||||
required: false
|
required: false
|
||||||
pythonpath:
|
pythonpath:
|
||||||
description:
|
description:
|
||||||
- A directory to add to the Python path
|
- A directory to add to the Python path. Typically used to include the settings module if it is located external to the application directory.
|
||||||
required: false
|
required: false
|
||||||
virtualenv:
|
virtualenv:
|
||||||
description:
|
description:
|
||||||
- An optional path to a I(virtualenv) directory to use while running the manage application
|
- An optional path to a I(virtualenv) installation to use while running the manage application.
|
||||||
required: false
|
required: false
|
||||||
apps:
|
apps:
|
||||||
description:
|
description:
|
||||||
- A list of space-delimited apps to target, used for some commands
|
- A list of space-delimited apps to target. Used by the 'test' command.
|
||||||
|
required: false
|
||||||
|
cache_table:
|
||||||
|
description:
|
||||||
|
- The name of the table used for database-backed caching. Used by the 'createcachetable' command.
|
||||||
required: false
|
required: false
|
||||||
database:
|
database:
|
||||||
description:
|
description:
|
||||||
- The database to target, used for some commands
|
- The database to target. Used by the 'createcachetable', 'flush', 'loaddata', and 'syncdb' commands.
|
||||||
required: false
|
|
||||||
extra_args:
|
|
||||||
description:
|
|
||||||
- Extra arguments to append to the command string; used only for runfcgi
|
|
||||||
required: false
|
required: false
|
||||||
failfast:
|
failfast:
|
||||||
description:
|
description:
|
||||||
- Fail the command immediately if a test fails.
|
- Fail the command immediately if a test fails. Used by the 'test' command.
|
||||||
required: false
|
required: false
|
||||||
fixtures:
|
fixtures:
|
||||||
description:
|
description:
|
||||||
- A space-delimited list of fixture file names to load in the database.
|
- A space-delimited list of fixture file names to load in the database. B(Required) by the 'loaddata' command.
|
||||||
required: false
|
required: false
|
||||||
requirements: [ "virtualenv", "django" ]
|
|
||||||
notes:
|
notes:
|
||||||
- Please note that U(http://www.virtualenv.org/, virtualenv) must be installed on the remote host if the virtualenv parameter is specified.
|
- U(http://www.virtualenv.org/, virtualenv) must be installed on the remote host if the virtualenv parameter is specified.
|
||||||
- Please note that I(flup) must be installed on the remote host if using the I(runfcgi) command.
|
- This module will create a virtualenv if one does not already exist.
|
||||||
|
- This module assumes English error messages for the 'createcachetable' command to detect table existence, unfortunately.
|
||||||
|
requirements: [ "virtualenv", "django" ]
|
||||||
author: Scott Anderson
|
author: Scott Anderson
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -90,6 +91,9 @@ django-manage: >
|
||||||
pythonpath=$settings_dir
|
pythonpath=$settings_dir
|
||||||
virtualenv=$virtualenv_dir
|
virtualenv=$virtualenv_dir
|
||||||
database=$mydb
|
database=$mydb
|
||||||
|
|
||||||
|
#Run the SmokeTest test case from the main app. Useful for testing deploys.
|
||||||
|
django-manage command=test app_path=django_dir apps=main.SmokeTest
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
@ -121,6 +125,9 @@ def _ensure_virtualenv(module):
|
||||||
|
|
||||||
os.environ["PATH"] = "%s:%s" % (vbin, os.environ["PATH"])
|
os.environ["PATH"] = "%s:%s" % (vbin, os.environ["PATH"])
|
||||||
|
|
||||||
|
def createcachetable_filter_output(line):
|
||||||
|
return "Already exists" not in line
|
||||||
|
|
||||||
def flush_filter_output(line):
|
def flush_filter_output(line):
|
||||||
return "Installed" in line and "Installed 0 object" not in line
|
return "Installed" in line and "Installed 0 object" not in line
|
||||||
|
|
||||||
|
@ -133,9 +140,9 @@ def syncdb_filter_output(line):
|
||||||
def main():
|
def main():
|
||||||
command_allowed_param_map = dict(
|
command_allowed_param_map = dict(
|
||||||
cleanup=(),
|
cleanup=(),
|
||||||
|
createcachetable=('cache_table', 'database', ),
|
||||||
flush=('database', ),
|
flush=('database', ),
|
||||||
loaddata=('database', 'fixtures', ),
|
loaddata=('database', 'fixtures', ),
|
||||||
runfcgi=('extra_args', ),
|
|
||||||
syncdb=('database', ),
|
syncdb=('database', ),
|
||||||
test=('failfast', 'testrunner', 'liveserver', 'apps', ),
|
test=('failfast', 'testrunner', 'liveserver', 'apps', ),
|
||||||
validate=(),
|
validate=(),
|
||||||
|
@ -143,6 +150,7 @@ def main():
|
||||||
|
|
||||||
command_required_param_map = dict(
|
command_required_param_map = dict(
|
||||||
loaddata=('fixtures', ),
|
loaddata=('fixtures', ),
|
||||||
|
createcachetable=('cache_table', ),
|
||||||
)
|
)
|
||||||
|
|
||||||
# forces --noinput on every command that needs it
|
# forces --noinput on every command that needs it
|
||||||
|
@ -153,12 +161,12 @@ def main():
|
||||||
)
|
)
|
||||||
|
|
||||||
# These params are allowed for certain commands only
|
# These params are allowed for certain commands only
|
||||||
specific_params = ('apps', 'database', 'extra_args', 'failfast', 'fixtures', 'liveserver', 'testrunner', )
|
specific_params = ('apps', 'database', 'failfast', 'fixtures', 'liveserver', 'testrunner', )
|
||||||
|
|
||||||
# These params are automatically added to the command if present
|
# These params are automatically added to the command if present
|
||||||
general_params = ('settings', 'pythonpath', )
|
general_params = ('settings', 'pythonpath', )
|
||||||
specific_boolean_params = ('failfast', )
|
specific_boolean_params = ('failfast', )
|
||||||
end_of_command_params = ('apps', 'fixtures', 'extra_args', )
|
end_of_command_params = ('apps', 'cache_table', 'fixtures', )
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
|
@ -167,9 +175,10 @@ def main():
|
||||||
settings = dict(default=None, required=False),
|
settings = dict(default=None, required=False),
|
||||||
pythonpath = dict(default=None, required=False, aliases=['python_path']),
|
pythonpath = dict(default=None, required=False, aliases=['python_path']),
|
||||||
virtualenv = dict(default=None, required=False, aliases=['virtual_env']),
|
virtualenv = dict(default=None, required=False, aliases=['virtual_env']),
|
||||||
|
|
||||||
apps = dict(default=None, required=False),
|
apps = dict(default=None, required=False),
|
||||||
|
cache_table = dict(default=None, required=False),
|
||||||
database = dict(default=None, required=False),
|
database = dict(default=None, required=False),
|
||||||
extra_args = dict(default=None, required=False),
|
|
||||||
failfast = dict(default='no', required=False, choices=BOOLEANS, aliases=['fail_fast']),
|
failfast = dict(default='no', required=False, choices=BOOLEANS, aliases=['fail_fast']),
|
||||||
fixtures = dict(default=None, required=False),
|
fixtures = dict(default=None, required=False),
|
||||||
liveserver = dict(default=None, required=False, aliases=['live_server']),
|
liveserver = dict(default=None, required=False, aliases=['live_server']),
|
||||||
|
@ -188,9 +197,7 @@ def main():
|
||||||
if value and param not in command_allowed_param_map[command]:
|
if value and param not in command_allowed_param_map[command]:
|
||||||
module.fail_json(msg='%s param is incompatible with command=%s' % (param, command))
|
module.fail_json(msg='%s param is incompatible with command=%s' % (param, command))
|
||||||
|
|
||||||
required = command_required_param_map.get(command, None)
|
for param in command_required_param_map.get(command, ()):
|
||||||
if required:
|
|
||||||
for param in required:
|
|
||||||
if not module.params[param]:
|
if not module.params[param]:
|
||||||
module.fail_json(msg='%s param is required for command=%s' % (param, command))
|
module.fail_json(msg='%s param is required for command=%s' % (param, command))
|
||||||
|
|
||||||
|
@ -219,6 +226,9 @@ def main():
|
||||||
|
|
||||||
rc, out, err = module.run_command(cmd)
|
rc, out, err = module.run_command(cmd)
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
|
if command == 'createcachetable' and 'table' in err and 'already exists' in err:
|
||||||
|
out = 'Already exists.'
|
||||||
|
else:
|
||||||
_fail(module, cmd, out, err, path=os.environ["PATH"], syspath=sys.path)
|
_fail(module, cmd, out, err, path=os.environ["PATH"], syspath=sys.path)
|
||||||
|
|
||||||
changed = False
|
changed = False
|
||||||
|
|
Loading…
Reference in a new issue