]> jfr.im git - erebus.git/blobdiff - modules/trivia.py
misc
[erebus.git] / modules / trivia.py
index a72500dcb709dba13ec38058f0f1a659ab5d33b9..3e2b093f481aaeb15f7a26eae1bd588c3ba46b4f 100644 (file)
@@ -106,6 +106,9 @@ class TriviaState(object):
                        if isinstance(self.nextquestiontimer, threading._Timer):
                                self.nextquestiontimer.cancel()
                                self.nextquestiontimer = None
+               self.savedb()
+
+       def savedb(self):
                if json is not None and json.dump is not None:
                        json.dump(self.db, open(self.questionfile, "w"))#, indent=4, separators=(',', ': '))
 
@@ -457,10 +460,6 @@ def cmd_stop(bot, user, chan, realtarget, *args):
        else:
                bot.msg(user, "Game isn't running.")
 
-@lib.hook('exception')
-def cmd_exception(*args, **kwargs):
-       raise Exception()
-
 def stop():
        state.curq = None
        state.nextq = None
@@ -484,6 +483,7 @@ def badq(bot, user, chan, realtarget, *args):
 
        reason = ' '.join(args)
        state.db['badqs'].append([lastqid, curqid, reason])
+       state.savedb()
        bot.msg(user, "Reported bad question.")
 
 @lib.hook(glevel=lib.STAFF, needchan=False)
@@ -507,14 +507,19 @@ def badqs(bot, user, chan, realtarget, *args):
 @lib.hook(glevel=lib.STAFF, needchan=False)
 def clearbadqs(bot, user, chan, realtarget, *args):
        state.db['badqs'] = []
+       state.savedb()
        bot.msg(user, "Cleared reports.")
 
 @lib.hook(glevel=lib.STAFF, needchan=False)
 @lib.argsEQ(1)
 def delbadq(bot, user, chan, realtarget, *args):
-       qid = int(args[0])
-       del state.db['badqs'][qid]
-       bot.msg(user, "Removed report #%d" % (qid))
+       try:
+               qid = int(args[0])
+               del state.db['badqs'][qid]
+               state.savedb()
+               bot.msg(user, "Removed report #%d" % (qid))
+       except:
+               bot.msg(user, "Failed!")
 
 @lib.hook(needchan=False)
 def rank(bot, user, chan, realtarget, *args):
@@ -596,11 +601,26 @@ def questionpause(bot, user, chan, realtarget, *args):
 
 @lib.hook(glevel=1, needchan=False)
 def findq(bot, user, chan, realtarget, *args):
+       if len(args) == 0:
+               bot.msg(user, "You need to specify the question.")
+               return
+
+       searchkey = ' '.join(args).lower()
+       matches = [str(i) for i in range(len(state.db['questions'])) if state.db['questions'][i][0].lower() == searchkey]
+       if len(matches) > 1:
+               bot.msg(user, "Multiple matches: %s" % (', '.join(matches)))
+       elif len(matches) == 1:
+               bot.msg(user, "One match: %s" % (matches[0]))
+       else:
+               bot.msg(user, "No match.")
+
+@lib.hook(glevel=1, needchan=False)
+def findqre(bot, user, chan, realtarget, *args):
        if len(args) == 0:
                bot.msg(user, "You need to specify a search string.")
                return
 
-       searcher = re.compile(' '.join(args))
+       searcher = re.compile(' '.join(args), re.IGNORECASE)
        matches = [str(i) for i in range(len(state.db['questions'])) if searcher.search(state.db['questions'][i][0]) is not None]
        if len(matches) > 25:
                bot.msg(user, "Too many matches! (>25)")
@@ -611,14 +631,29 @@ def findq(bot, user, chan, realtarget, *args):
        else:
                bot.msg(user, "No match.")
 
+@lib.hook(glevel=lib.STAFF, needchan=False)
+def showq(bot, user, chan, realtarget, *args):
+       try:
+               qid = int(args[0])
+       except:
+               bot.msg(user, "Specify a numeric question ID.")
+               return
+       try:
+               q = state.db['questions'][qid]
+       except:
+               bot.msg(user, "ID not valid.")
+               return
+       bot.msg(user, "%s: %s*%s" % (qid, q[0], q[1]))
+
 @lib.hook(('delq', 'deleteq'), glevel=lib.STAFF, needchan=False)
 def delq(bot, user, chan, realtarget, *args):
        try:
                backup = state.db['questions'][int(args[0])]
                del state.db['questions'][int(args[0])]
