2011-11-06 22:46:35 +00:00
|
|
|
from plugin import BasePlugin
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
|
|
def init(self):
|
2011-11-09 13:02:17 +00:00
|
|
|
self.add_event_handler('muc_say', self.figletize)
|
|
|
|
self.add_event_handler('conversation_say', self.figletize)
|
|
|
|
self.add_event_handler('private_say', self.figletize)
|
2011-11-06 22:46:35 +00:00
|
|
|
|
2011-11-09 13:29:13 +00:00
|
|
|
def figletize(self, msg, tab):
|
2011-11-06 22:46:35 +00:00
|
|
|
process = subprocess.Popen(['figlet', msg['body']], stdout=subprocess.PIPE)
|
|
|
|
result = process.communicate()[0].decode('utf-8')
|
|
|
|
msg['body'] = result
|