2015-01-09 15:37:31 +00:00
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
#
|
|
|
|
# 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/>.
|
2015-04-13 20:28:01 +00:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2015-01-09 15:37:31 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from ansible.errors import AnsibleError
|
|
|
|
from ansible.plugins.lookup import LookupBase
|
2016-08-23 15:06:20 +00:00
|
|
|
from ansible.utils.unicode import to_unicode, to_bytes
|
2015-01-09 15:37:31 +00:00
|
|
|
|
2015-11-11 16:33:44 +00:00
|
|
|
try:
|
|
|
|
from __main__ import display
|
|
|
|
except ImportError:
|
|
|
|
from ansible.utils.display import Display
|
|
|
|
display = Display()
|
|
|
|
|
|
|
|
|
2015-01-09 15:37:31 +00:00
|
|
|
class LookupModule(LookupBase):
|
|
|
|
|
|
|
|
def run(self, terms, variables, **kwargs):
|
|
|
|
|
2015-10-23 12:21:46 +00:00
|
|
|
convert_data_p = kwargs.get('convert_data', True)
|
2015-07-23 02:32:18 +00:00
|
|
|
ret = []
|
|
|
|
|
2015-01-09 15:37:31 +00:00
|
|
|
for term in terms:
|
2015-11-11 16:33:44 +00:00
|
|
|
display.debug("File lookup term: %s" % term)
|
2015-07-23 02:32:18 +00:00
|
|
|
|
2016-07-13 14:06:34 +00:00
|
|
|
lookupfile = self.find_file_in_search_path(variables, 'templates', term)
|
2015-11-11 16:33:44 +00:00
|
|
|
display.vvvv("File lookup using %s as file" % lookupfile)
|
2016-07-13 14:06:34 +00:00
|
|
|
if lookupfile:
|
2016-08-23 04:55:30 +00:00
|
|
|
with open(to_bytes(lookupfile, errors='strict'), 'r') as f:
|
2016-01-29 15:41:57 +00:00
|
|
|
template_data = to_unicode(f.read())
|
2015-08-05 02:49:42 +00:00
|
|
|
|
2016-07-13 14:06:34 +00:00
|
|
|
# set jinja2 internal search path for includes
|
|
|
|
if 'ansible_search_path' in variables:
|
|
|
|
searchpath = variables['ansible_search_path']
|
|
|
|
else:
|
|
|
|
searchpath = [self._loader._basedir, os.path.dirname(lookupfile)]
|
2015-09-17 18:47:20 +00:00
|
|
|
self._templar.environment.loader.searchpath = searchpath
|
2016-07-13 14:06:34 +00:00
|
|
|
|
|
|
|
# do the templating
|
2015-10-23 12:21:46 +00:00
|
|
|
res = self._templar.template(template_data, preserve_trailing_newlines=True,convert_data=convert_data_p)
|
2015-01-09 15:37:31 +00:00
|
|
|
ret.append(res)
|
|
|
|
else:
|
|
|
|
raise AnsibleError("the template file %s could not be found for the lookup" % term)
|
2015-07-23 02:32:18 +00:00
|
|
|
|
2015-01-09 15:37:31 +00:00
|
|
|
return ret
|