31 lines
648 B
Python
31 lines
648 B
Python
|
"""
|
|||
|
Add a subtle little advertising in your messages.
|
|||
|
|
|||
|
Installation
|
|||
|
------------
|
|||
|
|
|||
|
You only have to load the plugin:
|
|||
|
|
|||
|
.. code-block:: none
|
|||
|
|
|||
|
/load spam
|
|||
|
|
|||
|
|
|||
|
Configuration
|
|||
|
-------------
|
|||
|
[spam]
|
|||
|
ad = I’m a happy Poezio user. Get it at http://poezio.eu
|
|||
|
|
|||
|
"""
|
|||
|
|
|||
|
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):
|
|||
|
msg['body'] = "%s\n\n%s" % (msg['body'], self.config.get("ad", "Sent from Poezio"))
|