X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?p=irc.git;a=blobdiff_plain;f=commands.py;h=f869cd38e059a51022fc7b4f874f1737fe39fb66;hp=fb35d4f075bd19b2168b1ff511f610ffb19f488f;hb=81729ffc4c81f257839f950779f5d2c2c133d3b6;hpb=c40c2b6261e7b251387bf71dde7774eee13fd47b diff --git a/commands.py b/commands.py index fb35d4f..f869cd3 100644 --- a/commands.py +++ b/commands.py @@ -36,7 +36,7 @@ def karmadelq(bot, cmd, nick, conn, public, karma): # help - provides the URL of the help file def helpq(bot, cmd, nick, conn, public): bot.automsg(public,nick, - "For help see http://www.pick.ucam.org/~matthew/irc/servus.html") + "For help see http://www.chiark.greenend.org.uk/~matthewv/irc/servus.html") # query bot status @@ -322,7 +322,7 @@ class UrlLog: def firstmen(self): return nicetime(time.time()-self.first) def urltype(self): - z=max(len(urlcomplaints), self.count-1) + z=min(len(urlcomplaints)-1, self.count-1) return urlcomplaints[z] urlre = re.compile("(https?://[^ ]+)( |$)") @@ -334,22 +334,26 @@ def urlq(bot, cmd, nick, conn, public,urldb): bot.automsg(False,nick,"Please use 'url' only with http URLs") return - url="".join(cmd.split(" ")[1:]) - - url=canonical_url(url) + urlstring=urlre.search(cmd).group(1) + url=canonical_url(urlstring) if (url in urldb): T = urldb[url] complaint="That's %s URL that was first mentioned %s by %s" % \ (T.urltype(),T.firstmen(),T.nick) if (public): complaint=complaint+". Furthermore it defeats the point of this command to use it other than via /msg." + T.count+=1 bot.automsg(False,nick,complaint) T.lastasked=time.time() else: if (public): bot.automsg(False,nick,"That URL was unique. There is little point in using !url out loud; please use it via /msg") else: - conn.privmsg(bot.channel,"%s would like to draw your attention to %s"%(nick,url)) + if urlstring != cmd.split()[1]: #first argument to URL was not the url + conn.privmsg(bot.channel,"%s remarks: %s" % (nick," ".join(cmd.split()[1:]))) + else: + conn.privmsg(bot.channel,"(via %s) %s"%(nick," ".join(cmd.split()[1:]))) + bot.automsg(False,nick,"That URL was unique; I have posted it into IRC") urldb[url]=UrlLog(url,nick) ### Deal with URLs spotted in channel @@ -363,6 +367,7 @@ def dourl(bot,conn,nick,command,urldb): (T.urltype(),T.firstmen(),T.nick) conn.action(bot.channel, message) T.lastseen=time.time() + T.count+=1 else: urldb[urlstring]=UrlLog(urlstring,nick)