2013-06-20 00:01:47 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
Ansible module to add boundary meters.
|
|
|
|
|
|
|
|
(c) 2013, curtis <curtis@serverascode.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/>.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import json
|
|
|
|
import datetime
|
|
|
|
import base64
|
2013-06-25 00:20:36 +02:00
|
|
|
import os
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
|
|
|
|
module: boundary_meter
|
|
|
|
short_description: Manage boundary meters
|
|
|
|
description:
|
|
|
|
- This module manages boundary meters
|
|
|
|
version_added: "1.3"
|
|
|
|
author: curtis@serverascode.com
|
|
|
|
requirements:
|
|
|
|
- Boundary API access
|
2013-06-25 00:20:36 +02:00
|
|
|
- bprobe is required to send data, but not to register a meter
|
|
|
|
- Python urllib2
|
2013-06-20 00:01:47 +02:00
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- meter name
|
|
|
|
required: true
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Whether to create or remove the client from boundary
|
|
|
|
required: false
|
|
|
|
default: true
|
2013-06-25 00:20:36 +02:00
|
|
|
choices: ["present", "absent"]
|
2013-06-20 00:01:47 +02:00
|
|
|
apiid:
|
|
|
|
description:
|
|
|
|
- Organizations boundary API ID
|
|
|
|
required: true
|
|
|
|
apikey:
|
|
|
|
description:
|
|
|
|
- Organizations boundary API KEY
|
|
|
|
required: true
|
2014-03-12 16:19:22 +01:00
|
|
|
validate_certs:
|
|
|
|
description:
|
|
|
|
- If C(no), SSL certificates will not be validated. This should only be used
|
|
|
|
on personally controlled sites using self-signed certificates.
|
|
|
|
required: false
|
|
|
|
default: 'yes'
|
|
|
|
choices: ['yes', 'no']
|
|
|
|
version_added: 1.5.1
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
notes:
|
2013-07-23 19:16:30 +02:00
|
|
|
- This module does not yet support boundary tags.
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES='''
|
|
|
|
- name: Create meter
|
2013-07-23 19:16:30 +02:00
|
|
|
boundary_meter: apiid=AAAAAA api_key=BBBBBB state=present name={{ inventory_hostname }}"
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
- name: Delete meter
|
2013-07-23 19:16:30 +02:00
|
|
|
boundary_meter: apiid=AAAAAA api_key=BBBBBB state=absent name={{ inventory_hostname }}"
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
'''
|
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
api_host = "api.boundary.com"
|
|
|
|
config_directory = "/etc/bprobe"
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
# "resource" like thing or apikey?
|
|
|
|
def auth_encode(apikey):
|
|
|
|
auth = base64.standard_b64encode(apikey)
|
2013-06-20 00:01:47 +02:00
|
|
|
auth.replace("\n", "")
|
|
|
|
return auth
|
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
def build_url(name, apiid, action, meter_id=None, cert_type=None):
|
2013-06-20 00:01:47 +02:00
|
|
|
if action == "create":
|
2013-07-02 17:41:11 +02:00
|
|
|
return 'https://%s/%s/meters' % (api_host, apiid)
|
2013-06-20 00:01:47 +02:00
|
|
|
elif action == "search":
|
2013-07-02 17:41:11 +02:00
|
|
|
return "https://%s/%s/meters?name=%s" % (api_host, apiid, name)
|
2013-06-20 00:01:47 +02:00
|
|
|
elif action == "certificates":
|
2013-07-02 17:41:11 +02:00
|
|
|
return "https://%s/%s/meters/%s/%s.pem" % (api_host, apiid, meter_id, cert_type)
|
2013-06-20 00:01:47 +02:00
|
|
|
elif action == "tags":
|
2013-07-02 17:41:11 +02:00
|
|
|
return "https://%s/%s/meters/%s/tags" % (api_host, apiid, meter_id)
|
2013-06-20 00:01:47 +02:00
|
|
|
elif action == "delete":
|
2013-07-02 17:41:11 +02:00
|
|
|
return "https://%s/%s/meters/%s" % (api_host, apiid, meter_id)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2014-03-10 22:06:52 +01:00
|
|
|
def http_request(module, name, apiid, apikey, action, data=None, meter_id=None, cert_type=None):
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
if meter_id is None:
|
|
|
|
url = build_url(name, apiid, action)
|
2013-06-20 00:01:47 +02:00
|
|
|
else:
|
2013-06-25 00:20:36 +02:00
|
|
|
if cert_type is None:
|
|
|
|
url = build_url(name, apiid, action, meter_id)
|
2013-06-20 00:01:47 +02:00
|
|
|
else:
|
2013-06-25 00:20:36 +02:00
|
|
|
url = build_url(name, apiid, action, meter_id, cert_type)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2014-03-10 22:06:52 +01:00
|
|
|
headers = dict()
|
|
|
|
headers["Authorization"] = "Basic %s" % auth_encode(apikey)
|
|
|
|
headers["Content-Type"] = "application/json"
|
|
|
|
|
|
|
|
return fetch_url(module, url, data=data, headers=headers)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
def create_meter(module, name, apiid, apikey):
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
meters = search_meter(module, name, apiid, apikey)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
if len(meters) > 0:
|
|
|
|
# If the meter already exists, do nothing
|
2013-06-25 00:20:36 +02:00
|
|
|
module.exit_json(status="Meter " + name + " already exists",changed=False)
|
2013-06-20 00:01:47 +02:00
|
|
|
else:
|
|
|
|
# If it doesn't exist, create it
|
2013-06-25 00:20:36 +02:00
|
|
|
body = '{"name":"' + name + '"}'
|
2014-03-10 22:06:52 +01:00
|
|
|
response, info = http_request(module, name, apiid, apikey, data=body, action="create")
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2014-03-10 22:06:52 +01:00
|
|
|
if info['status'] != 200:
|
2013-06-20 00:01:47 +02:00
|
|
|
module.fail_json(msg="Failed to connect to api host to create meter")
|
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
# If the config directory doesn't exist, create it
|
|
|
|
if not os.path.exists(config_directory):
|
|
|
|
try:
|
|
|
|
os.makedirs(config_directory)
|
|
|
|
except:
|
|
|
|
module.fail_json("Could not create " + config_directory)
|
|
|
|
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
# Download both cert files from the api host
|
|
|
|
types = ['key', 'cert']
|
|
|
|
for cert_type in types:
|
|
|
|
try:
|
|
|
|
# If we can't open the file it's not there, so we should download it
|
2013-07-02 17:41:11 +02:00
|
|
|
cert_file = open('%s/%s.pem' % (config_directory,cert_type))
|
2013-06-20 00:01:47 +02:00
|
|
|
except IOError:
|
|
|
|
# Now download the file...
|
2013-06-25 00:20:36 +02:00
|
|
|
rc = download_request(module, name, apiid, apikey, cert_type)
|
2013-06-20 00:01:47 +02:00
|
|
|
if rc == False:
|
|
|
|
module.fail_json("Download request for " + cert_type + ".pem failed")
|
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
return 0, "Meter " + name + " created"
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
def search_meter(module, name, apiid, apikey):
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2014-03-10 22:06:52 +01:00
|
|
|
response, info = http_request(module, name, apiid, apikey, action="search")
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2014-03-10 22:06:52 +01:00
|
|
|
if info['status'] != 200:
|
2013-06-25 00:20:36 +02:00
|
|
|
module.fail_json("Failed to connect to api host to search for meter")
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
# Return meters
|
2014-03-10 22:06:52 +01:00
|
|
|
return json.loads(response.read())
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
def get_meter_id(module, name, apiid, apikey):
|
2013-06-20 00:01:47 +02:00
|
|
|
# In order to delete the meter we need its id
|
2013-06-25 00:20:36 +02:00
|
|
|
meters = search_meter(module, name, apiid, apikey)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
if len(meters) > 0:
|
|
|
|
return meters[0]['id']
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
def delete_meter(module, name, apiid, apikey):
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
meter_id = get_meter_id(module, name, apiid, apikey)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
if meter_id is None:
|
|
|
|
return 1, "Meter does not exist, so can't delete it"
|
|
|
|
else:
|
2014-03-10 22:06:52 +01:00
|
|
|
response, info = http_request(module, name, apiid, apikey, action, meter_id)
|
|
|
|
if info['status'] != 200:
|
|
|
|
module.fail_json("Failed to delete meter")
|
2013-06-25 00:20:36 +02:00
|
|
|
|
|
|
|
# Each new meter gets a new key.pem and ca.pem file, so they should be deleted
|
|
|
|
types = ['cert', 'key']
|
|
|
|
for cert_type in types:
|
|
|
|
try:
|
2013-07-02 17:41:11 +02:00
|
|
|
cert_file = '%s/%s.pem' % (config_directory,cert_type)
|
2013-06-25 00:20:36 +02:00
|
|
|
os.remove(cert_file)
|
2013-08-03 20:55:01 +02:00
|
|
|
except OSError, e:
|
2013-06-25 00:20:36 +02:00
|
|
|
module.fail_json("Failed to remove " + cert_type + ".pem file")
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
return 0, "Meter " + name + " deleted"
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
def download_request(module, name, apiid, apikey, cert_type):
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
meter_id = get_meter_id(module, name, apiid, apikey)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
if meter_id is not None:
|
|
|
|
action = "certificates"
|
2014-03-10 22:06:52 +01:00
|
|
|
response, info = http_request(module, name, apiid, apikey, action, meter_id, cert_type)
|
|
|
|
if info['status'] != 200:
|
2013-06-25 00:20:36 +02:00
|
|
|
module.fail_json("Failed to connect to api host to download certificate")
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
if result:
|
|
|
|
try:
|
2013-07-02 17:41:11 +02:00
|
|
|
cert_file_path = '%s/%s.pem' % (config_directory,cert_type)
|
2014-03-10 22:06:52 +01:00
|
|
|
body = response.read()
|
2013-06-20 00:01:47 +02:00
|
|
|
cert_file = open(cert_file_path, 'w')
|
|
|
|
cert_file.write(body)
|
|
|
|
cert_file.close
|
|
|
|
os.chmod(cert_file_path, 0o600)
|
|
|
|
except:
|
|
|
|
module.fail_json("Could not write to certificate file")
|
|
|
|
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
module.fail_json("Could not get meter id")
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
2013-06-25 00:20:36 +02:00
|
|
|
state=dict(required=True, choices=['present', 'absent']),
|
2013-06-20 00:01:47 +02:00
|
|
|
name=dict(required=False),
|
|
|
|
apikey=dict(required=True),
|
|
|
|
apiid=dict(required=True),
|
2014-03-12 16:19:22 +01:00
|
|
|
validate_certs = dict(default='yes', type='bool'),
|
2013-06-20 00:01:47 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
state = module.params['state']
|
2013-06-25 00:20:36 +02:00
|
|
|
name= module.params['name']
|
2013-07-23 19:16:30 +02:00
|
|
|
apikey = module.params['api_key']
|
|
|
|
apiid = module.params['api_id']
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
if state == "present":
|
2013-06-25 00:20:36 +02:00
|
|
|
(rc, result) = create_meter(module, name, apiid, apikey)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
2013-06-25 00:20:36 +02:00
|
|
|
if state == "absent":
|
|
|
|
(rc, result) = delete_meter(module, name, apiid, apikey)
|
2013-06-20 00:01:47 +02:00
|
|
|
|
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg=result)
|
|
|
|
|
|
|
|
module.exit_json(status=result,changed=True)
|
|
|
|
|
2013-12-02 21:11:23 +01:00
|
|
|
# import module snippets
|
|
|
|
from ansible.module_utils.basic import *
|
2014-03-10 22:06:52 +01:00
|
|
|
from ansible.module_utils.urls import *
|
2013-08-03 20:55:01 +02:00
|
|
|
main()
|
2013-08-03 20:55:22 +02:00
|
|
|
|