+               state.savedb()
                bot.msg(user, "Deleted %s*%s" % (backup[0], backup[1]))
        except:
-               bot.msg(user, "Couldn't delete that question.")
+               bot.msg(user, "Couldn't delete that question. %r" % (e))
 
 @lib.hook(glevel=lib.STAFF, needchan=False)
 def addq(bot, user, chan, realtarget, *args):
@@ -630,6 +665,7 @@ def addq(bot, user, chan, realtarget, *args):
        question = linepieces[0].strip()
        answer = linepieces[1].strip()
        state.db['questions'].append([question, answer])
+       state.savedb()
        bot.msg(user, "Done. Question is #%s" % (len(state.db['questions'])-1))
 
 
@@ -641,23 +677,26 @@ def triviahelp(bot, user, chan, realtarget, *args):
        bot.slowmsg(user,             "RANK          [<user>]")
        bot.slowmsg(user,             "BADQ          <reason> (include info to identify question)")
        if user.glevel >= 1:
-               bot.slowmsg(user,         "SKIP                            (>=KNOWN)")
-               bot.slowmsg(user,         "STOP                            (>=KNOWN)")
-               bot.slowmsg(user,         "FINDQ         <question>        (>=KNOWN)")
+               bot.slowmsg(user,         "SKIP                            (KNOWN)")
+               bot.slowmsg(user,         "STOP                            (KNOWN)")
+               bot.slowmsg(user,         "FINDQ         <full question>   (KNOWN)")
+               bot.slowmsg(user,         "FINDQRE       <regex>           (KNOWN)")
+               bot.slowmsg(user,         "SETNEXTID     <qid>             (KNOWN)")
                if user.glevel >= lib.STAFF:
-                       bot.slowmsg(user,     "GIVE          <user> [<points>] (>=STAFF)")
-                       bot.slowmsg(user,     "SETNEXT       <q>*<a>           (>=STAFF)")
-                       bot.slowmsg(user,     "ADDQ          <q>*<a>           (>=STAFF)")
-                       bot.slowmsg(user,     "DELETEQ       <q>*<a>           (>=STAFF)  [aka DELQ]")
-                       bot.slowmsg(user,     "BADQS                           (>=STAFF)")
-                       bot.slowmsg(user,     "CLEARBADQS                      (>=STAFF)")
-                       bot.slowmsg(user,     "DELBADQ       <reportid>        (>=STAFF)")
+                       bot.slowmsg(user,     "GIVE          <user> [<points>] (STAFF)")
+                       bot.slowmsg(user,     "SETNEXT       <q>*<a>           (STAFF)")
+                       bot.slowmsg(user,     "ADDQ          <q>*<a>           (STAFF)")
+                       bot.slowmsg(user,     "DELQ          <q>*<a>           (STAFF)  [aka DELETEQ]")
+                       bot.slowmsg(user,     "SHOWQ         <qid>             (STAFF)")
+                       bot.slowmsg(user,     "BADQS                           (STAFF)")
+                       bot.slowmsg(user,     "CLEARBADQS                      (STAFF)")
+                       bot.slowmsg(user,     "DELBADQ       <reportid>        (STAFF)")
                        if user.glevel >= lib.ADMIN:
-                               bot.slowmsg(user, "SETTARGET     <points>          (>=ADMIN)")
-                               bot.slowmsg(user, "MAXMISSED     <questions>       (>=ADMIN)")
-                               bot.slowmsg(user, "HINTTIMER     <float seconds>   (>=ADMIN)")
-                               bot.slowmsg(user, "HINTNUM       <hints>           (>=ADMIN)")
-                               bot.slowmsg(user, "QUESTIONPAUSE <float seconds>   (>=ADMIN)")
+                               bot.slowmsg(user, "SETTARGET     <points>          (ADMIN)")
+                               bot.slowmsg(user, "MAXMISSED     <questions>       (ADMIN)")
+                               bot.slowmsg(user, "HINTTIMER     <float seconds>   (ADMIN)")
+                               bot.slowmsg(user, "HINTNUM       <hints>           (ADMIN)")
+                               bot.slowmsg(user, "QUESTIONPAUSE <float seconds>   (ADMIN)")
 
 @lib.hooknum(417)
 def num_417(bot, textline):