2012-08-07 22:38:04 +02:00
|
|
|
#!/usr/bin/python
|
2012-08-08 16:35:07 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2012, Matt Wright <matt@nobien.net>
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
2012-08-07 22:38:04 +02:00
|
|
|
|
2012-09-29 20:53:28 +02:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: pip
|
|
|
|
short_description: Manages Python library dependencies.
|
|
|
|
description:
|
|
|
|
- Manage Python library dependencies.
|
|
|
|
version_added: "0.7"
|
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- The name of a Python library to install
|
|
|
|
required: true
|
|
|
|
default: null
|
|
|
|
version:
|
|
|
|
description:
|
|
|
|
- The version number to install of the Python library specified in the 'name' parameter
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
requirements:
|
|
|
|
description:
|
|
|
|
- The path to a pip requirements file
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
virtualenv:
|
|
|
|
description:
|
|
|
|
- An optional path to a virtualenv directory to install into
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- The state of module
|
|
|
|
required: false
|
|
|
|
default: present
|
|
|
|
choices: [ "present", "absent", "latest" ]
|
|
|
|
examples:
|
|
|
|
- code: pip name=flask
|
|
|
|
description: Install I(flask) python package.
|
|
|
|
- code: pip name=flask version=0.8
|
|
|
|
description: Install I(flask) python package on version 0.8.
|
|
|
|
- code: pip name=flask virtualenv=/srv/webapps/my_app/venv
|
2012-10-01 09:18:54 +02:00
|
|
|
description: "Install I(Flask) (U(http://flask.pocoo.org/)) into the specified I(virtualenv)"
|
2012-09-29 20:53:28 +02:00
|
|
|
- code: pip requirements=/srv/webapps/my_app/src/requirements.txt
|
|
|
|
description: Install specified python requirements.
|
|
|
|
- code: pip requirements=/srv/webapps/my_app/src/requirements.txt virtualenv=/srv/webapps/my_app/venv
|
|
|
|
description: Install specified python requirements in indicated virtualenv.
|
|
|
|
notes:
|
|
|
|
- Please note that U(http://www.virtualenv.org/, virtualenv) must be installed on the remote host if the virtualenv parameter is specified.
|
2012-10-01 09:18:54 +02:00
|
|
|
requirements: [ "virtualenv", "pip" ]
|
2012-09-29 21:04:17 +02:00
|
|
|
author: Matt Wright
|
2012-09-29 20:53:28 +02:00
|
|
|
'''
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
def _get_full_name(name, version=None):
|
2012-08-09 23:54:29 +02:00
|
|
|
if version is None:
|
|
|
|
resp = name
|
|
|
|
else:
|
|
|
|
resp = name + '==' + version
|
|
|
|
return resp
|
2012-08-07 22:38:04 +02:00
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
def _ensure_virtualenv(module, env, virtualenv):
|
|
|
|
if os.path.exists(os.path.join(env, 'bin', 'activate')):
|
2012-08-07 22:38:04 +02:00
|
|
|
return 0, '', ''
|
|
|
|
else:
|
2012-08-10 21:58:58 +02:00
|
|
|
return _run('%s %s' % (virtualenv, env))
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
def _is_package_installed(name, pip, version=None):
|
|
|
|
rc, status_stdout, status_stderr = _run('%s freeze' % pip)
|
2012-08-07 22:38:04 +02:00
|
|
|
return _get_full_name(name, version).lower() in status_stdout.lower()
|
|
|
|
|
|
|
|
|
2012-08-08 16:35:07 +02:00
|
|
|
def _did_install(out):
|
|
|
|
return 'Successfully installed' in out
|
|
|
|
|
|
|
|
|
2012-08-07 22:38:04 +02:00
|
|
|
def _run(cmd):
|
|
|
|
# returns (rc, stdout, stderr) from shell command
|
|
|
|
process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE, shell=True)
|
|
|
|
stdout, stderr = process.communicate()
|
|
|
|
return (process.returncode, stdout, stderr)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2012-08-10 21:58:58 +02:00
|
|
|
pip = None
|
|
|
|
virtualenv = None
|
|
|
|
env = None
|
|
|
|
|
2012-08-07 22:38:04 +02:00
|
|
|
arg_spec = dict(
|
|
|
|
state=dict(default='present', choices=['absent', 'present', 'latest']),
|
|
|
|
name=dict(default=None, required=False),
|
|
|
|
version=dict(default=None, required=False),
|
|
|
|
requirements=dict(default=None, required=False),
|
|
|
|
virtualenv=dict(default=None, required=False)
|
|
|
|
)
|
|
|
|
|
2012-08-12 00:13:29 +02:00
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=arg_spec,
|
|
|
|
required_one_of=[['name','requirements']],
|
|
|
|
mutually_exclusive=[['name','requirements']],
|
|
|
|
)
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
rc = 0
|
|
|
|
err = ''
|
|
|
|
out = ''
|
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
env = module.params['virtualenv']
|
2012-08-07 22:38:04 +02:00
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
if env:
|
2012-08-30 19:31:23 +02:00
|
|
|
virtualenv = module.get_bin_path('virtualenv', True)
|
2012-08-07 22:38:04 +02:00
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
rc_venv, out_venv, err_venv = _ensure_virtualenv(module, env, virtualenv)
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
rc += rc_venv
|
|
|
|
out += out_venv
|
|
|
|
err += err_venv
|
|
|
|
|
2012-10-14 12:14:59 +02:00
|
|
|
pip = module.get_bin_path('python-pip', False, ['%s/bin' % env])
|
|
|
|
if not pip:
|
|
|
|
pip = module.get_bin_path('pip', True, ['%s/bin' % env])
|
2012-08-17 20:38:49 +02:00
|
|
|
|
2012-08-07 22:38:04 +02:00
|
|
|
state = module.params['state']
|
|
|
|
name = module.params['name']
|
|
|
|
version = module.params['version']
|
|
|
|
requirements = module.params['requirements']
|
|
|
|
command_map = dict(present='install', absent='uninstall', latest='install')
|
|
|
|
|
|
|
|
if state == 'latest' and version is not None:
|
2012-08-12 00:13:29 +02:00
|
|
|
module.fail_json(msg='version is incompatible with state=latest')
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
if state == 'latest' and requirements is not None:
|
2012-08-12 00:13:29 +02:00
|
|
|
module.fail_json(msg='requirements is incompatible with state=latest')
|
|
|
|
|
|
|
|
if name is not None and '=' in name:
|
|
|
|
module.fail_json(msg='versions must be specified in the version= parameter')
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
cmd = None
|
|
|
|
installed = None
|
|
|
|
|
|
|
|
if requirements:
|
2012-08-12 00:13:29 +02:00
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
cmd = '%s %s -r %s --use-mirrors' % (pip, command_map[state], requirements)
|
2012-08-07 22:38:04 +02:00
|
|
|
rc_pip, out_pip, err_pip = _run(cmd)
|
|
|
|
|
|
|
|
rc += rc_pip
|
|
|
|
out += out_pip
|
|
|
|
err += err_pip
|
|
|
|
|
2012-08-08 16:35:07 +02:00
|
|
|
changed = ((_did_install(out) and state == 'present') or
|
|
|
|
(not _did_install(out) and state == 'absent'))
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
if name and state == 'latest':
|
|
|
|
|
2012-08-12 00:13:29 +02:00
|
|
|
cmd = '%s %s %s --upgrade' % (pip, command_map[state], name)
|
2012-08-07 22:38:04 +02:00
|
|
|
rc_pip, out_pip, err_pip = _run(cmd)
|
|
|
|
|
|
|
|
rc += rc_pip
|
|
|
|
out += out_pip
|
|
|
|
err += err_pip
|
|
|
|
|
|
|
|
changed = 'Successfully installed' in out_pip
|
|
|
|
|
|
|
|
elif name:
|
2012-08-17 17:32:47 +02:00
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
installed = _is_package_installed(name, pip, version)
|
2012-08-07 22:38:04 +02:00
|
|
|
changed = ((installed and state == 'absent') or
|
|
|
|
(not installed and state == 'present'))
|
|
|
|
|
|
|
|
if changed:
|
2012-08-10 00:09:18 +02:00
|
|
|
if state == 'present':
|
2012-08-17 17:32:47 +02:00
|
|
|
full_name = _get_full_name(name, version)
|
|
|
|
else:
|
2012-08-10 00:09:18 +02:00
|
|
|
full_name = name
|
2012-08-07 22:38:04 +02:00
|
|
|
|
2012-08-10 21:58:58 +02:00
|
|
|
cmd = '%s %s %s' % (pip, command_map[state], full_name)
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
if state == 'absent':
|
|
|
|
cmd = cmd + ' -y'
|
|
|
|
else:
|
|
|
|
cmd = cmd + ' --use-mirrors'
|
|
|
|
|
|
|
|
rc_pip, out_pip, err_pip = _run(cmd)
|
2012-08-12 00:13:29 +02:00
|
|
|
rc += rc_pip
|
2012-08-07 22:38:04 +02:00
|
|
|
out += out_pip
|
|
|
|
err += err_pip
|
|
|
|
|
|
|
|
if rc != 0:
|
2012-08-17 17:32:47 +02:00
|
|
|
if not out:
|
|
|
|
msg = err
|
|
|
|
elif not err:
|
|
|
|
msg = out
|
|
|
|
else:
|
|
|
|
msg = "stdout: %s\n:stderr: %s" % (out, err)
|
|
|
|
module.fail_json(msg=msg, cmd=cmd)
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
module.exit_json(changed=changed, cmd=cmd, name=name, version=version,
|
2012-08-10 21:58:58 +02:00
|
|
|
state=state, requirements=requirements, virtualenv=env)
|
2012-08-07 22:38:04 +02:00
|
|
|
|
|
|
|
# this is magic, see lib/ansible/module_common.py
|
|
|
|
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
|
|
|
|
|
|
|
main()
|