summaryrefslogtreecommitdiffstats
path: root/modules/__init__.py
blob: 4dc1972045b15401d10008e48d67185524f7e7af (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import traceback

class ModuleBase:
    def __init__(self, manager):
        self.manager = manager
    
    def commands(self):
        return []
    
    def helptexts(self):
        return []
    
    def groupchat(self, room, nick, text, handler):
        pass
    
    def join(self, room, nick, show, status, handler):
        pass
    
    def leave(self, room, nick, show, status, handler):
        pass
    
    def topic(self, room, nick, text, handler):
        pass

class ModuleManager:
    def __init__(self, config):
        self.config = config
        self._modules = {}
        
        for mod in config['modules']:
            self.get(mod)
    
    def get(self, name):
        if not name in self._modules:
            mod = __import__('modules.' + name, globals(), locals(), ['Module'])
            self._modules[name] = mod.Module(self)
        
        return self._modules[name]
    
    def commands(self):
        return reduce(lambda l, mod: l + mod.commands(), self._modules.itervalues(), [])
    
    def helptexts(self):
        return reduce(lambda l, mod: l + mod.helptexts(), self._modules.itervalues(), [])
    
    def groupchat(self, room, nick, text, handler):
        for mod in self._modules.itervalues():
            try:
                mod.groupchat(room, nick, text, handler)
            except:
                handler.reply(traceback.format_exc(5))
    
    def join(self, room, nick, show, status, handler):
        for mod in self._modules.itervalues():
            try:
                mod.join(room, nick, show, status, handler)
            except:
                handler.reply(traceback.format_exc(5))
    
    def leave(self, room, nick, show, status, handler):
        for mod in self._modules.itervalues():
            try:
                mod.leave(room, nick, show, status, handler)
            except:
                handler.reply(traceback.format_exc(5))
    
    def topic(self, room, nick, text, handler):
        for mod in self._modules.itervalues():
            try:
                mod.topic(room, nick, text, handler)
            except:
                handler.reply(traceback.format_exc(5))