summaryrefslogtreecommitdiffstats
path: root/curunir.py
blob: 3c0d933d702e928afcb68976187700966e9e11af (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
from connection.xmpp import XMPPConnection

import signal, sys
from config import config

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]
        

run = True

def exithandler(signum, frame):
    global run
    run = False

print 'Starting Curunir 0.1'

signal.signal(signal.SIGINT, exithandler)
signal.signal(signal.SIGTERM, exithandler)
signal.signal(signal.SIGQUIT, exithandler)

print 'Loading modules...'

modman = ModuleManager(config)

connection = XMPPConnection(config, modman)
print 'Connecting...'
connection.connect()

while run:
    act = connection.stream.loop_iter(1)
    if not act: 
        connection.idle() 

connection.disconnect()