summaryrefslogtreecommitdiff
path: root/plugins/revstr.py
blob: 0fa93bb1cb7d2ea3cf2257130f1eeafe907c2331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Reverse everything you say (``Je proteste énergiquement`` will become
``tnemeuqigrené etsetorp eJ``)
"""
from poezio.plugin import BasePlugin
from poezio import xhtml

class Plugin(BasePlugin):
    def init(self):
        self.api.add_event_handler('muc_say', self.revstr)
        self.api.add_event_handler('conversation_say', self.revstr)
        self.api.add_event_handler('private_say', self.revstr)

    def revstr(self, msg, tab):
        msg['body'] = xhtml.clean_text(msg['body'])[::-1]