2015-01-09 15:37:31 +00:00
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
# (c) 2013, Steven Dossett <sdossett@panath.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
|
|
|
from ansible.plugins.lookup import LookupBase
|
2015-10-15 15:19:11 +00:00
|
|
|
from ansible.inventory import Inventory
|
2015-01-09 15:37:31 +00:00
|
|
|
|
|
|
|
class LookupModule(LookupBase):
|
|
|
|
|
2015-10-15 15:19:11 +00:00
|
|
|
def get_hosts(self, variables, pattern):
|
|
|
|
hosts = []
|
|
|
|
if pattern in variables['groups']:
|
|
|
|
hosts = variables['groups'][pattern]
|
|
|
|
elif pattern in variables['groups']['all']:
|
|
|
|
hosts = [pattern]
|
|
|
|
return hosts
|
2015-01-09 15:37:31 +00:00
|
|
|
|
2015-10-15 15:19:11 +00:00
|
|
|
def run(self, terms, variables=None, **kwargs):
|
2015-01-09 15:37:31 +00:00
|
|
|
|
2015-10-15 15:19:11 +00:00
|
|
|
host_list = []
|
|
|
|
|
|
|
|
for term in terms:
|
|
|
|
patterns = Inventory.order_patterns(Inventory.split_host_pattern(term))
|
|
|
|
|
|
|
|
for p in patterns:
|
|
|
|
that = self.get_hosts(variables, p)
|
|
|
|
if p.startswith("!"):
|
|
|
|
host_list = [ h for h in host_list if h not in that]
|
|
|
|
elif p.startswith("&"):
|
|
|
|
host_list = [ h for h in host_list if h in that ]
|
|
|
|
else:
|
|
|
|
host_list.extend(that)
|
|
|
|
|
|
|
|
# return unique list
|
|
|
|
return list(set(host_list))
|