2011-11-07 18:59:12 +00:00
|
|
|
from plugin import BasePlugin
|
2011-11-08 01:21:20 +00:00
|
|
|
import xhtml
|
2011-11-07 18:59:12 +00:00
|
|
|
import random
|
|
|
|
|
|
|
|
possible_colors = list(range(256))
|
|
|
|
# remove the colors that are almost white or almost black
|
|
|
|
for col in [16, 232, 233, 234, 235, 236, 237, 15, 231, 255, 254, 253, 252, 251]:
|
|
|
|
possible_colors.remove(col)
|
|
|
|
|
|
|
|
def rand_color():
|
|
|
|
return '\x19%s}' % (random.choice(possible_colors),)
|
|
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
|
|
def init(self):
|
2013-03-08 21:53:35 +00:00
|
|
|
self.api.add_event_handler('muc_say', self.rainbowize)
|
|
|
|
self.api.add_event_handler('private_say', self.rainbowize)
|
|
|
|
self.api.add_event_handler('conversation_say', self.rainbowize)
|
2011-11-07 18:59:12 +00:00
|
|
|
|
2011-11-09 13:29:13 +00:00
|
|
|
def rainbowize(self, msg, tab):
|
2011-11-08 01:21:20 +00:00
|
|
|
msg['body'] = ''.join(['%s%s' % (rand_color(),char,) for char in xhtml.clean_text(msg['body'])])
|