chiark / gitweb /
move url stuff to commands.py
[irc.git] / Servus-chiark.py
index a0ba8a5189a0d2060f4b6d635293f91c6309e8c5..3fcdc01c7d9a143a881f028e697f0bc2090ab8c4 100644 (file)
@@ -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,9 @@ class game:
        maxlose=14*minlose #2 weeks
        losetime=time.time()+300000
 
+# initialise the urldb on startup
+c.urldb={}
+
 # 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 +161,11 @@ commands = {"karma": (c.karmaq,karmadb),
             "reload": reload,
             "quit": quit,
            "die": quit,
+           "define": c.defineq,
             "google": c.googleq,
+#          "url": urlq,
            "units": c.unitq,
            "help": c.helpq,
-#          "define": c.defineq,
 #          "game": (c.gameq,game),
             "say": c.sayq,
             "do": c.doq }
@@ -184,6 +188,11 @@ def command(bot, cmd, nick, conn, public):
            command = cmd.split()[0]
     except IndexError:
            command=""
+
+#    if public:
+#      if c.urlre.search(cmd):
+#        c.dourl(bot,conn,nick,cmd)
+         
     # karma: up
     if command.endswith("++"):
         karma(cmd,1)