default.py 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. '''Plugin to override the default output logic.'''
  2. # upstream: https://gist.github.com/cliffano/9868180
  3. # This program is free software: you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation, either version 3 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. # For some reason this has to be done
  16. import imp
  17. import os
  18. ANSIBLE_PATH = imp.find_module('ansible')[1]
  19. DEFAULT_PATH = os.path.join(ANSIBLE_PATH, 'plugins/callback/default.py')
  20. DEFAULT_MODULE = imp.load_source(
  21. 'ansible.plugins.callback.default',
  22. DEFAULT_PATH
  23. )
  24. try:
  25. from ansible.plugins.callback import CallbackBase
  26. BASECLASS = CallbackBase
  27. except ImportError: # < ansible 2.1
  28. BASECLASS = DEFAULT_MODULE.CallbackModule
  29. class CallbackModule(DEFAULT_MODULE.CallbackModule): # pylint: disable=too-few-public-methods,no-init
  30. '''
  31. Override for the default callback module.
  32. Render std err/out outside of the rest of the result which it prints with
  33. indentation.
  34. '''
  35. CALLBACK_VERSION = 2.0
  36. CALLBACK_TYPE = 'stdout'
  37. CALLBACK_NAME = 'default'
  38. def __init__(self, *args, **kwargs):
  39. # pylint: disable=non-parent-init-called
  40. BASECLASS.__init__(self, *args, **kwargs)
  41. def _dump_results(self, result):
  42. '''Return the text to output for a result.'''
  43. result['_ansible_verbose_always'] = True
  44. save = {}
  45. for key in ['stdout', 'stdout_lines', 'stderr', 'stderr_lines', 'msg']:
  46. if key in result:
  47. save[key] = result.pop(key)
  48. output = BASECLASS._dump_results(self, result) # pylint: disable=protected-access
  49. for key in ['stdout', 'stderr', 'msg']:
  50. if key in save and save[key]:
  51. output += '\n\n%s:\n\n%s\n' % (key.upper(), save[key])
  52. for key, value in save.items():
  53. result[key] = value
  54. return output