forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cloudstack: new module cs_role (ansible#19134)
- Loading branch information
Showing
1 changed file
with
227 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,227 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# (c) 2016, René Moser <[email protected]> | ||
# | ||
# 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/>. | ||
|
||
ANSIBLE_METADATA = {'status': ['preview'], | ||
'supported_by': 'community', | ||
'version': '1.0'} | ||
|
||
DOCUMENTATION = ''' | ||
--- | ||
module: cs_role | ||
short_description: Manages user roles on Apache CloudStack based clouds. | ||
description: | ||
- Create, update, delete user roles. | ||
version_added: "2.3" | ||
author: "René Moser (@resmo)" | ||
options: | ||
name: | ||
description: | ||
- Name of the role. | ||
required: true | ||
id: | ||
description: | ||
- ID of the role. | ||
- If provided, C(id) is used as key. | ||
required: false | ||
default: null | ||
aliases: [ 'uuid' ] | ||
role_type: | ||
description: | ||
- Type of the role. | ||
- Only considered for creation. | ||
required: false | ||
default: User | ||
choices: [ 'User', 'DomainAdmin', 'ResourceAdmin', 'Admin' ] | ||
description: | ||
description: | ||
- Description of the role | ||
required: false | ||
default: null | ||
state: | ||
description: | ||
- State of the pod. | ||
required: false | ||
default: 'present' | ||
choices: [ 'present', 'absent' ] | ||
extends_documentation_fragment: cloudstack | ||
''' | ||
|
||
EXAMPLES = ''' | ||
# Ensure an user role is present | ||
- local_action: | ||
module: cs_role | ||
name: myrole_user | ||
# Ensure a role having particular ID is named as myrole_user | ||
- local_action: | ||
module: cs_role | ||
name: myrole_user | ||
id: 04589590-ac63-4ffc-93f5-b698b8ac38b6 | ||
# Ensure a role is absent | ||
- local_action: | ||
module: cs_role | ||
name: myrole_user | ||
state: absent | ||
''' | ||
|
||
RETURN = ''' | ||
--- | ||
id: | ||
description: UUID of the role. | ||
returned: success | ||
type: string | ||
sample: 04589590-ac63-4ffc-93f5-b698b8ac38b6 | ||
name: | ||
description: Name of the role. | ||
returned: success | ||
type: string | ||
sample: myrole | ||
description: | ||
description: Description of the role. | ||
returned: success | ||
type: string | ||
sample: "This is my role description" | ||
role_type: | ||
description: Type of the role. | ||
returned: success | ||
type: string | ||
sample: User | ||
''' | ||
|
||
from ansible.module_utils.basic import AnsibleModule | ||
from ansible.module_utils.cloudstack import AnsibleCloudStack, CloudStackException, cs_argument_spec, cs_required_together | ||
|
||
|
||
class AnsibleCloudStackRole(AnsibleCloudStack): | ||
|
||
def __init__(self, module): | ||
super(AnsibleCloudStackRole, self).__init__(module) | ||
self.returns = { | ||
'type': 'role_type', | ||
} | ||
|
||
def get_role(self): | ||
uuid = self.module.params.get('uuid') | ||
if uuid: | ||
args = { | ||
'id': uuid, | ||
} | ||
roles = self.cs.listRoles(**args) | ||
if roles: | ||
return roles['role'][0] | ||
else: | ||
args = { | ||
'name': self.module.params.get('name'), | ||
} | ||
roles = self.cs.listRoles(**args) | ||
if roles: | ||
return roles['role'][0] | ||
return None | ||
|
||
def present_role(self): | ||
role = self.get_role() | ||
if role: | ||
role = self._update_role(role) | ||
else: | ||
role = self._create_role(role) | ||
return role | ||
|
||
def _create_role(self, role): | ||
self.result['changed'] = True | ||
args = { | ||
'name': self.module.params.get('name'), | ||
'type': self.module.params.get('role_type'), | ||
'description': self.module.params.get('description'), | ||
} | ||
if not self.module.check_mode: | ||
res = self.cs.createRole(**args) | ||
if 'errortext' in res: | ||
self.module.fail_json(msg="Failed: '%s'" % res['errortext']) | ||
role = res['role'] | ||
return role | ||
|
||
def _update_role(self, role): | ||
args = { | ||
'id': role['id'], | ||
'name': self.module.params.get('name'), | ||
'description': self.module.params.get('description'), | ||
} | ||
if self.has_changed(args, role): | ||
self.result['changed'] = True | ||
if not self.module.check_mode: | ||
res = self.cs.updateRole(**args) | ||
if 'errortext' in res: | ||
self.module.fail_json(msg="Failed: '%s'" % res['errortext']) | ||
# The API as in 4.9 does not return an updated role yet | ||
if 'role' not in res: | ||
role = self.get_role() | ||
else: | ||
role = res['role'] | ||
return role | ||
|
||
def absent_role(self): | ||
role = self.get_role() | ||
if role: | ||
self.result['changed'] = True | ||
args = { | ||
'id': role['id'], | ||
} | ||
if not self.module.check_mode: | ||
res = self.cs.deleteRole(**args) | ||
if 'errortext' in res: | ||
self.module.fail_json(msg="Failed: '%s'" % res['errortext']) | ||
return role | ||
|
||
|
||
def main(): | ||
argument_spec = cs_argument_spec() | ||
argument_spec.update(dict( | ||
uuid=dict(default=None, aliases=['id']), | ||
name=dict(required=True), | ||
description=dict(default=None), | ||
role_type=dict(choices=['User', 'DomainAdmin', 'ResourceAdmin', 'Admin'], default='User'), | ||
state=dict(choices=['present', 'absent'], default='present'), | ||
)) | ||
|
||
module = AnsibleModule( | ||
argument_spec=argument_spec, | ||
required_together=cs_required_together(), | ||
supports_check_mode=True | ||
) | ||
|
||
try: | ||
acs_role = AnsibleCloudStackRole(module) | ||
state = module.params.get('state') | ||
if state == 'absent': | ||
role = acs_role.absent_role() | ||
else: | ||
role = acs_role.present_role() | ||
|
||
result = acs_role.get_result(role) | ||
|
||
except CloudStackException as e: | ||
module.fail_json(msg='CloudStackException: %s' % str(e)) | ||
|
||
module.exit_json(**result) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |