mirror of https://github.com/ansible/ansible.git
Add ipinfoio_facts module (#3497)
* Add ipinfoio_facts module * Updated ipinfoio_facts module docspull/18777/head
parent
a6c0227a8f
commit
d1304eb749
@ -0,0 +1,137 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
#
|
||||||
|
# (c) 2016, Aleksei Kostiuk <unitoff@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/>.
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
---
|
||||||
|
module: ipinfoio_facts
|
||||||
|
short_description: "Retrieve IP geolocation facts of a host's IP address"
|
||||||
|
description:
|
||||||
|
- "Gather IP geolocation facts of a host's IP address using ipinfo.io API"
|
||||||
|
version_added: "2.3"
|
||||||
|
author: "Aleksei Kostiuk (@akostyuk)"
|
||||||
|
options:
|
||||||
|
timeout:
|
||||||
|
description:
|
||||||
|
- HTTP connection timeout in seconds
|
||||||
|
required: false
|
||||||
|
default: 10
|
||||||
|
http_agent:
|
||||||
|
description:
|
||||||
|
- Set http user agent
|
||||||
|
required: false
|
||||||
|
default: "ansible-ipinfoio-module/0.0.1"
|
||||||
|
notes:
|
||||||
|
- "Check http://ipinfo.io/ for more information"
|
||||||
|
'''
|
||||||
|
|
||||||
|
EXAMPLES = '''
|
||||||
|
# Retrieve geolocation data of a host's IP address
|
||||||
|
- name: get IP geolocation data
|
||||||
|
ipinfoio_facts:
|
||||||
|
'''
|
||||||
|
|
||||||
|
RETURN = '''
|
||||||
|
ansible_facts:
|
||||||
|
description: "Dictionary of ip geolocation facts for a host's IP address"
|
||||||
|
returned: changed
|
||||||
|
type: dictionary
|
||||||
|
contains:
|
||||||
|
ip:
|
||||||
|
description: "Public IP address of a host"
|
||||||
|
type: string
|
||||||
|
sample: "8.8.8.8"
|
||||||
|
hostname:
|
||||||
|
description: Domain name
|
||||||
|
type: string
|
||||||
|
sample: "google-public-dns-a.google.com"
|
||||||
|
country:
|
||||||
|
description: ISO 3166-1 alpha-2 country code
|
||||||
|
type: string
|
||||||
|
sample: "US"
|
||||||
|
region:
|
||||||
|
description: State or province name
|
||||||
|
type: string
|
||||||
|
sample: "California"
|
||||||
|
city:
|
||||||
|
description: City name
|
||||||
|
type: string
|
||||||
|
sample: "Mountain View"
|
||||||
|
loc:
|
||||||
|
description: Latitude and Longitude of the location
|
||||||
|
type: string
|
||||||
|
sample: "37.3860,-122.0838"
|
||||||
|
org:
|
||||||
|
description: "organization's name"
|
||||||
|
type: string
|
||||||
|
sample: "AS3356 Level 3 Communications, Inc."
|
||||||
|
postal:
|
||||||
|
description: Postal code
|
||||||
|
type: string
|
||||||
|
sample: "94035"
|
||||||
|
'''
|
||||||
|
|
||||||
|
USER_AGENT = 'ansible-ipinfoio-module/0.0.1'
|
||||||
|
|
||||||
|
|
||||||
|
class IpinfoioFacts(object):
|
||||||
|
|
||||||
|
def __init__(self, module):
|
||||||
|
self.url = 'https://ipinfo.io/json'
|
||||||
|
self.timeout = module.params.get('timeout')
|
||||||
|
self.module = module
|
||||||
|
|
||||||
|
def get_geo_data(self):
|
||||||
|
response, info = fetch_url(self.module, self.url, force=True, # NOQA
|
||||||
|
timeout=self.timeout)
|
||||||
|
try:
|
||||||
|
info['status'] == 200
|
||||||
|
except AssertionError:
|
||||||
|
self.module.fail_json(msg='Could not get {} page, '
|
||||||
|
'check for connectivity!'.format(self.url))
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
content = response.read()
|
||||||
|
result = self.module.from_json(content.decode('utf8'))
|
||||||
|
except ValueError:
|
||||||
|
self.module.fail_json(
|
||||||
|
msg='Failed to parse the ipinfo.io response: '
|
||||||
|
'{0} {1}'.format(self.url, content))
|
||||||
|
else:
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
module = AnsibleModule( # NOQA
|
||||||
|
argument_spec=dict(
|
||||||
|
http_agent=dict(default=USER_AGENT),
|
||||||
|
timeout=dict(type='int', default=10),
|
||||||
|
),
|
||||||
|
supports_check_mode=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
ipinfoio = IpinfoioFacts(module)
|
||||||
|
ipinfoio_result = dict(
|
||||||
|
changed=False, ansible_facts=ipinfoio.get_geo_data())
|
||||||
|
module.exit_json(**ipinfoio_result)
|
||||||
|
|
||||||
|
from ansible.module_utils.basic import * # NOQA
|
||||||
|
from ansible.module_utils.urls import * # NOQA
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
Loading…
Reference in New Issue