|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
# (c) 2013-2014, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
|
# (c) 2015 Toshio Kuratomi <tkuratomi@ansible.com>
|
|
|
|
|
#
|
|
|
|
|
# This file is part of Ansible
|
|
|
|
|
#
|
|
|
|
@ -15,6 +16,10 @@
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
# Make coding more python3-ish
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
# from python and deps
|
|
|
|
|
from cStringIO import StringIO
|
|
|
|
|
import inspect
|
|
|
|
@ -34,151 +39,153 @@ REPLACER_COMPLEX = "\"<<INCLUDE_ANSIBLE_MODULE_COMPLEX_ARGS>>\""
|
|
|
|
|
REPLACER_WINDOWS = "# POWERSHELL_COMMON"
|
|
|
|
|
REPLACER_VERSION = "\"<<ANSIBLE_VERSION>>\""
|
|
|
|
|
|
|
|
|
|
class ModuleReplacer(object):
|
|
|
|
|
# We could end up writing out parameters with unicode characters so we need to
|
|
|
|
|
# specify an encoding for the python source file
|
|
|
|
|
ENCODING_STRING = '# -*- coding: utf-8 -*-'
|
|
|
|
|
|
|
|
|
|
# TODO: Is there a reason we don't use __file__ here?
|
|
|
|
|
# Will this fail if ansible is run from an egg/wheel? Do we care?
|
|
|
|
|
_THIS_FILE = inspect.getfile(inspect.currentframe())
|
|
|
|
|
# we've moved the module_common relative to the snippets, so fix the path
|
|
|
|
|
_SNIPPET_PATH = os.path.join(os.path.dirname(this_file), '..', 'module_utils')
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************
|
|
|
|
|
|
|
|
|
|
def _slurp(path):
|
|
|
|
|
if not os.path.exists(path):
|
|
|
|
|
raise AnsibleError("imported module support code does not exist at %s" % path)
|
|
|
|
|
fd = open(path)
|
|
|
|
|
data = fd.read()
|
|
|
|
|
fd.close()
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
def _find_snippet_imports(module_data, module_path, strip_comments):
|
|
|
|
|
"""
|
|
|
|
|
Given the source of the module, convert it to a Jinja2 template to insert
|
|
|
|
|
module code and return whether it's a new or old style module.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
module_style = 'old'
|
|
|
|
|
if REPLACER in module_data:
|
|
|
|
|
module_style = 'new'
|
|
|
|
|
elif 'from ansible.module_utils.' in module_data:
|
|
|
|
|
module_style = 'new'
|
|
|
|
|
elif 'WANT_JSON' in module_data:
|
|
|
|
|
module_style = 'non_native_want_json'
|
|
|
|
|
|
|
|
|
|
output = StringIO()
|
|
|
|
|
lines = module_data.split('\n')
|
|
|
|
|
snippet_names = []
|
|
|
|
|
|
|
|
|
|
for line in lines:
|
|
|
|
|
|
|
|
|
|
if REPLACER in line:
|
|
|
|
|
output.write(_slurp(os.path.join(_SNIPPET_PATH, "basic.py")))
|
|
|
|
|
snippet_names.append('basic')
|
|
|
|
|
if REPLACER_WINDOWS in line:
|
|
|
|
|
ps_data = _slurp(os.path.join(_SNIPPET_PATH, "powershell.ps1"))
|
|
|
|
|
output.write(ps_data)
|
|
|
|
|
snippet_names.append('powershell')
|
|
|
|
|
elif line.startswith('from ansible.module_utils.'):
|
|
|
|
|
tokens=line.split(".")
|
|
|
|
|
import_error = False
|
|
|
|
|
if len(tokens) != 3:
|
|
|
|
|
import_error = True
|
|
|
|
|
if " import *" not in line:
|
|
|
|
|
import_error = True
|
|
|
|
|
if import_error:
|
|
|
|
|
raise AnsibleError("error importing module in %s, expecting format like 'from ansible.module_utils.basic import *'" % module_path)
|
|
|
|
|
snippet_name = tokens[2].split()[0]
|
|
|
|
|
snippet_names.append(snippet_name)
|
|
|
|
|
output.write(_slurp(os.path.join(_SNIPPET_PATH, snippet_name + ".py")))
|
|
|
|
|
else:
|
|
|
|
|
if strip_comments and line.startswith("#") or line == '':
|
|
|
|
|
pass
|
|
|
|
|
output.write(line)
|
|
|
|
|
output.write("\n")
|
|
|
|
|
|
|
|
|
|
if not module_path.endswith(".ps1"):
|
|
|
|
|
# Unixy modules
|
|
|
|
|
if len(snippet_names) > 0 and not 'basic' in snippet_names:
|
|
|
|
|
raise AnsibleError("missing required import in %s: from ansible.module_utils.basic import *" % module_path)
|
|
|
|
|
else:
|
|
|
|
|
# Windows modules
|
|
|
|
|
if len(snippet_names) > 0 and not 'powershell' in snippet_names:
|
|
|
|
|
raise AnsibleError("missing required import in %s: # POWERSHELL_COMMON" % module_path)
|
|
|
|
|
|
|
|
|
|
return (output.getvalue(), module_style)
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************
|
|
|
|
|
|
|
|
|
|
def modify_module(module_path, module_args, strip_comments=False):
|
|
|
|
|
"""
|
|
|
|
|
The Replacer is used to insert chunks of code into modules before
|
|
|
|
|
transfer. Rather than doing classical python imports, this allows for more
|
|
|
|
|
efficient transfer in a no-bootstrapping scenario by not moving extra files
|
|
|
|
|
over the wire, and also takes care of embedding arguments in the transferred
|
|
|
|
|
modules.
|
|
|
|
|
Used to insert chunks of code into modules before transfer rather than
|
|
|
|
|
doing regular python imports. This allows for more efficient transfer in
|
|
|
|
|
a non-bootstrapping scenario by not moving extra files over the wire and
|
|
|
|
|
also takes care of embedding arguments in the transferred modules.
|
|
|
|
|
|
|
|
|
|
This version is done in such a way that local imports can still be
|
|
|
|
|
used in the module code, so IDEs don't have to be aware of what is going on.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|
|
|
|
|
|
|
... will result in the insertion basic.py into the module
|
|
|
|
|
|
|
|
|
|
from the module_utils/ directory in the source tree.
|
|
|
|
|
... will result in the insertion of basic.py into the module
|
|
|
|
|
from the module_utils/ directory in the source tree.
|
|
|
|
|
|
|
|
|
|
All modules are required to import at least basic, though there will also
|
|
|
|
|
be other snippets.
|
|
|
|
|
|
|
|
|
|
For powershell, there's equivalent conventions like this:
|
|
|
|
|
|
|
|
|
|
# POWERSHELL_COMMON
|
|
|
|
|
|
|
|
|
|
Also results in the inclusion of the common code in powershell.ps1
|
|
|
|
|
which results in the inclusion of the common code from powershell.ps1
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************
|
|
|
|
|
|
|
|
|
|
def __init__(self, strip_comments=False):
|
|
|
|
|
# FIXME: these members need to be prefixed with '_' and the rest of the file fixed
|
|
|
|
|
this_file = inspect.getfile(inspect.currentframe())
|
|
|
|
|
# we've moved the module_common relative to the snippets, so fix the path
|
|
|
|
|
self.snippet_path = os.path.join(os.path.dirname(this_file), '..', 'module_utils')
|
|
|
|
|
self.strip_comments = strip_comments
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def slurp(self, path):
|
|
|
|
|
if not os.path.exists(path):
|
|
|
|
|
raise AnsibleError("imported module support code does not exist at %s" % path)
|
|
|
|
|
fd = open(path)
|
|
|
|
|
data = fd.read()
|
|
|
|
|
fd.close()
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
def _find_snippet_imports(self, module_data, module_path):
|
|
|
|
|
"""
|
|
|
|
|
Given the source of the module, convert it to a Jinja2 template to insert
|
|
|
|
|
module code and return whether it's a new or old style module.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
module_style = 'old'
|
|
|
|
|
if REPLACER in module_data:
|
|
|
|
|
module_style = 'new'
|
|
|
|
|
elif 'from ansible.module_utils.' in module_data:
|
|
|
|
|
module_style = 'new'
|
|
|
|
|
elif 'WANT_JSON' in module_data:
|
|
|
|
|
module_style = 'non_native_want_json'
|
|
|
|
|
|
|
|
|
|
output = StringIO()
|
|
|
|
|
lines = module_data.split('\n')
|
|
|
|
|
snippet_names = []
|
|
|
|
|
|
|
|
|
|
for line in lines:
|
|
|
|
|
|
|
|
|
|
if REPLACER in line:
|
|
|
|
|
output.write(self.slurp(os.path.join(self.snippet_path, "basic.py")))
|
|
|
|
|
snippet_names.append('basic')
|
|
|
|
|
if REPLACER_WINDOWS in line:
|
|
|
|
|
ps_data = self.slurp(os.path.join(self.snippet_path, "powershell.ps1"))
|
|
|
|
|
output.write(ps_data)
|
|
|
|
|
snippet_names.append('powershell')
|
|
|
|
|
elif line.startswith('from ansible.module_utils.'):
|
|
|
|
|
tokens=line.split(".")
|
|
|
|
|
import_error = False
|
|
|
|
|
if len(tokens) != 3:
|
|
|
|
|
import_error = True
|
|
|
|
|
if " import *" not in line:
|
|
|
|
|
import_error = True
|
|
|
|
|
if import_error:
|
|
|
|
|
raise AnsibleError("error importing module in %s, expecting format like 'from ansible.module_utils.basic import *'" % module_path)
|
|
|
|
|
snippet_name = tokens[2].split()[0]
|
|
|
|
|
snippet_names.append(snippet_name)
|
|
|
|
|
output.write(self.slurp(os.path.join(self.snippet_path, snippet_name + ".py")))
|
|
|
|
|
else:
|
|
|
|
|
if self.strip_comments and line.startswith("#") or line == '':
|
|
|
|
|
pass
|
|
|
|
|
output.write(line)
|
|
|
|
|
output.write("\n")
|
|
|
|
|
|
|
|
|
|
if not module_path.endswith(".ps1"):
|
|
|
|
|
# Unixy modules
|
|
|
|
|
if len(snippet_names) > 0 and not 'basic' in snippet_names:
|
|
|
|
|
raise AnsibleError("missing required import in %s: from ansible.module_utils.basic import *" % module_path)
|
|
|
|
|
else:
|
|
|
|
|
# Windows modules
|
|
|
|
|
if len(snippet_names) > 0 and not 'powershell' in snippet_names:
|
|
|
|
|
raise AnsibleError("missing required import in %s: # POWERSHELL_COMMON" % module_path)
|
|
|
|
|
|
|
|
|
|
return (output.getvalue(), module_style)
|
|
|
|
|
with open(module_path) as f:
|
|
|
|
|
|
|
|
|
|
# ******************************************************************************
|
|
|
|
|
# read in the module source
|
|
|
|
|
module_data = f.read()
|
|
|
|
|
|
|
|
|
|
def modify_module(self, module_path, module_args):
|
|
|
|
|
(module_data, module_style) = _find_snippet_imports(module_data, module_path, strip_comments)
|
|
|
|
|
|
|
|
|
|
with open(module_path) as f:
|
|
|
|
|
#module_args_json = jsonify(module_args)
|
|
|
|
|
module_args_json = json.dumps(module_args)
|
|
|
|
|
encoded_args = repr(module_args_json.encode('utf-8'))
|
|
|
|
|
|
|
|
|
|
# read in the module source
|
|
|
|
|
module_data = f.read()
|
|
|
|
|
# these strings should be part of the 'basic' snippet which is required to be included
|
|
|
|
|
module_data = module_data.replace(REPLACER_VERSION, repr(__version__))
|
|
|
|
|
module_data = module_data.replace(REPLACER_COMPLEX, encoded_args)
|
|
|
|
|
|
|
|
|
|
(module_data, module_style) = self._find_snippet_imports(module_data, module_path)
|
|
|
|
|
# FIXME: we're not passing around an inject dictionary anymore, so
|
|
|
|
|
# this needs to be fixed with whatever method we use for vars
|
|
|
|
|
# like this moving forward
|
|
|
|
|
#if module_style == 'new':
|
|
|
|
|
# facility = C.DEFAULT_SYSLOG_FACILITY
|
|
|
|
|
# if 'ansible_syslog_facility' in inject:
|
|
|
|
|
# facility = inject['ansible_syslog_facility']
|
|
|
|
|
# module_data = module_data.replace('syslog.LOG_USER', "syslog.%s" % facility)
|
|
|
|
|
|
|
|
|
|
#module_args_json = jsonify(module_args)
|
|
|
|
|
module_args_json = json.dumps(module_args)
|
|
|
|
|
encoded_args = repr(module_args_json.encode('utf-8'))
|
|
|
|
|
lines = module_data.split("\n", 1)
|
|
|
|
|
shebang = None
|
|
|
|
|
if lines[0].startswith("#!"):
|
|
|
|
|
shebang = lines[0].strip()
|
|
|
|
|
args = shlex.split(str(shebang[2:]))
|
|
|
|
|
interpreter = args[0]
|
|
|
|
|
interpreter_config = 'ansible_%s_interpreter' % os.path.basename(interpreter)
|
|
|
|
|
|
|
|
|
|
# these strings should be part of the 'basic' snippet which is required to be included
|
|
|
|
|
module_data = module_data.replace(REPLACER_VERSION, repr(__version__))
|
|
|
|
|
module_data = module_data.replace(REPLACER_COMPLEX, encoded_args)
|
|
|
|
|
# FIXME: more inject stuff here...
|
|
|
|
|
#if interpreter_config in inject:
|
|
|
|
|
# lines[0] = shebang = "#!%s %s" % (inject[interpreter_config], " ".join(args[1:]))
|
|
|
|
|
|
|
|
|
|
# FIXME: we're not passing around an inject dictionary anymore, so
|
|
|
|
|
# this needs to be fixed with whatever method we use for vars
|
|
|
|
|
# like this moving forward
|
|
|
|
|
#if module_style == 'new':
|
|
|
|
|
# facility = C.DEFAULT_SYSLOG_FACILITY
|
|
|
|
|
# if 'ansible_syslog_facility' in inject:
|
|
|
|
|
# facility = inject['ansible_syslog_facility']
|
|
|
|
|
# module_data = module_data.replace('syslog.LOG_USER', "syslog.%s" % facility)
|
|
|
|
|
|
|
|
|
|
lines = module_data.split("\n")
|
|
|
|
|
shebang = None
|
|
|
|
|
if lines[0].startswith("#!"):
|
|
|
|
|
shebang = lines[0].strip()
|
|
|
|
|
args = shlex.split(str(shebang[2:]))
|
|
|
|
|
interpreter = args[0]
|
|
|
|
|
interpreter_config = 'ansible_%s_interpreter' % os.path.basename(interpreter)
|
|
|
|
|
lines.insert(1, ENCODING_STRING)
|
|
|
|
|
else:
|
|
|
|
|
lines.insert(0, ENCODING_STRING)
|
|
|
|
|
|
|
|
|
|
# FIXME: more inject stuff here...
|
|
|
|
|
#if interpreter_config in inject:
|
|
|
|
|
# lines[0] = shebang = "#!%s %s" % (inject[interpreter_config], " ".join(args[1:]))
|
|
|
|
|
# module_data = "\n".join(lines)
|
|
|
|
|
module_data = "\n".join(lines)
|
|
|
|
|
|
|
|
|
|
return (module_data, module_style, shebang)
|
|
|
|
|
return (module_data, module_style, shebang)
|
|
|
|
|
|
|
|
|
|