1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
"""
This plugin makes you have a random nick when joining a MUC.
Installation
------------
You only have to load the plugin.::
/load random_nick
Usage
-----
To have a random nick, just join a room with “RANDOM” as your nick. It will
automatically be changed to something random, for example: ::
/join coucou@conference.example.com/RANDOM
"""
from plugin import BasePlugin
from tabs import MucTab
from random import choice
class Plugin(BasePlugin):
def init(self):
self.api.add_event_handler('joining_muc', self.change_nick_to_random)
self.api.add_event_handler('changing_nick', self.change_nick_to_random)
def change_nick_to_random(self, presence):
to = presence["to"]
if to.resource == 'RANDOM':
to.resource = gen_nick(3)
presence["to"] = to
s = ["i", "ou", "ou", "on", "a", "o", "u", "i"]
c = ["b", "c", "d", "f", "g", "h", "j", "k", "m", "l", "n", "p", "r", "s", "t", "v", "z"]
def gen_nick(size):
res = ''
for i in range(size):
res += '%s%s' % (choice(c), choice(s))
return res
|