summaryrefslogtreecommitdiffstats
path: root/callback_plugins
diff options
context:
space:
mode:
authorRalph Bean <rbean@redhat.com>2013-08-06 01:44:17 +0000
committerRalph Bean <rbean@redhat.com>2013-08-06 01:44:17 +0000
commit36924c615ee35096b76e8f85ab2b02561e74cf3b (patch)
treeff7172de32908fe40ab2280c0b1e371e5796b30e /callback_plugins
parentdefd120da24353d62ba126d83598676cc3dfebbc (diff)
downloadansible-36924c615ee35096b76e8f85ab2b02561e74cf3b.tar.gz
ansible-36924c615ee35096b76e8f85ab2b02561e74cf3b.tar.xz
ansible-36924c615ee35096b76e8f85ab2b02561e74cf3b.zip
Try adding a callback plugin for fedmsg.
Diffstat (limited to 'callback_plugins')
-rw-r--r--callback_plugins/fedmsg.py78
1 files changed, 78 insertions, 0 deletions
diff --git a/callback_plugins/fedmsg.py b/callback_plugins/fedmsg.py
new file mode 100644
index 000000000..362a42eed
--- /dev/null
+++ b/callback_plugins/fedmsg.py
@@ -0,0 +1,78 @@
+# (C) 2012, Michael DeHaan, <michael.dehaan@gmail.com>
+# based on the log_plays example
+# skvidal@fedoraproject.org
+# rbean@redhat.com
+
+# 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/>.
+
+import os
+import pwd
+
+import fedmsg
+
+
+def getlogin():
+ try:
+ user = os.getlogin()
+ except OSError, e:
+ user = pwd.getpwuid(os.geteuid())[0]
+ return user
+
+
+class CallbackModule(object):
+ """ Publish playbook starts and stops to fedmsg. """
+
+ playbook = None
+
+ def __init__(self):
+ config = fedmsg.config.load_config()
+ config.update(dict(
+ name='relay_inbound',
+ cert_prefix='ansible',
+ active=True,
+ ))
+ fedmsg.init(**config)
+
+ def playbook_on_play_start(self, pattern):
+ # This gets called once for each play.. but we just issue a message once
+ # for the first one. One per "playbook"
+ play = getattr(self, 'play', None)
+ if play:
+ # figure out where the playbook FILE is
+ path = os.path.abspath(play.playbook.filename)
+
+ if not self.playbook:
+ fedmsg.publish(
+ modname="ansible", topic="playbook.start",
+ msg=dict(
+ playbook=path,
+ userid=getlogin(),
+ extra_vars=play.playbook.extra_vars
+ inventory=play.playbook.inventory.host_list,
+ playbook_checksum=play.playbook.check,
+ check=play.playbook.check,
+ ),
+ )
+ self.playbook = path
+
+ def playbook_on_stats(self, stats):
+ results = dict([(h, stats.summarize(h)) for h in stats.processed])
+ fedmsg.publish(
+ modname="ansible", topic="playbook.start",
+ msg=dict(
+ playbook=self.playbook,
+ userid=getlogin(),
+ results=results,
+ ),
+ )