X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/fd52fb165f70d0b10f123ac9468fbf66d45f92f8..3f04e4668f01e9eda6e56d5357cb8afb87c4d871:/erebus.py diff --git a/erebus.py b/erebus.py index 2783bd5..7386df2 100644 --- a/erebus.py +++ b/erebus.py @@ -3,8 +3,6 @@ # Erebus IRC bot - Author: John Runyon # main startup code -#TODO: tons - import os, sys, select, MySQLdb, MySQLdb.cursors, time, random import bot, config, ctlmod @@ -28,6 +26,13 @@ class Erebus(object): self.chans = [] + def msg(self, *args, **kwargs): + main.randbot().msg(self, *args, **kwargs) + def slowmsg(self, *args, **kwargs): + main.randbot().slowmsg(self, *args, **kwargs) + def fastmsg(self, *args, **kwargs): + main.randbot().fastmsg(self, *args, **kwargs) + def isauthed(self): return self.auth is not None @@ -54,10 +59,14 @@ class Erebus(object): def join(self, chan): self.chans.append(chan) def part(self, chan): - self.chans.remove(chan) + try: + self.chans.remove(chan) + except: pass def quit(self): for chan in self.chans: self.chans.remove(chan) + def nickchange(self, newnick): + self.nick = newnick def __str__(self): return self.nick def __repr__(self): return "" % (self.nick,self.glevel) @@ -81,7 +90,11 @@ class Erebus(object): def msg(self, *args, **kwargs): - self.bot.msg(self.name, *args, **kwargs) + self.bot.msg(self, *args, **kwargs) + def slowmsg(self, *args, **kwargs): + self.bot.slowmsg(self, *args, **kwargs) + def fastmsg(self, *args, **kwargs): + self.bot.fastmsg(self, *args, **kwargs) def levelof(self, auth): if auth is None: @@ -152,11 +165,11 @@ class Erebus(object): def randbot(self): #get Bot() randomly return self.bots[random.choice(self.bots.keys())] - def user(self, _nick, justjoined=False): + def user(self, _nick, justjoined=False, create=True): nick = _nick.lower() if nick in self.users: return self.users[nick] - else: + elif create: user = self.User(_nick) self.users[nick] = user @@ -164,6 +177,8 @@ class Erebus(object): self.randbot().conn.send("WHO %s n%%ant,2" % (nick)) return user + else: + return None def channel(self, name): #get Channel() by name if name.lower() in self.chans: return self.chans[name.lower()] @@ -232,11 +247,11 @@ class Erebus(object): class MyCursor(MySQLdb.cursors.DictCursor): def execute(self, *args, **kwargs): - print "[SQL] [#] MyCursor.execute(self, %s, %s)" % (', '.join([repr(i) for i in args]), ', '.join([str(key)+"="+repr(kwargs[key]) for key in kwargs])) + print "%09.3f [SQL] [#] MyCursor.execute(self, %s, %s)" % (time.time() % 100000, ', '.join([repr(i) for i in args]), ', '.join([str(key)+"="+repr(kwargs[key]) for key in kwargs])) try: super(self.__class__, self).execute(*args, **kwargs) except MySQLdb.MySQLError as e: - print "[SQL] [!] MySQL error! %r" % (e) + print "%09.3f [SQL] [!] MySQL error! %r" % (time.time() % 100000, e) dbsetup() return False return True @@ -250,11 +265,15 @@ def setup(): global cfg, main cfg = config.Config('bot.config') + + pidfile = open(cfg.pidfile, 'w') + pidfile.write(str(os.getpid())) + pidfile.close() + main = Erebus(cfg) autoloads = [mod for mod, yes in cfg.items('autoloads') if int(yes) == 1] for mod in autoloads: - print "Loading %s" % (mod) ctlmod.load(main, mod) dbsetup() @@ -273,5 +292,9 @@ def loop(): main.fd(fileno).parse(line) if __name__ == '__main__': + try: os.rename('logfile', 'oldlogs/%s' % (time.time())) + except: pass + sys.stdout = open('logfile', 'w', 1) + sys.stderr = sys.stdout setup() while True: loop()