| #!/usr/bin/python |
| |
| DOCUMENTATION = ''' |
| --- |
| module: maas_sshkey |
| 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 |
| sshkey: |
| description: |
| - sshkey on which to operate |
| required: yes |
| state: |
| description: |
| - possible states for this sshkey |
| choices: ['present', 'absent', 'query'] |
| default: present |
| |
| requirements: [ipaddress, requests_oauthlib, maasclient] |
| author: David Bainbridge |
| ''' |
| |
| EXAMPLES = ''' |
| examples: |
| maas_sshkey: |
| maas: http://my.maas.server.com/MAAS/api/1.0/ |
| key: 'xBvr9dx5k7S52myufC:fqBXV7hJgXegNZDw9c:K8hsmL47XjAppfQy2pDVW7G49p6PELgp' |
| sshkey: ... foo@company.com |
| state: present |
| |
| maas_sshkeys: |
| maas: http://my.maas.server.com/MAAS/api/1.0/ |
| key: 'xBvr9dx5k7S52myufC:fqBXV7hJgXegNZDw9c:K8hsmL47XjAppfQy2pDVW7G49p6PELgp' |
| sshkey: ... foo@company.com |
| 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 |
| |
| def filter(filter_type, d, keys): |
| if filter_type == 'include': |
| for k in d.keys(): |
| if k not in keys: |
| d.pop(k, None) |
| else: |
| for k in d.keys(): |
| if k in keys: |
| d.pop(k, None) |
| |
| # Get an item from MAAS using its name, if not found return None |
| def get_sshkey(maas, name): |
| res = maas.get('/account/prefs/sshkeys/', dict(op='list')) |
| if res.ok: |
| for sshkey in json.loads(res.text): |
| if sshkey['key'] == name: |
| return sshkey |
| return None |
| |
| # Create an item based on the value given |
| def create_sshkey(maas, sshkey): |
| merged = sshkey.copy() |
| filter('include', merged, ['key']) |
| merged['op'] = 'new' |
| res = maas.post('/account/prefs/sshkeys/', merged) |
| if res.ok: |
| return { 'error': False, 'status': get_sshkey(maas, merged['key']) } |
| return { 'error': True, 'status': string_or_object(res.text) } |
| |
| # Delete an item based on the name |
| def delete_sshkey(maas, id): |
| res = maas.delete('/account/prefs/sshkeys/%s/' % id) |
| if res.ok: |
| return { 'error': False } |
| 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), |
| sshkey=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({ |
| 'key': module.params['sshkey'], |
| }) |
| |
| # Authenticate into MAAS |
| auth = MaasAuth(maas, key) |
| maas = MaasClient(auth) |
| |
| # Attempt to get the item from MAAS |
| sshkey = get_sshkey(maas, desired['key']) |
| |
| # Actions if the item does not currently exist |
| if not sshkey: |
| if state == 'query': |
| # If this is a query, return 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_sshkey(maas, desired) |
| if res['error']: |
| module.fail_json(msg=res['status']) |
| else: |
| module.exit_json(changed=True, sshkey=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 sshkey |
| module.exit_json(changed=False, found=True, sshkey=sshkey) |
| elif state == 'present': |
| # If we want this to exists check to see if this is different and |
| # needs updated |
| # No differences, to nothing to change |
| module.exit_json(changed=False, sshkey=sshkey) |
| else: |
| # If we don't want this item, then delete it |
| res = delete_sshkey(maas, item['id']) |
| if res['error']: |
| module.fail_json(msg=res['status']) |
| else: |
| module.exit_json(changed=True, sshkey=sshkey) |
| |
| # this is magic, see lib/ansible/module_common.py |
| #<<INCLUDE_ANSIBLE_MODULE_COMMON>> |
| if __name__ == '__main__': |
| main() |