]> jfr.im git - erebus.git/blobdiff - bot.py
add checking for sql errors
[erebus.git] / bot.py
diff --git a/bot.py b/bot.py
index a57b0d439e4b69b67aa7d5223b0fe2d3668069cd..2c214c746a4b35729d14dab22b9c14bab13cb55a 100644 (file)
--- a/bot.py
+++ b/bot.py
@@ -9,12 +9,17 @@ import socket, sys
 
 #bots = {'erebus': bot.Bot(nick='Erebus', user='erebus', bind='', server='irc.quakenet.org', port=6667, realname='Erebus')}
 class Bot(object):
-       def __init__(self, parent, nick, user, bind, server, port, realname, chans):
+       def __init__(self, parent, nick, user, bind, server, port, realname):
                self.parent = parent
                self.nick = nick
                self.user = user
                self.realname = realname
-               self.chans = chans
+
+               curs = self.parent.db.cursor()
+               if curs.execute("SELECT chname FROM chans WHERE bot = %s AND active = 1", (self.nick,)):
+                       chansres = curs.fetchall()
+                       curs.close()
+                       self.chans = [self.parent.newchannel(self, row['chname']) for row in chansres]
 
                self.conn = BotConnection(self, bind, server, port)
        def connect(self):
@@ -22,26 +27,26 @@ class Bot(object):
                        self.parent.newfd(self, self.conn.socket.fileno())
 
        def getdata(self):
-               for line in self.conn.read():
-                       print self.nick, '[I]', line
+               return self.conn.read()
 
-                       if not self.conn.registered():
-                               pieces = line.split()
+       def parse(self, line):
+               pieces = line.split()
 
-                               if pieces[0] == "PING":
-                                       self.conn.send("PONG %s" % (pieces[1]))
+               if not self.conn.registered() and pieces[0] == "NOTICE":
+                       self.conn.register()
+                       return
 
-                               elif pieces[1] == "001":
-                                       self.conn.registered(True)
-                                       for c in self.chans:
-                                               self.join(c)
+               if self.parent.hasnumhook(pieces[1]):
+                       hooks = self.parent.getnumhook(pieces[1])
+                       for callback in hooks:
+                               callback(self, line)
 
-                       else:
-                               self.parse(line)
-       def parse(self, line):
-               pieces = line.split()
+               if pieces[1] == "001":
+                       self.conn.registered(True)
+                       for c in self.chans:
+                               self.join(c.name)
 
-               if pieces[1] == "PRIVMSG":
+               elif pieces[1] == "PRIVMSG":
                        nick = pieces[0].split('!')[0][1:]
                        user = self.parent.user(nick)
                        target = pieces[2]
@@ -55,56 +60,62 @@ class Bot(object):
                        qt = pieces[3]
                        nick = pieces[4]
                        auth = pieces[5]
-                       if auth != '0':
-                               self.parent.user(nick).authed(auth)
+                       self.parent.user(nick).authed(auth)
 
                elif pieces[1] == "JOIN":
                        nick = pieces[0].split('!')[0][1:]
-                       user = self.parent.user(nick)
                        chan = self.parent.channel(pieces[2])
 
                        if nick == self.nick:
                                self.conn.send("WHO %s %%ant,1" % (chan))
                        else:
-                               pass #TODO TODO TODO add to common chans!
+                               user = self.parent.user(nick, justjoined=True)
+                               chan.userjoin(user)
+                               user.join(chan)
                        
        def parsemsg(self, user, target, msg):
                chan = None
+               if len(msg) == 0:
+                       return
+
                triggerused = msg[0] == self.parent.trigger
                if triggerused: msg = msg[1:]
                pieces = msg.split()
 
                if target == self.nick:
-                       chanword = pieces[1]
-                       if chanword[0] == '#':
-                               chan = self.parent.channel(chanword)
-                               pieces.pop(1)
+                       if len(pieces) > 1:
+                               chanword = pieces[1]
+                               if chanword[0] == '#':
+                                       chan = self.parent.channel(chanword)
+                                       if chan is not None: #if chan is still none, there's no bot on "chanword", and chanword is used as a parameter.
+                                               pieces.pop(1)
 
                else: # message was sent to a channel
                        chan = self.parent.channel(target) #TODO check if bot's on channel --- in Erebus.channel() maybe?
-                       if msg[0] == '*': # message may be addressed to bot by "*BOTNICK" trigger?
-                               if pieces[0][1:].lower() == self.nick.lower():
-                                       pieces.pop(0) # command actually starts with next word
-                                       msg = ' '.join(pieces) # command actually starts with next word
-                       elif not triggerused:
-                               return # not to bot, don't process!
+                       try:
+                               if msg[0] == '*': # message may be addressed to bot by "*BOTNICK" trigger?
+                                       if pieces[0][1:].lower() == self.nick.lower():
+                                               pieces.pop(0) # command actually starts with next word
+                                               msg = ' '.join(pieces) # command actually starts with next word
+                               elif not triggerused:
+                                       return # not to bot, don't process!
+                       except IndexError:
+                               return # Fix if you feel like it /BiohZn
 
                cmd = pieces[0].lower()
 
-               print "%r %r %r %r" % (cmd, user, target, msg)
-
                if self.parent.hashook(cmd):
-                       callback = self.parent.gethook(cmd)
-                       if chan is None and callback.needchan:
-                               self.msg(user, "You need to specify a channel for that command.")
-                               return
-                       if user.glevel >= callback.reqglevel: #TODO TODO TODO check reqclevel
-                               callback(self, user, chan, *pieces[1:])
-                               return
-
-               self.msg(user, "No such command, or you don't have access.")
+                       for callback in self.parent.gethook(cmd):
+                               if chan is None and callback.needchan:
+                                       self.msg(user, "You need to specify a channel for that command.")
+                               elif user.glevel >= callback.reqglevel and (not callback.needchan or chan.levelof(user.auth) >= callback.reqclevel):
+                                       cbret = callback(self, user, chan, target, *pieces[1:])
+                                       if cbret is NotImplemented:
+                                               self.msg(user, "Command not implemented.")
 
        def msg(self, target, msg):
+               if target is None or msg is None: return
+
                if isinstance(target, self.parent.User): self.conn.send("NOTICE %s :%s" % (target.nick, msg))
                elif isinstance(target, self.parent.Channel): self.conn.send("PRIVMSG %s :%s" % (target.name, msg))
                elif isinstance(target, basestring):
@@ -140,9 +151,12 @@ class BotConnection(object):
                self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
                self.socket.bind((self.bind, 0))
                self.socket.connect((self.server, self.port))
-               self.send("NICK %s" % (self.parent.nick))
-               self.send("USER %s 0 * :%s" % (self.parent.user, self.parent.realname))
-               self.state = 1
+               return True
+       def register(self):
+               if self.state == 0:
+                       self.send("NICK %s" % (self.parent.nick))
+                       self.send("USER %s 0 * :%s" % (self.parent.user, self.parent.realname))
+                       self.state = 1
                return True
 
        def registered(self, done=False):
@@ -151,7 +165,7 @@ class BotConnection(object):
 
        #TODO: rewrite send() to queue
        def send(self, line):
-               print self.parent.nick, '[O]', line
+               print self.parent.nick, '[O]', str(line)
                self.write(line)
 
        def write(self, line):
@@ -163,6 +177,7 @@ class BotConnection(object):
 
                while '\r\n' in self.buffer:
                        pieces = self.buffer.split('\r\n', 1)
+                       print self.parent.nick, '[I]', pieces[0]
                        lines.append(pieces[0])
                        self.buffer = pieces[1]