mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
246 lines
7.1 KiB
Python
246 lines
7.1 KiB
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Copyright: (c) 2013, John Dewey <john@dewey.ws>
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
__metaclass__ = type
|
||
|
|
||
|
|
||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||
|
'status': ['preview'],
|
||
|
'supported_by': 'community'}
|
||
|
|
||
|
|
||
|
DOCUMENTATION = '''
|
||
|
---
|
||
|
module: rabbitmq_policy
|
||
|
short_description: Manage the state of policies in RabbitMQ
|
||
|
description:
|
||
|
- Manage the state of a policy in RabbitMQ.
|
||
|
author: John Dewey (@retr0h)
|
||
|
options:
|
||
|
name:
|
||
|
description:
|
||
|
- The name of the policy to manage.
|
||
|
required: true
|
||
|
vhost:
|
||
|
description:
|
||
|
- The name of the vhost to apply to.
|
||
|
default: /
|
||
|
apply_to:
|
||
|
description:
|
||
|
- What the policy applies to. Requires RabbitMQ 3.2.0 or later.
|
||
|
default: all
|
||
|
choices: [all, exchanges, queues]
|
||
|
pattern:
|
||
|
description:
|
||
|
- A regex of queues to apply the policy to. Required when
|
||
|
C(state=present). This option is no longer required as of Ansible 2.9.
|
||
|
required: false
|
||
|
default: null
|
||
|
tags:
|
||
|
description:
|
||
|
- A dict or string describing the policy. Required when
|
||
|
C(state=present). This option is no longer required as of Ansible 2.9.
|
||
|
required: false
|
||
|
default: null
|
||
|
priority:
|
||
|
description:
|
||
|
- The priority of the policy.
|
||
|
default: 0
|
||
|
node:
|
||
|
description:
|
||
|
- Erlang node name of the rabbit we wish to configure.
|
||
|
default: rabbit
|
||
|
state:
|
||
|
description:
|
||
|
- The state of the policy.
|
||
|
default: present
|
||
|
choices: [present, absent]
|
||
|
'''
|
||
|
|
||
|
EXAMPLES = '''
|
||
|
- name: ensure the default vhost contains the HA policy via a dict
|
||
|
rabbitmq_policy:
|
||
|
name: HA
|
||
|
pattern: .*
|
||
|
args:
|
||
|
tags:
|
||
|
ha-mode: all
|
||
|
|
||
|
- name: ensure the default vhost contains the HA policy
|
||
|
rabbitmq_policy:
|
||
|
name: HA
|
||
|
pattern: .*
|
||
|
tags:
|
||
|
ha-mode: all
|
||
|
'''
|
||
|
|
||
|
import json
|
||
|
import re
|
||
|
from distutils.version import LooseVersion as Version
|
||
|
|
||
|
from ansible.module_utils.basic import AnsibleModule
|
||
|
|
||
|
|
||
|
class RabbitMqPolicy(object):
|
||
|
|
||
|
def __init__(self, module, name):
|
||
|
self._module = module
|
||
|
self._name = name
|
||
|
self._vhost = module.params['vhost']
|
||
|
self._pattern = module.params['pattern']
|
||
|
self._apply_to = module.params['apply_to']
|
||
|
self._tags = module.params['tags']
|
||
|
self._priority = module.params['priority']
|
||
|
self._node = module.params['node']
|
||
|
self._rabbitmqctl = module.get_bin_path('rabbitmqctl', True)
|
||
|
|
||
|
self._version = self._rabbit_version()
|
||
|
|
||
|
def _exec(self,
|
||
|
args,
|
||
|
run_in_check_mode=False,
|
||
|
split_lines=True,
|
||
|
add_vhost=True):
|
||
|
if (not self._module.check_mode
|
||
|
or (self._module.check_mode and run_in_check_mode)):
|
||
|
cmd = [self._rabbitmqctl, '-q', '-n', self._node]
|
||
|
|
||
|
if add_vhost:
|
||
|
args.insert(1, '-p')
|
||
|
args.insert(2, self._vhost)
|
||
|
|
||
|
rc, out, err = self._module.run_command(cmd + args, check_rc=True)
|
||
|
if split_lines:
|
||
|
return out.splitlines()
|
||
|
|
||
|
return out
|
||
|
return list()
|
||
|
|
||
|
def _rabbit_version(self):
|
||
|
status = self._exec(['status'], True, False, False)
|
||
|
|
||
|
# 3.7.x erlang style output
|
||
|
version_match = re.search('{rabbit,".*","(?P<version>.*)"}', status)
|
||
|
if version_match:
|
||
|
return Version(version_match.group('version'))
|
||
|
|
||
|
# 3.8.x style ouput
|
||
|
version_match = re.search('RabbitMQ version: (?P<version>.*)', status)
|
||
|
if version_match:
|
||
|
return Version(version_match.group('version'))
|
||
|
|
||
|
return None
|
||
|
|
||
|
def _list_policies(self):
|
||
|
if self._version and self._version >= Version('3.7.9'):
|
||
|
# Remove first header line from policies list for version > 3.7.9
|
||
|
return self._exec(['list_policies'], True)[1:]
|
||
|
|
||
|
return self._exec(['list_policies'], True)
|
||
|
|
||
|
def has_modifications(self):
|
||
|
if self._pattern is None or self._tags is None:
|
||
|
self._module.fail_json(
|
||
|
msg=('pattern and tags are required for '
|
||
|
'state=present'))
|
||
|
|
||
|
if self._version and self._version >= Version('3.7.0'):
|
||
|
# Change fields order in rabbitmqctl output in version 3.7
|
||
|
return not any(
|
||
|
self._policy_check(policy, apply_to_fno=3, pattern_fno=2)
|
||
|
for policy in self._list_policies())
|
||
|
else:
|
||
|
return not any(
|
||
|
self._policy_check(policy) for policy in self._list_policies())
|
||
|
|
||
|
def should_be_deleted(self):
|
||
|
return any(
|
||
|
self._policy_check_by_name(policy)
|
||
|
for policy in self._list_policies())
|
||
|
|
||
|
def set(self):
|
||
|
args = ['set_policy']
|
||
|
args.append(self._name)
|
||
|
args.append(self._pattern)
|
||
|
args.append(json.dumps(self._tags))
|
||
|
args.append('--priority')
|
||
|
args.append(self._priority)
|
||
|
if self._apply_to != 'all':
|
||
|
args.append('--apply-to')
|
||
|
args.append(self._apply_to)
|
||
|
return self._exec(args)
|
||
|
|
||
|
def clear(self):
|
||
|
return self._exec(['clear_policy', self._name])
|
||
|
|
||
|
def _policy_check(self,
|
||
|
policy,
|
||
|
name_fno=1,
|
||
|
apply_to_fno=2,
|
||
|
pattern_fno=3,
|
||
|
tags_fno=4,
|
||
|
priority_fno=5):
|
||
|
if not policy:
|
||
|
return False
|
||
|
|
||
|
policy_data = policy.split('\t')
|
||
|
|
||
|
policy_name = policy_data[name_fno]
|
||
|
apply_to = policy_data[apply_to_fno]
|
||
|
pattern = policy_data[pattern_fno].replace('\\\\', '\\')
|
||
|
tags = json.loads(policy_data[tags_fno])
|
||
|
priority = policy_data[priority_fno]
|
||
|
|
||
|
return (policy_name == self._name and apply_to == self._apply_to
|
||
|
and tags == self._tags and priority == self._priority
|
||
|
and pattern == self._pattern)
|
||
|
|
||
|
def _policy_check_by_name(self, policy):
|
||
|
if not policy:
|
||
|
return False
|
||
|
|
||
|
policy_name = policy.split('\t')[1]
|
||
|
|
||
|
return policy_name == self._name
|
||
|
|
||
|
|
||
|
def main():
|
||
|
arg_spec = dict(
|
||
|
name=dict(required=True),
|
||
|
vhost=dict(default='/'),
|
||
|
pattern=dict(required=False, default=None),
|
||
|
apply_to=dict(default='all', choices=['all', 'exchanges', 'queues']),
|
||
|
tags=dict(type='dict', required=False, default=None),
|
||
|
priority=dict(default='0'),
|
||
|
node=dict(default='rabbit'),
|
||
|
state=dict(default='present', choices=['present', 'absent']),
|
||
|
)
|
||
|
|
||
|
module = AnsibleModule(
|
||
|
argument_spec=arg_spec,
|
||
|
supports_check_mode=True
|
||
|
)
|
||
|
|
||
|
name = module.params['name']
|
||
|
state = module.params['state']
|
||
|
rabbitmq_policy = RabbitMqPolicy(module, name)
|
||
|
|
||
|
result = dict(changed=False, name=name, state=state)
|
||
|
|
||
|
if state == 'present' and rabbitmq_policy.has_modifications():
|
||
|
rabbitmq_policy.set()
|
||
|
result['changed'] = True
|
||
|
elif state == 'absent' and rabbitmq_policy.should_be_deleted():
|
||
|
rabbitmq_policy.clear()
|
||
|
result['changed'] = True
|
||
|
|
||
|
module.exit_json(**result)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|