2014-10-02 17:07:05 +00:00
|
|
|
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2014-10-15 23:22:54 +00:00
|
|
|
# Make coding more python3-ish
|
2015-10-20 01:36:19 +00:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
2014-10-15 23:22:54 +00:00
|
|
|
__metaclass__ = type
|
|
|
|
|
2015-07-11 04:47:59 +00:00
|
|
|
import json
|
2015-07-27 02:29:56 +00:00
|
|
|
import difflib
|
|
|
|
import warnings
|
2015-07-28 14:41:29 +00:00
|
|
|
from copy import deepcopy
|
2015-07-11 04:47:59 +00:00
|
|
|
|
2015-10-16 00:55:23 +00:00
|
|
|
from ansible.compat.six import string_types
|
2015-07-27 18:01:02 +00:00
|
|
|
|
2015-07-17 18:14:15 +00:00
|
|
|
from ansible import constants as C
|
2015-10-24 19:23:12 +00:00
|
|
|
from ansible.vars import strip_internal_keys
|
2015-07-27 02:29:56 +00:00
|
|
|
from ansible.utils.unicode import to_unicode
|
2015-07-17 18:14:15 +00:00
|
|
|
|
2015-11-11 18:19:58 +00:00
|
|
|
try:
|
|
|
|
from __main__ import display as global_display
|
|
|
|
except ImportError:
|
|
|
|
from ansible.utils.display import Display
|
|
|
|
global_display = Display()
|
|
|
|
|
2014-11-14 22:14:08 +00:00
|
|
|
__all__ = ["CallbackBase"]
|
|
|
|
|
2015-07-11 04:47:59 +00:00
|
|
|
|
2014-11-14 22:14:08 +00:00
|
|
|
class CallbackBase:
|
|
|
|
|
|
|
|
'''
|
|
|
|
This is a base ansible callback class that does nothing. New callbacks should
|
|
|
|
use this class as a base and override any callback methods they wish to execute
|
|
|
|
custom actions.
|
|
|
|
'''
|
|
|
|
|
2015-11-11 18:19:58 +00:00
|
|
|
def __init__(self, display=None):
|
|
|
|
if display:
|
|
|
|
self._display = display
|
|
|
|
else:
|
|
|
|
self._display = global_display
|
|
|
|
|
2015-07-11 03:48:12 +00:00
|
|
|
if self._display.verbosity >= 4:
|
2015-07-26 16:21:38 +00:00
|
|
|
name = getattr(self, 'CALLBACK_NAME', 'unnamed')
|
|
|
|
ctype = getattr(self, 'CALLBACK_TYPE', 'old')
|
|
|
|
version = getattr(self, 'CALLBACK_VERSION', '1.0')
|
2015-07-11 03:48:12 +00:00
|
|
|
self._display.vvvv('Loaded callback %s of type %s, v%s' % (name, ctype, version))
|
2014-11-14 22:14:08 +00:00
|
|
|
|
2015-12-29 16:40:18 +00:00
|
|
|
''' helper for callbacks, so they don't all have to include deepcopy '''
|
|
|
|
_copy_result = deepcopy
|
|
|
|
|
|
|
|
def _copy_result_exclude(self, result, exclude):
|
|
|
|
values = []
|
|
|
|
for e in exclude:
|
|
|
|
values.append(getattr(result, e))
|
|
|
|
setattr(result, e, None)
|
|
|
|
|
|
|
|
result_copy = deepcopy(result)
|
|
|
|
for i,e in enumerate(exclude):
|
|
|
|
setattr(result, e, values[i])
|
|
|
|
|
|
|
|
return result_copy
|
2015-12-09 19:51:43 +00:00
|
|
|
|
2015-10-30 14:16:49 +00:00
|
|
|
def _dump_results(self, result, indent=None, sort_keys=True, keep_invocation=False):
|
2015-10-23 18:08:55 +00:00
|
|
|
if result.get('_ansible_no_log', False):
|
2015-07-27 18:01:02 +00:00
|
|
|
return json.dumps(dict(censored="the output has been hidden due to the fact that 'no_log: true' was specified for this result"))
|
2015-07-28 02:15:44 +00:00
|
|
|
|
2015-07-28 14:10:21 +00:00
|
|
|
if not indent and '_ansible_verbose_always' in result and result['_ansible_verbose_always']:
|
|
|
|
indent = 4
|
|
|
|
|
2015-07-28 02:15:44 +00:00
|
|
|
# All result keys stating with _ansible_ are internal, so remove them from the result before we output anything.
|
2015-10-24 19:23:12 +00:00
|
|
|
abridged_result = strip_internal_keys(result)
|
2015-10-23 18:08:55 +00:00
|
|
|
|
2015-10-30 14:16:49 +00:00
|
|
|
# remove invocation unless specifically wanting it
|
|
|
|
if not keep_invocation and self._display.verbosity < 3 and 'invocation' in result:
|
2015-10-24 02:54:18 +00:00
|
|
|
del abridged_result['invocation']
|
2015-10-23 18:05:57 +00:00
|
|
|
|
2015-10-24 02:54:18 +00:00
|
|
|
return json.dumps(abridged_result, indent=indent, ensure_ascii=False, sort_keys=sort_keys)
|
2015-07-11 04:47:59 +00:00
|
|
|
|
2015-07-17 18:14:15 +00:00
|
|
|
def _handle_warnings(self, res):
|
|
|
|
''' display warnings, if enabled and any exist in the result '''
|
|
|
|
if C.COMMAND_WARNINGS and 'warnings' in res and res['warnings']:
|
|
|
|
for warning in res['warnings']:
|
|
|
|
self._display.warning(warning)
|
|
|
|
|
2015-08-16 06:18:21 +00:00
|
|
|
def _get_diff(self, difflist):
|
|
|
|
|
|
|
|
if not isinstance(difflist, list):
|
|
|
|
difflist = [difflist]
|
|
|
|
|
|
|
|
ret = []
|
|
|
|
for diff in difflist:
|
|
|
|
try:
|
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.simplefilter('ignore')
|
|
|
|
if 'dst_binary' in diff:
|
|
|
|
ret.append("diff skipped: destination file appears to be binary\n")
|
|
|
|
if 'src_binary' in diff:
|
|
|
|
ret.append("diff skipped: source file appears to be binary\n")
|
|
|
|
if 'dst_larger' in diff:
|
|
|
|
ret.append("diff skipped: destination file size is greater than %d\n" % diff['dst_larger'])
|
|
|
|
if 'src_larger' in diff:
|
|
|
|
ret.append("diff skipped: source file size is greater than %d\n" % diff['src_larger'])
|
|
|
|
if 'before' in diff and 'after' in diff:
|
2016-01-04 23:44:09 +00:00
|
|
|
# format complex structures into 'files'
|
|
|
|
for x in ['before', 'after']:
|
|
|
|
if isinstance(diff[x], dict):
|
|
|
|
diff[x] = json.dumps(diff[x], sort_keys=True, indent=4)
|
2015-08-16 06:18:21 +00:00
|
|
|
if 'before_header' in diff:
|
|
|
|
before_header = "before: %s" % diff['before_header']
|
|
|
|
else:
|
|
|
|
before_header = 'before'
|
|
|
|
if 'after_header' in diff:
|
|
|
|
after_header = "after: %s" % diff['after_header']
|
|
|
|
else:
|
|
|
|
after_header = 'after'
|
|
|
|
differ = difflib.unified_diff(to_unicode(diff['before']).splitlines(True), to_unicode(diff['after']).splitlines(True), before_header, after_header, '', '', 10)
|
|
|
|
ret.extend(list(differ))
|
|
|
|
ret.append('\n')
|
2016-01-25 11:50:11 +00:00
|
|
|
if 'prepared' in diff:
|
|
|
|
ret.append(to_unicode(diff['prepared']))
|
2015-08-16 06:18:21 +00:00
|
|
|
except UnicodeDecodeError:
|
|
|
|
ret.append(">> the files are different, but the diff library cannot compare unicode strings\n\n")
|
2016-01-27 13:04:07 +00:00
|
|
|
return u"".join(ret)
|
2015-07-27 02:29:56 +00:00
|
|
|
|
2015-10-02 13:09:40 +00:00
|
|
|
def _get_item(self, result):
|
2015-10-30 18:01:47 +00:00
|
|
|
if result.get('_ansible_no_log', False):
|
2015-10-02 13:09:40 +00:00
|
|
|
item = "(censored due to no_log)"
|
|
|
|
else:
|
2015-10-09 20:58:01 +00:00
|
|
|
item = result.get('item', None)
|
2015-10-02 13:09:40 +00:00
|
|
|
|
|
|
|
return item
|
|
|
|
|
2015-07-28 14:41:29 +00:00
|
|
|
def _process_items(self, result):
|
|
|
|
for res in result._result['results']:
|
2015-12-29 16:40:18 +00:00
|
|
|
newres = self._copy_result_exclude(result, ['_result'])
|
2015-10-02 13:09:40 +00:00
|
|
|
res['item'] = self._get_item(res)
|
2015-07-28 14:41:29 +00:00
|
|
|
newres._result = res
|
|
|
|
if 'failed' in res and res['failed']:
|
2015-07-28 14:59:39 +00:00
|
|
|
self.v2_playbook_item_on_failed(newres)
|
|
|
|
elif 'skipped' in res and res['skipped']:
|
|
|
|
self.v2_playbook_item_on_skipped(newres)
|
2015-07-28 14:41:29 +00:00
|
|
|
else:
|
2015-07-28 14:59:39 +00:00
|
|
|
self.v2_playbook_item_on_ok(newres)
|
2015-07-28 14:41:29 +00:00
|
|
|
|
2015-12-15 14:27:53 +00:00
|
|
|
def _clean_results(self, result, task_name):
|
|
|
|
if 'changed' in result and task_name in ['debug']:
|
|
|
|
del result['changed']
|
|
|
|
if 'invocation' in result and task_name in ['debug']:
|
|
|
|
del result['invocation']
|
|
|
|
|
2015-07-21 16:12:22 +00:00
|
|
|
def set_play_context(self, play_context):
|
2015-07-08 23:38:39 +00:00
|
|
|
pass
|
2014-11-14 22:14:08 +00:00
|
|
|
|
|
|
|
def on_any(self, *args, **kwargs):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_failed(self, host, res, ignore_errors=False):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_ok(self, host, res):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_skipped(self, host, item=None):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_unreachable(self, host, res):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_no_hosts(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_async_poll(self, host, res, jid, clock):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_async_ok(self, host, res, jid):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def runner_on_async_failed(self, host, res, jid):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_start(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_notify(self, host, handler):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_no_hosts_matched(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_no_hosts_remaining(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_task_start(self, name, is_conditional):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_vars_prompt(self, varname, private=True, prompt=None, encrypt=None, confirm=False, salt_size=None, salt=None, default=None):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_setup(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_import_for_host(self, host, imported_file):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_not_import_for_host(self, host, missing_file):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_play_start(self, name):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def playbook_on_stats(self, stats):
|
|
|
|
pass
|
|
|
|
|
2015-07-26 16:21:38 +00:00
|
|
|
def on_file_diff(self, host, diff):
|
2015-07-27 02:29:56 +00:00
|
|
|
pass
|
2015-07-26 16:21:38 +00:00
|
|
|
|
2015-07-08 23:38:39 +00:00
|
|
|
####### V2 METHODS, by default they call v1 counterparts if possible ######
|
|
|
|
def v2_on_any(self, *args, **kwargs):
|
|
|
|
self.on_any(args, kwargs)
|
|
|
|
|
|
|
|
def v2_runner_on_failed(self, result, ignore_errors=False):
|
|
|
|
host = result._host.get_name()
|
|
|
|
self.runner_on_failed(host, result._result, ignore_errors)
|
|
|
|
|
|
|
|
def v2_runner_on_ok(self, result):
|
|
|
|
host = result._host.get_name()
|
|
|
|
self.runner_on_ok(host, result._result)
|
|
|
|
|
|
|
|
def v2_runner_on_skipped(self, result):
|
2015-08-31 00:21:15 +00:00
|
|
|
if C.DISPLAY_SKIPPED_HOSTS:
|
2015-08-28 16:14:23 +00:00
|
|
|
host = result._host.get_name()
|
2015-10-02 13:09:40 +00:00
|
|
|
self.runner_on_skipped(host, self._get_item(getattr(result._result,'results',{})))
|
2015-07-08 23:38:39 +00:00
|
|
|
|
|
|
|
def v2_runner_on_unreachable(self, result):
|
|
|
|
host = result._host.get_name()
|
|
|
|
self.runner_on_unreachable(host, result._result)
|
|
|
|
|
|
|
|
def v2_runner_on_no_hosts(self, task):
|
|
|
|
self.runner_on_no_hosts()
|
|
|
|
|
|
|
|
def v2_runner_on_async_poll(self, result):
|
|
|
|
host = result._host.get_name()
|
|
|
|
jid = result._result.get('ansible_job_id')
|
2015-10-23 18:08:55 +00:00
|
|
|
#FIXME, get real clock
|
2015-07-08 23:38:39 +00:00
|
|
|
clock = 0
|
|
|
|
self.runner_on_async_poll(host, result._result, jid, clock)
|
|
|
|
|
|
|
|
def v2_runner_on_async_ok(self, result):
|
|
|
|
host = result._host.get_name()
|
|
|
|
jid = result._result.get('ansible_job_id')
|
|
|
|
self.runner_on_async_ok(host, result._result, jid)
|
|
|
|
|
|
|
|
def v2_runner_on_async_failed(self, result):
|
|
|
|
host = result._host.get_name()
|
|
|
|
jid = result._result.get('ansible_job_id')
|
|
|
|
self.runner_on_async_failed(host, result._result, jid)
|
|
|
|
|
|
|
|
def v2_runner_on_file_diff(self, result, diff):
|
|
|
|
pass #no v1 correspondance
|
|
|
|
|
2015-12-02 17:29:51 +00:00
|
|
|
def v2_playbook_on_start(self, playbook):
|
2015-07-08 23:38:39 +00:00
|
|
|
self.playbook_on_start()
|
|
|
|
|
|
|
|
def v2_playbook_on_notify(self, result, handler):
|
|
|
|
host = result._host.get_name()
|
|
|
|
self.playbook_on_notify(host, handler)
|
|
|
|
|
|
|
|
def v2_playbook_on_no_hosts_matched(self):
|
|
|
|
self.playbook_on_no_hosts_matched()
|
|
|
|
|
|
|
|
def v2_playbook_on_no_hosts_remaining(self):
|
|
|
|
self.playbook_on_no_hosts_remaining()
|
|
|
|
|
|
|
|
def v2_playbook_on_task_start(self, task, is_conditional):
|
|
|
|
self.playbook_on_task_start(task, is_conditional)
|
|
|
|
|
|
|
|
def v2_playbook_on_cleanup_task_start(self, task):
|
|
|
|
pass #no v1 correspondance
|
|
|
|
|
|
|
|
def v2_playbook_on_handler_task_start(self, task):
|
|
|
|
pass #no v1 correspondance
|
|
|
|
|
|
|
|
def v2_playbook_on_vars_prompt(self, varname, private=True, prompt=None, encrypt=None, confirm=False, salt_size=None, salt=None, default=None):
|
|
|
|
self.playbook_on_vars_prompt(varname, private, prompt, encrypt, confirm, salt_size, salt, default)
|
|
|
|
|
|
|
|
def v2_playbook_on_setup(self):
|
|
|
|
self.playbook_on_setup()
|
|
|
|
|
|
|
|
def v2_playbook_on_import_for_host(self, result, imported_file):
|
|
|
|
host = result._host.get_name()
|
|
|
|
self.playbook_on_import_for_host(host, imported_file)
|
|
|
|
|
|
|
|
def v2_playbook_on_not_import_for_host(self, result, missing_file):
|
|
|
|
host = result._host.get_name()
|
|
|
|
self.playbook_on_not_import_for_host(host, missing_file)
|
|
|
|
|
|
|
|
def v2_playbook_on_play_start(self, play):
|
|
|
|
self.playbook_on_play_start(play.name)
|
|
|
|
|
|
|
|
def v2_playbook_on_stats(self, stats):
|
|
|
|
self.playbook_on_stats(stats)
|
|
|
|
|
2015-07-26 16:21:38 +00:00
|
|
|
def v2_on_file_diff(self, result):
|
|
|
|
host = result._host.get_name()
|
|
|
|
if 'diff' in result._result:
|
|
|
|
self.on_file_diff(host, result._result['diff'])
|
2015-07-28 14:59:39 +00:00
|
|
|
|
|
|
|
def v2_playbook_on_item_ok(self, result):
|
|
|
|
pass # no v1
|
|
|
|
|
|
|
|
def v2_playbook_on_item_failed(self, result):
|
|
|
|
pass # no v1
|
2015-07-28 15:02:25 +00:00
|
|
|
|
|
|
|
def v2_playbook_on_item_skipped(self, result):
|
|
|
|
pass # no v1
|
2015-10-19 17:40:25 +00:00
|
|
|
|
|
|
|
def v2_playbook_on_include(self, included_file):
|
|
|
|
pass #no v1 correspondance
|
2015-11-25 18:49:03 +00:00
|
|
|
|
|
|
|
def v2_playbook_item_on_ok(self, result):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def v2_playbook_item_on_failed(self, result):
|
|
|
|
pass
|
|
|
|
|
2015-11-25 18:52:42 +00:00
|
|
|
def v2_playbook_item_on_skipped(self, result):
|
2015-11-25 18:49:03 +00:00
|
|
|
pass
|