poezio/plugins/spam.py

23 lines
577 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
Add a subtle little advertising in your messages.
Configuration
-------------
.. code-block:: ini
[spam]
ad = Im 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"))