2020-03-09 10:11:07 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright (c) 2016, Thierno IB. BARRY @barryib
|
|
|
|
# Sponsored by Polyconseil http://polyconseil.fr.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: kibana_plugin
|
|
|
|
short_description: Manage Kibana plugins
|
|
|
|
description:
|
|
|
|
- This module can be used to manage Kibana plugins.
|
|
|
|
author: Thierno IB. BARRY (@barryib)
|
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- Name of the plugin to install.
|
|
|
|
required: True
|
2021-02-16 09:27:24 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Desired state of a plugin.
|
|
|
|
choices: ["present", "absent"]
|
|
|
|
default: present
|
2021-02-16 09:27:24 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
url:
|
|
|
|
description:
|
|
|
|
- Set exact URL to download the plugin from.
|
|
|
|
- For local file, prefix its absolute path with file://
|
2021-02-16 09:27:24 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
timeout:
|
|
|
|
description:
|
|
|
|
- "Timeout setting: 30s, 1m, 1h etc."
|
|
|
|
default: 1m
|
2021-02-16 09:27:24 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
plugin_bin:
|
|
|
|
description:
|
|
|
|
- Location of the Kibana binary.
|
|
|
|
default: /opt/kibana/bin/kibana
|
2021-02-16 09:27:24 +01:00
|
|
|
type: path
|
2020-03-09 10:11:07 +01:00
|
|
|
plugin_dir:
|
|
|
|
description:
|
|
|
|
- Your configured plugin directory specified in Kibana.
|
|
|
|
default: /opt/kibana/installedPlugins/
|
2021-02-16 09:27:24 +01:00
|
|
|
type: path
|
2020-03-09 10:11:07 +01:00
|
|
|
version:
|
|
|
|
description:
|
|
|
|
- Version of the plugin to be installed.
|
|
|
|
- If plugin exists with previous version, plugin will NOT be updated unless C(force) is set to yes.
|
2021-02-16 09:27:24 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
force:
|
|
|
|
description:
|
|
|
|
- Delete and re-install the plugin. Can be useful for plugins update.
|
|
|
|
type: bool
|
2021-03-15 13:35:34 +01:00
|
|
|
default: false
|
|
|
|
allow_root:
|
|
|
|
description:
|
|
|
|
- Whether to allow C(kibana) and C(kibana-plugin) to be run as root. Passes the C(--allow-root) flag to these commands.
|
|
|
|
type: bool
|
|
|
|
default: false
|
|
|
|
version_added: 2.3.0
|
2020-03-09 10:11:07 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
- name: Install Elasticsearch head plugin
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.kibana_plugin:
|
2020-03-09 10:11:07 +01:00
|
|
|
state: present
|
|
|
|
name: elasticsearch/marvel
|
|
|
|
|
|
|
|
- name: Install specific version of a plugin
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.kibana_plugin:
|
2020-03-09 10:11:07 +01:00
|
|
|
state: present
|
|
|
|
name: elasticsearch/marvel
|
|
|
|
version: '2.3.3'
|
|
|
|
|
|
|
|
- name: Uninstall Elasticsearch head plugin
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.kibana_plugin:
|
2020-03-09 10:11:07 +01:00
|
|
|
state: absent
|
|
|
|
name: elasticsearch/marvel
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = '''
|
|
|
|
cmd:
|
|
|
|
description: the launched command during plugin management (install / remove)
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
name:
|
|
|
|
description: the plugin name to install or remove
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
url:
|
|
|
|
description: the url from where the plugin is installed from
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
timeout:
|
|
|
|
description: the timeout for plugin download
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
stdout:
|
|
|
|
description: the command stdout
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
stderr:
|
|
|
|
description: the command stderr
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
state:
|
|
|
|
description: the state for the managed plugin
|
|
|
|
returned: success
|
|
|
|
type: str
|
|
|
|
'''
|
|
|
|
|
|
|
|
import os
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
2021-12-24 18:34:48 +01:00
|
|
|
from ansible_collections.community.general.plugins.module_utils.version import LooseVersion
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
PACKAGE_STATE_MAP = dict(
|
|
|
|
present="--install",
|
|
|
|
absent="--remove"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def parse_plugin_repo(string):
|
|
|
|
elements = string.split("/")
|
|
|
|
|
|
|
|
# We first consider the simplest form: pluginname
|
|
|
|
repo = elements[0]
|
|
|
|
|
|
|
|
# We consider the form: username/pluginname
|
|
|
|
if len(elements) > 1:
|
|
|
|
repo = elements[1]
|
|
|
|
|
|
|
|
# remove elasticsearch- prefix
|
|
|
|
# remove es- prefix
|
|
|
|
for string in ("elasticsearch-", "es-"):
|
|
|
|
if repo.startswith(string):
|
|
|
|
return repo[len(string):]
|
|
|
|
|
|
|
|
return repo
|
|
|
|
|
|
|
|
|
|
|
|
def is_plugin_present(plugin_dir, working_dir):
|
|
|
|
return os.path.isdir(os.path.join(working_dir, plugin_dir))
|
|
|
|
|
|
|
|
|
|
|
|
def parse_error(string):
|
|
|
|
reason = "reason: "
|
|
|
|
try:
|
|
|
|
return string[string.index(reason) + len(reason):].strip()
|
|
|
|
except ValueError:
|
|
|
|
return string
|
|
|
|
|
|
|
|
|
2021-03-15 13:35:34 +01:00
|
|
|
def install_plugin(module, plugin_bin, plugin_name, url, timeout, allow_root, kibana_version='4.6'):
|
2020-03-09 10:11:07 +01:00
|
|
|
if LooseVersion(kibana_version) > LooseVersion('4.6'):
|
|
|
|
kibana_plugin_bin = os.path.join(os.path.dirname(plugin_bin), 'kibana-plugin')
|
|
|
|
cmd_args = [kibana_plugin_bin, "install"]
|
|
|
|
if url:
|
|
|
|
cmd_args.append(url)
|
|
|
|
else:
|
|
|
|
cmd_args.append(plugin_name)
|
|
|
|
else:
|
|
|
|
cmd_args = [plugin_bin, "plugin", PACKAGE_STATE_MAP["present"], plugin_name]
|
|
|
|
|
|
|
|
if url:
|
2021-04-02 22:05:28 +02:00
|
|
|
cmd_args.extend(["--url", url])
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
if timeout:
|
2021-04-02 22:05:28 +02:00
|
|
|
cmd_args.extend(["--timeout", timeout])
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2021-03-15 13:35:34 +01:00
|
|
|
if allow_root:
|
|
|
|
cmd_args.append('--allow-root')
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
if module.check_mode:
|
2021-04-02 22:05:28 +02:00
|
|
|
return True, " ".join(cmd_args), "check mode", ""
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2021-04-02 22:05:28 +02:00
|
|
|
rc, out, err = module.run_command(cmd_args)
|
2020-03-09 10:11:07 +01:00
|
|
|
if rc != 0:
|
|
|
|
reason = parse_error(out)
|
|
|
|
module.fail_json(msg=reason)
|
|
|
|
|
2021-04-02 22:05:28 +02:00
|
|
|
return True, " ".join(cmd_args), out, err
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
|
2021-03-15 13:35:34 +01:00
|
|
|
def remove_plugin(module, plugin_bin, plugin_name, allow_root, kibana_version='4.6'):
|
2020-03-09 10:11:07 +01:00
|
|
|
if LooseVersion(kibana_version) > LooseVersion('4.6'):
|
|
|
|
kibana_plugin_bin = os.path.join(os.path.dirname(plugin_bin), 'kibana-plugin')
|
|
|
|
cmd_args = [kibana_plugin_bin, "remove", plugin_name]
|
|
|
|
else:
|
|
|
|
cmd_args = [plugin_bin, "plugin", PACKAGE_STATE_MAP["absent"], plugin_name]
|
|
|
|
|
2021-03-15 13:35:34 +01:00
|
|
|
if allow_root:
|
|
|
|
cmd_args.append('--allow-root')
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
if module.check_mode:
|
2021-04-02 22:05:28 +02:00
|
|
|
return True, " ".join(cmd_args), "check mode", ""
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2021-04-02 22:05:28 +02:00
|
|
|
rc, out, err = module.run_command(cmd_args)
|
2020-03-09 10:11:07 +01:00
|
|
|
if rc != 0:
|
|
|
|
reason = parse_error(out)
|
|
|
|
module.fail_json(msg=reason)
|
|
|
|
|
2021-04-02 22:05:28 +02:00
|
|
|
return True, " ".join(cmd_args), out, err
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
|
2021-03-15 13:35:34 +01:00
|
|
|
def get_kibana_version(module, plugin_bin, allow_root):
|
2020-03-09 10:11:07 +01:00
|
|
|
cmd_args = [plugin_bin, '--version']
|
2021-03-15 13:35:34 +01:00
|
|
|
|
|
|
|
if allow_root:
|
|
|
|
cmd_args.append('--allow-root')
|
|
|
|
|
2021-04-02 22:05:28 +02:00
|
|
|
rc, out, err = module.run_command(cmd_args)
|
2020-03-09 10:11:07 +01:00
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg="Failed to get Kibana version : %s" % err)
|
|
|
|
|
|
|
|
return out.strip()
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
|
|
|
name=dict(required=True),
|
2021-02-16 09:27:24 +01:00
|
|
|
state=dict(default="present", choices=list(PACKAGE_STATE_MAP.keys())),
|
2020-03-09 10:11:07 +01:00
|
|
|
url=dict(default=None),
|
|
|
|
timeout=dict(default="1m"),
|
|
|
|
plugin_bin=dict(default="/opt/kibana/bin/kibana", type="path"),
|
|
|
|
plugin_dir=dict(default="/opt/kibana/installedPlugins/", type="path"),
|
|
|
|
version=dict(default=None),
|
2021-03-15 13:35:34 +01:00
|
|
|
force=dict(default=False, type="bool"),
|
|
|
|
allow_root=dict(default=False, type="bool"),
|
2020-03-09 10:11:07 +01:00
|
|
|
),
|
|
|
|
supports_check_mode=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
name = module.params["name"]
|
|
|
|
state = module.params["state"]
|
|
|
|
url = module.params["url"]
|
|
|
|
timeout = module.params["timeout"]
|
|
|
|
plugin_bin = module.params["plugin_bin"]
|
|
|
|
plugin_dir = module.params["plugin_dir"]
|
|
|
|
version = module.params["version"]
|
|
|
|
force = module.params["force"]
|
2021-03-15 13:35:34 +01:00
|
|
|
allow_root = module.params["allow_root"]
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
changed, cmd, out, err = False, '', '', ''
|
|
|
|
|
2021-03-15 13:35:34 +01:00
|
|
|
kibana_version = get_kibana_version(module, plugin_bin, allow_root)
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
present = is_plugin_present(parse_plugin_repo(name), plugin_dir)
|
|
|
|
|
|
|
|
# skip if the state is correct
|
|
|
|
if (present and state == "present" and not force) or (state == "absent" and not present and not force):
|
|
|
|
module.exit_json(changed=False, name=name, state=state)
|
|
|
|
|
|
|
|
if version:
|
|
|
|
name = name + '/' + version
|
|
|
|
|
|
|
|
if state == "present":
|
|
|
|
if force:
|
2021-04-02 22:05:28 +02:00
|
|
|
remove_plugin(module, plugin_bin, name, allow_root, kibana_version)
|
2021-03-15 13:35:34 +01:00
|
|
|
changed, cmd, out, err = install_plugin(module, plugin_bin, name, url, timeout, allow_root, kibana_version)
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
elif state == "absent":
|
2021-03-15 13:35:34 +01:00
|
|
|
changed, cmd, out, err = remove_plugin(module, plugin_bin, name, allow_root, kibana_version)
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
module.exit_json(changed=changed, cmd=cmd, name=name, state=state, url=url, timeout=timeout, stdout=out, stderr=err)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|