community.general/lib/ansible/plugins/lookup/shelvefile.py

84 lines
2.8 KiB
Python
Raw Normal View History

2015-07-13 08:31:35 +00:00
# (c) 2015, Alejandro Guirao <lekumberri@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-07-13 13:37:27 +00:00
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
2015-07-13 08:31:35 +00:00
import shelve
import os
2015-07-13 13:37:27 +00:00
from ansible.errors import AnsibleError
from ansible.plugins.lookup import LookupBase
class LookupModule(LookupBase):
2015-07-13 08:31:35 +00:00
def read_shelve(self, shelve_filename, key):
"""
Read the value of "key" from a shelve file
"""
d = shelve.open(shelve_filename)
res = d.get(key, None)
d.close()
return res
2015-07-13 13:37:27 +00:00
def run(self, terms, variables=None, **kwargs):
2015-07-13 08:31:35 +00:00
if not isinstance(terms, list):
terms = [ terms ]
2015-07-13 13:37:27 +00:00
ret = []
2015-07-13 08:31:35 +00:00
for term in terms:
playbook_path = None
relative_path = None
2015-07-13 13:37:27 +00:00
2015-07-13 08:31:35 +00:00
paramvals = {"file": None, "key": None}
params = term.split()
try:
for param in params:
name, value = param.split('=')
assert(name in paramvals)
paramvals[name] = value
except (ValueError, AssertionError) as e:
2015-07-13 08:31:35 +00:00
# In case "file" or "key" are not present
2015-07-13 13:37:27 +00:00
raise AnsibleError(e)
2015-07-13 08:31:35 +00:00
file = paramvals['file']
key = paramvals['key']
2015-07-13 13:37:27 +00:00
basedir_path = self._loader.path_dwim(file)
2015-07-13 08:31:35 +00:00
# Search also in the role/files directory and in the playbook directory
2015-07-13 13:37:27 +00:00
if 'role_path' in variables:
relative_path = self._loader.path_dwim_relative(variables['role_path'], 'files', file)
if 'playbook_dir' in variables:
playbook_path = self._loader.path_dwim_relative(variables['playbook_dir'],'files', file)
2015-07-13 08:31:35 +00:00
for path in (basedir_path, relative_path, playbook_path):
if path and os.path.exists(path):
res = self.read_shelve(path, key)
if res is None:
2015-07-13 13:37:27 +00:00
raise AnsibleError("Key %s not found in shelve file %s" % (key, file))
2015-07-13 08:31:35 +00:00
# Convert the value read to string
ret.append(str(res))
break
else:
2015-07-13 13:37:27 +00:00
raise AnsibleError("Could not locate shelve file in lookup: %s" % file)
2015-07-13 08:31:35 +00:00
return ret