mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-16 10:00:39 +00:00
84 lines
2.9 KiB
Python
84 lines
2.9 KiB
Python
|
# (c) 2015, Brian Coca <bcoca@ansible.com>
|
||
|
# (c) 2012-17 Ansible Project
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
DOCUMENTATION = """
|
||
|
lookup: url
|
||
|
author: Brian Coca (@bcoca)
|
||
|
version_added: "1.9"
|
||
|
short_description: return contents from URL
|
||
|
description:
|
||
|
- Returns the content of the URL requested to be used as data in play.
|
||
|
options:
|
||
|
_terms:
|
||
|
description: urls to query
|
||
|
validate_certs:
|
||
|
description: Flag to control SSL certificate validation
|
||
|
type: boolean
|
||
|
default: True
|
||
|
split_lines:
|
||
|
description: Flag to control if content is returned as a list of lines or as a single text blob
|
||
|
type: boolean
|
||
|
default: True
|
||
|
use_proxy:
|
||
|
description: Flag to control if the lookup will observe HTTP proxy environment variables when present.
|
||
|
type: boolean
|
||
|
default: True
|
||
|
"""
|
||
|
|
||
|
EXAMPLES = """
|
||
|
- name: url lookup splits lines by default
|
||
|
debug: msg="{{item}}"
|
||
|
loop: "{{ lookup('url', 'https://github.com/gremlin.keys', wantlist=True) }}"
|
||
|
|
||
|
- name: display ip ranges
|
||
|
debug: msg="{{ lookup('url', 'https://ip-ranges.amazonaws.com/ip-ranges.json', split_lines=False) }}"
|
||
|
"""
|
||
|
|
||
|
RETURN = """
|
||
|
_list:
|
||
|
description: list of list of lines or content of url(s)
|
||
|
"""
|
||
|
|
||
|
from ansible.errors import AnsibleError
|
||
|
from ansible.module_utils.six.moves.urllib.error import HTTPError, URLError
|
||
|
from ansible.module_utils._text import to_text, to_native
|
||
|
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):
|
||
|
|
||
|
self.set_options(direct=kwargs)
|
||
|
|
||
|
ret = []
|
||
|
for term in terms:
|
||
|
display.vvvv("url lookup connecting to %s" % term)
|
||
|
try:
|
||
|
response = open_url(term, validate_certs=self.get_option('validate_certs'), use_proxy=self.get_option('use_proxy'))
|
||
|
except HTTPError as e:
|
||
|
raise AnsibleError("Received HTTP error for %s : %s" % (term, to_native(e)))
|
||
|
except URLError as e:
|
||
|
raise AnsibleError("Failed lookup url for %s : %s" % (term, to_native(e)))
|
||
|
except SSLValidationError as e:
|
||
|
raise AnsibleError("Error validating the server's certificate for %s: %s" % (term, to_native(e)))
|
||
|
except ConnectionError as e:
|
||
|
raise AnsibleError("Error connecting to %s: %s" % (term, to_native(e)))
|
||
|
|
||
|
if self.get_option('split_lines'):
|
||
|
for line in response.read().splitlines():
|
||
|
ret.append(to_text(line))
|
||
|
else:
|
||
|
ret.append(to_text(response.read()))
|
||
|
return ret
|