mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Some attributes of callbacks aren't in v2. Port plugins to the v2 way to do that
Update porting guide with info on callback porting
This commit is contained in:
@@ -31,8 +31,18 @@ class CallbackModule(CallbackBase):
|
||||
CALLBACK_NAME = 'context_demo'
|
||||
CALLBACK_NEEDS_WHITELIST = True
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.task = None
|
||||
self.play = None
|
||||
|
||||
def v2_on_any(self, *args, **kwargs):
|
||||
i = 0
|
||||
if self.play:
|
||||
play_str = 'play: %s' % self.play.name
|
||||
if self.task:
|
||||
task_str = 'task: %s' % self.task
|
||||
self._display.display("--- %s %s ---" % (self.play_str, self.task_str))
|
||||
|
||||
self._display.display(" --- ARGS ")
|
||||
for a in args:
|
||||
self._display.display(' %s: %s' % (i, a))
|
||||
@@ -41,3 +51,9 @@ class CallbackModule(CallbackBase):
|
||||
self._display.display(" --- KWARGS ")
|
||||
for k in kwargs:
|
||||
self._display.display(' %s: %s' % (k, kwargs[k]))
|
||||
|
||||
def v2_playbook_on_play_start(self, play):
|
||||
self.play = play
|
||||
|
||||
def v2_playbook_on_task_start(self, task, is_conditional):
|
||||
self.task = task
|
||||
|
||||
@@ -73,6 +73,7 @@ class CallbackModule(CallbackBase):
|
||||
|
||||
self.printed_playbook = False
|
||||
self.playbook_name = None
|
||||
self.play = None
|
||||
|
||||
def send_msg(self, msg, msg_format='text', color='yellow', notify=False):
|
||||
"""Method for sending a message to HipChat"""
|
||||
@@ -93,9 +94,11 @@ class CallbackModule(CallbackBase):
|
||||
self.display.warning('Could not submit message to hipchat')
|
||||
|
||||
|
||||
def playbook_on_play_start(self, name):
|
||||
def v2_playbook_on_play_start(self, play):
|
||||
"""Display Playbook and play start messages"""
|
||||
|
||||
self.play = play
|
||||
name = play.name
|
||||
# This block sends information about a playbook when it starts
|
||||
# The playbook object is not immediately available at
|
||||
# playbook_on_start so we grab it via the play
|
||||
|
||||
Reference in New Issue
Block a user