X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/24b74bb30ce43c47dae6a7b93452012b07c505d6..2bb487be914d4b58e9b9a84d5d9a9a50e1f52159:/erebus.py?ds=sidebyside diff --git a/erebus.py b/erebus.py index e6c0459..7588838 100644 --- a/erebus.py +++ b/erebus.py @@ -28,6 +28,8 @@ class Erebus(object): 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) @@ -55,12 +57,14 @@ class Erebus(object): return self.glevel def join(self, chan): - self.chans.append(chan) + if chan not in self.chans: self.chans.append(chan) def part(self, chan): - self.chans.remove(chan) - def quit(self): - for chan in self.chans: + try: self.chans.remove(chan) + except: pass + return len(self.chans) == 0 + def quit(self): + pass def nickchange(self, newnick): self.nick = newnick @@ -87,6 +91,8 @@ class Erebus(object): def msg(self, *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) @@ -159,18 +165,20 @@ 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 if justjoined: - self.randbot().conn.send("WHO %s n%%ant,2" % (nick)) + self.randbot().conn.send("WHO %s n%%ant,1" % (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()] @@ -239,11 +247,11 @@ class Erebus(object): class MyCursor(MySQLdb.cursors.DictCursor): def execute(self, *args, **kwargs): - print "%05.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])) + 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 "%05.3f [SQL] [!] MySQL error! %r" % (time.time() % 100000, e) + print "%09.3f [SQL] [!] MySQL error! %r" % (time.time() % 100000, e) dbsetup() return False return True @@ -286,7 +294,7 @@ def loop(): if __name__ == '__main__': try: os.rename('logfile', 'oldlogs/%s' % (time.time())) except: pass - sys.stdout = open('logfile', 'w') + sys.stdout = open('logfile', 'w', 1) sys.stderr = sys.stdout setup() while True: loop()