2013-05-06 19:42:53 +00:00
|
|
|
|
"""
|
|
|
|
|
Add a subtle little advertising in your messages.
|
|
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
|
-------------
|
2014-03-27 22:45:47 +00:00
|
|
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
|
|
[spam]
|
|
|
|
|
ad = I’m a happy poezio user. Get it at http://poezio.eu
|
2013-05-06 19:42:53 +00:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
2016-06-27 23:10:52 +00:00
|
|
|
|
from poezio.plugin import BasePlugin
|
2013-05-06 19:42:53 +00:00
|
|
|
|
|
2018-08-15 11:13:17 +00:00
|
|
|
|
|
2013-05-06 19:42:53 +00:00
|
|
|
|
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):
|
2018-08-15 11:13:17 +00:00
|
|
|
|
msg['body'] = "%s\n\n%s" % (msg['body'],
|
|
|
|
|
self.config.get("ad", "Sent from poezio"))
|