blob: 429c167bdec66925581ae96da9e731603c2e4fd4 [file] [log] [blame]
#!/usr/bin/python
DOCUMENTATION = '''
---
module: maas_item
short_description: Manage MAAS Clusters Interfaces
options:
maas:
description:
- URL of MAAS server
default: http://localhost/MAAS/api/1.0/
key:
description:
- MAAS API key
required: yes
name:
description:
- name of the item
required: yes
state:
description:
- possible states for this item
choices: ['present', 'absent', 'query']
default: present
requirements: [ipaddress, requests_oauthlib, maasclient]
author: David Bainbridge
'''
EXAMPLES = '''
examples:
maas_item:
maas: http://my.maas.server.com/MAAS/api/1.0/
key: 'xBvr9dx5k7S52myufC:fqBXV7hJgXegNZDw9c:K8hsmL47XjAppfQy2pDVW7G49p6PELgp'
name: MyItem
state: present
maas_item:
maas: http://my.maas.server.com/MAAS/api/1.0/
key: 'xBvr9dx5k7S52myufC:fqBXV7hJgXegNZDw9c:K8hsmL47XjAppfQy2pDVW7G49p6PELgp'
name: MyDeadItem
state: absent
'''
import sys
import json
import ipaddress
import requests
from maasclient.auth import MaasAuth
from maasclient import MaasClient
# For some reason the maasclient doesn't provide a put method. So
# we will add it here
def put(client, url, params=None):
return requests.put(url=client.auth.api_url + url,
auth=client._oauth(), data=params)
# Attempt to interpret the given value as a JSON object, if that fails
# just return it as a string
def string_or_object(val):
try:
return json.loads(val)
except:
return val
# Return a copy of the given dictionary with any `null` valued entries
# removed
def remove_null(d_in):
d = d_in.copy()
to_remove = []
for k in d.keys():
if d[k] == None:
to_remove.append(k)
for k in to_remove:
del d[k]
return d
# Deterine if two dictionaries are different
def different(have, want):
have_keys = have.keys()
for key in want.keys():
if (key in have_keys and want[key] != have[key]) or key not in have_keys:
return True
return False
# Get an item from MAAS using its name, if not found return None
def get_item(maas, name):
res = maas.get('/items/%s/' % name)
if res.ok:
return json.loads(res.text)
return None
# Create an item based on the value given
def create_item(maas, item):
merged = item.copy()
# merged['op'] = 'new'
res = maas.post('/items/', merged)
if res.ok:
return { 'error': False, 'status': get_item(maas, merged['name']) }
return { 'error': True, 'status': string_or_object(res.text) }
# Delete an item based on the name
def delete_item(maas, name):
res = maas.delete('/items/%s/' % name)
if res.ok:
return { 'error': False }
return { 'error': True, 'status': string_or_object(res.text) }
def update_item(maas, have, want):
merged = have.copy()
merged.update(want)
res = put(maas, '/items/%s/' % merged['name'], merged)
if res.ok:
return { 'error': False, 'status': get_item(maas, merged['name']) }
return { 'error': True, 'status': string_or_object(res.text) }
def main():
module = AnsibleModule(
argument_spec = dict(
maas=dict(default='http://localhost/MAAS/api/1.0/'),
key=dict(required=True),
name=dict(required=True),
state=dict(default='present', choices=['present', 'absent', 'query'])
),
supports_check_mode = False
)
maas = module.params['maas']
key = module.params['key']
state = module.params['state']
# Construct a sparsely populate desired state
desired = remove_null({
'name': module.params['name'],
})
# Authenticate into MAAS
auth = MaasAuth(maas, key)
maas = MaasClient(auth)
# Attempt to get the item from MAAS
item = get_item(maas, desired['name'])
# Actions if the item does not currently exist
if not item:
if state == 'query':
# If this is a query, returne it is not found
module.exit_json(changed=False, found=False)
elif state == 'present':
# If this should be present, then attempt to create it
res = create_item(maas, desired)
if res['error']:
module.fail_json(msg=res['status'])
else:
module.exit_json(changed=True, item=res['status'])
else:
# If this should be absent, then we are done and in the desired state
module.exit_json(changed=False)
# Done with items does not exists actions
return
# Actions if the item does exist
if state == 'query':
# If this is a query, return the item
module.exit_json(changed=False, found=True, item=item)
elif state == 'present':
# If we want this to exists check to see if this is different and
# needs updated
if different(item, desired):
res = update_item(maas, item, desired)
if res['error']:
module.fail_json(msg=res['status'])
else:
module.exit_json(changed=True, item=res['status'])
else:
# No differences, to nothing to change
module.exit_json(changed=False, item=item)
else:
# If we don't want this item, then delete it
res = delete_item(maas, item['name'])
if res['error']:
module.fail_json(msg=res['status'])
else:
module.exit_json(changed=True, item=item)
# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
if __name__ == '__main__':
main()