mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 04:11:25 -07:00
We couldn't copy to_unicode, to_bytes, to_str into module_utils because of licensing. So once created it we had two sets of functions that did the same things but had different implementations. To remedy that, this change removes the ansible.utils.unicode versions of those functions.
56 lines
2.1 KiB
Python
56 lines
2.1 KiB
Python
# (c) 2015, Brian Coca <bcoca@ansible.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/>.
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
|
|
from ansible.compat.six.moves.urllib.error import HTTPError, URLError
|
|
from ansible.errors import AnsibleError
|
|
from ansible.module_utils._text import to_text
|
|
from ansible.module_utils.urls import open_url, ConnectionError, SSLValidationError
|
|
from ansible.plugins.lookup import LookupBase
|
|
|
|
try:
|
|
from __main__ import display
|
|
except ImportError:
|
|
from ansible.utils.display import Display
|
|
display = Display()
|
|
|
|
|
|
class LookupModule(LookupBase):
|
|
|
|
def run(self, terms, variables=None, **kwargs):
|
|
|
|
validate_certs = kwargs.get('validate_certs', True)
|
|
|
|
ret = []
|
|
for term in terms:
|
|
display.vvvv("url lookup connecting to %s" % term)
|
|
try:
|
|
response = open_url(term, validate_certs=validate_certs)
|
|
except HTTPError as e:
|
|
raise AnsibleError("Received HTTP error for %s : %s" % (term, str(e)))
|
|
except URLError as e:
|
|
raise AnsibleError("Failed lookup url for %s : %s" % (term, str(e)))
|
|
except SSLValidationError as e:
|
|
raise AnsibleError("Error validating the server's certificate for %s: %s" % (term, str(e)))
|
|
except ConnectionError as e:
|
|
raise AnsibleError("Error connecting to %s: %s" % (term, str(e)))
|
|
|
|
for line in response.read().splitlines():
|
|
ret.append(to_text(line))
|
|
return ret
|