2013-05-06 19:42:53 +00:00
|
|
|
|
"""
|
|
|
|
|
Add a subtle little advertising in your messages.
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
You only have to load the plugin:
|
|
|
|
|
|
|
|
|
|
.. code-block:: none
|
|
|
|
|
|
|
|
|
|
/load spam
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
|
-------------
|
|
|
|
|
[spam]
|
2013-05-06 19:48:18 +00:00
|
|
|
|
ad = I’m a happy poezio user. Get it at http://poezio.eu
|
2013-05-06 19:42:53 +00:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from plugin import BasePlugin
|
|
|
|
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
|
|
|
def init(self):
|
|
|
|
|
self.api.add_event_handler('muc_say', self.advert)
|
|
|
|
|
self.api.add_event_handler('conversation_say', self.advert)
|
|
|
|
|
self.api.add_event_handler('private_say', self.advert)
|
|
|
|
|
|
|
|
|
|
def advert(self, msg, tab):
|
2013-05-06 19:48:18 +00:00
|
|
|
|
msg['body'] = "%s\n\n%s" % (msg['body'], self.config.get("ad", "Sent from poezio"))
|