2020-03-09 10:11:07 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013, Peter Sprygada <sprygada@gmail.com>
|
2022-08-05 12:28:29 +02:00
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: ejabberd_user
|
|
|
|
author: "Peter Sprygada (@privateip)"
|
|
|
|
short_description: Manages users for ejabberd servers
|
|
|
|
requirements:
|
|
|
|
- ejabberd with mod_admin_extra
|
|
|
|
description:
|
|
|
|
- This module provides user management for ejabberd servers
|
2023-02-20 17:29:41 +01:00
|
|
|
extends_documentation_fragment:
|
|
|
|
- community.general.attributes
|
|
|
|
attributes:
|
|
|
|
check_mode:
|
|
|
|
support: full
|
|
|
|
diff_mode:
|
|
|
|
support: none
|
2020-03-09 10:11:07 +01:00
|
|
|
options:
|
|
|
|
username:
|
2020-10-31 13:53:57 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- the name of the user to manage
|
|
|
|
required: true
|
|
|
|
host:
|
2020-10-31 13:53:57 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- the ejabberd host associated with this username
|
|
|
|
required: true
|
|
|
|
password:
|
2020-10-31 13:53:57 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- the password to assign to the username
|
|
|
|
required: false
|
|
|
|
logging:
|
|
|
|
description:
|
|
|
|
- enables or disables the local syslog facility for this module
|
|
|
|
required: false
|
|
|
|
default: false
|
|
|
|
type: bool
|
|
|
|
state:
|
2020-10-31 13:53:57 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- describe the desired state of the user to be managed
|
|
|
|
required: false
|
|
|
|
default: 'present'
|
|
|
|
choices: [ 'present', 'absent' ]
|
|
|
|
notes:
|
|
|
|
- Password parameter is required for state == present only
|
|
|
|
- Passwords must be stored in clear text for this release
|
|
|
|
- The ejabberd configuration file must include mod_admin_extra as a module.
|
|
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Example playbook entries using the ejabberd_user module to manage users state.
|
|
|
|
|
2020-05-16 15:07:51 +02:00
|
|
|
- name: Create a user if it does not exist
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.ejabberd_user:
|
2020-03-09 10:11:07 +01:00
|
|
|
username: test
|
|
|
|
host: server
|
|
|
|
password: password
|
|
|
|
|
2020-05-16 15:07:51 +02:00
|
|
|
- name: Delete a user if it exists
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.ejabberd_user:
|
2020-03-09 10:11:07 +01:00
|
|
|
username: test
|
|
|
|
host: server
|
|
|
|
state: absent
|
|
|
|
'''
|
|
|
|
|
|
|
|
import syslog
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2023-08-13 20:55:59 +02:00
|
|
|
from ansible_collections.community.general.plugins.module_utils.cmd_runner import CmdRunner, cmd_runner_fmt
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
class EjabberdUser(object):
|
|
|
|
""" This object represents a user resource for an ejabberd server. The
|
|
|
|
object manages user creation and deletion using ejabberdctl. The following
|
|
|
|
commands are currently supported:
|
|
|
|
* ejabberdctl register
|
|
|
|
* ejabberdctl deregister
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, module):
|
|
|
|
self.module = module
|
|
|
|
self.logging = module.params.get('logging')
|
|
|
|
self.state = module.params.get('state')
|
|
|
|
self.host = module.params.get('host')
|
|
|
|
self.user = module.params.get('username')
|
|
|
|
self.pwd = module.params.get('password')
|
2023-08-13 20:55:59 +02:00
|
|
|
self.runner = CmdRunner(
|
|
|
|
module,
|
|
|
|
command="ejabberdctl",
|
|
|
|
arg_formats=dict(
|
|
|
|
cmd=cmd_runner_fmt.as_list(),
|
|
|
|
host=cmd_runner_fmt.as_list(),
|
|
|
|
user=cmd_runner_fmt.as_list(),
|
|
|
|
pwd=cmd_runner_fmt.as_list(),
|
|
|
|
),
|
|
|
|
check_rc=False,
|
|
|
|
)
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def changed(self):
|
|
|
|
""" This method will check the current user and see if the password has
|
|
|
|
changed. It will return True if the user does not match the supplied
|
|
|
|
credentials and False if it does not
|
|
|
|
"""
|
2023-08-13 20:55:59 +02:00
|
|
|
return self.run_command('check_password', 'user host pwd', (lambda rc, out, err: bool(rc)))
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def exists(self):
|
|
|
|
""" This method will check to see if the supplied username exists for
|
|
|
|
host specified. If the user exists True is returned, otherwise False
|
|
|
|
is returned
|
|
|
|
"""
|
2023-08-13 20:55:59 +02:00
|
|
|
return self.run_command('check_account', 'user host', (lambda rc, out, err: not bool(rc)))
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
def log(self, entry):
|
|
|
|
""" This method will log information to the local syslog facility """
|
|
|
|
if self.logging:
|
|
|
|
syslog.openlog('ansible-%s' % self.module._name)
|
|
|
|
syslog.syslog(syslog.LOG_NOTICE, entry)
|
|
|
|
|
2023-08-13 20:55:59 +02:00
|
|
|
def run_command(self, cmd, options, process=None):
|
2020-03-09 10:11:07 +01:00
|
|
|
""" This method will run the any command specified and return the
|
|
|
|
returns using the Ansible common module
|
|
|
|
"""
|
2023-08-13 20:55:59 +02:00
|
|
|
def _proc(*a):
|
|
|
|
return a
|
|
|
|
|
|
|
|
if process is None:
|
|
|
|
process = _proc
|
|
|
|
|
|
|
|
with self.runner("cmd " + options, output_process=process) as ctx:
|
|
|
|
res = ctx.run(cmd=cmd, host=self.host, user=self.user, pwd=self.pwd)
|
|
|
|
self.log('command: %s' % " ".join(ctx.run_info['cmd']))
|
|
|
|
return res
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
def update(self):
|
|
|
|
""" The update method will update the credentials for the user provided
|
|
|
|
"""
|
2023-08-13 20:55:59 +02:00
|
|
|
return self.run_command('change_password', 'user host pwd')
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
def create(self):
|
|
|
|
""" The create method will create a new user on the host with the
|
|
|
|
password provided
|
|
|
|
"""
|
2023-08-13 20:55:59 +02:00
|
|
|
return self.run_command('register', 'user host pwd')
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
def delete(self):
|
|
|
|
""" The delete method will delete the user from the host
|
|
|
|
"""
|
2023-08-13 20:55:59 +02:00
|
|
|
return self.run_command('unregister', 'user host')
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
2020-10-31 13:53:57 +01:00
|
|
|
host=dict(required=True, type='str'),
|
|
|
|
username=dict(required=True, type='str'),
|
2021-07-28 07:49:37 +02:00
|
|
|
password=dict(type='str', no_log=True),
|
2020-03-09 10:11:07 +01:00
|
|
|
state=dict(default='present', choices=['present', 'absent']),
|
2023-08-02 10:43:29 +02:00
|
|
|
logging=dict(default=False, type='bool', removed_in_version='10.0.0', removed_from_collection='community.general'),
|
2020-03-09 10:11:07 +01:00
|
|
|
),
|
2021-07-28 07:49:37 +02:00
|
|
|
required_if=[
|
|
|
|
('state', 'present', ['password']),
|
|
|
|
],
|
|
|
|
supports_check_mode=True,
|
2020-03-09 10:11:07 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
obj = EjabberdUser(module)
|
|
|
|
|
|
|
|
rc = None
|
|
|
|
result = dict(changed=False)
|
|
|
|
|
|
|
|
if obj.state == 'absent':
|
|
|
|
if obj.exists:
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
(rc, out, err) = obj.delete()
|
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg=err, rc=rc)
|
|
|
|
|
|
|
|
elif obj.state == 'present':
|
|
|
|
if not obj.exists:
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
(rc, out, err) = obj.create()
|
|
|
|
elif obj.changed:
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
(rc, out, err) = obj.update()
|
|
|
|
if rc is not None and rc != 0:
|
|
|
|
module.fail_json(msg=err, rc=rc)
|
|
|
|
|
|
|
|
if rc is None:
|
|
|
|
result['changed'] = False
|
|
|
|
else:
|
|
|
|
result['changed'] = True
|
|
|
|
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|