X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?p=irc.git;a=blobdiff_plain;f=Servus-chiark.py;h=de6a88fa36069da51d134ad5cd1b28d29d0d7037;hp=8e308bab74bfb76bcc067604480b76272e274f9e;hb=c4a28171488f97455798c6aa8952bfc25893151d;hpb=9e280b60903fa9ce16809540ec6c8174adb762cd diff --git a/Servus-chiark.py b/Servus-chiark.py index 8e308ba..de6a88f 100644 --- a/Servus-chiark.py +++ b/Servus-chiark.py @@ -33,7 +33,7 @@ owner = "Emperor" # Everything else in this file is configuration-specific. -import os, time +import os, time, re # Most command implementations are stored in a separate module. import commands as c @@ -140,6 +140,14 @@ class game: maxlose=14*minlose #2 weeks losetime=time.time()+300000 +# initialise the urldb on startup +urldb={} +lastexp=time.time() +#expire urls if not asked about or seen for >71 hours +expirelen=71*60*60 +#do an expiry run every hour +expirevery=60*60 + # Command processing: whenever something is said that the bot can hear, # "command" is invoked and must decide what to do. This configuration # defines a couple of special cases (for karma) but is otherwise driven @@ -158,10 +166,11 @@ commands = {"karma": (c.karmaq,karmadb), "reload": reload, "quit": quit, "die": quit, + "define": c.defineq, "google": c.googleq, + "url": (c.urlq,urldb), "units": c.unitq, "help": c.helpq, - "define": c.defineq, # "game": (c.gameq,game), "say": c.sayq, "do": c.doq } @@ -184,6 +193,16 @@ def command(bot, cmd, nick, conn, public): command = cmd.split()[0] except IndexError: command="" + + t=time.time() + if t - lastexp > expirevery: + c.urlexpire(urldb,expirelen) + lastexp=t + + if public: + if c.urlre.search(cmd): + c.dourl(bot,conn,nick,cmd,urldb) + # karma: up if command.endswith("++"): karma(cmd,1)