X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Fri.rb;h=abecb6ec5a5966b57f52e0dd99593ae4d8715053;hb=16336b4a240a4265d1f2df1e30d7b68d3a924287;hp=5bde894c71d6ec4eb98b6f389f495533d3a852f9;hpb=7999621ee6a8a0b0884eae38096f33e983c3a1ad;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/ri.rb b/data/rbot/plugins/ri.rb index 5bde894c..abecb6ec 100644 --- a/data/rbot/plugins/ri.rb +++ b/data/rbot/plugins/ri.rb @@ -3,9 +3,11 @@ # # :title: 'ri' -- ruby documentation plugin # -# Author: Michael Brailsford aka brailsmt +# Author:: Eric Hodel (aka drbrain) +# Author:: Michael Brailsford aka brailsmt # Author:: dmitry kim # Copyright:: (C) 2007, dmitry kim +# Copyright:: (C) Eric Hodel # Copyright:: (C) Michael Brailsford # License:: MIT # @@ -14,15 +16,27 @@ class RiPlugin < Plugin RI_COMMAND = %w{ri -f simple -T} - BotConfig.register BotConfigIntegerValue.new('ri.max_length', + Config.register Config::IntegerValue.new('ri.max_length', :default => 512, - :desc => "Maximum length of ri entry (in bytes) which is ok to be sent to channels") + :desc => "Maximum length of ri entry (in bytes) which is ok to be sent to channels or other users") def help(plugin, topic="") - "ri => returns ruby documentation for " + "ri => returns ruby documentation for ; ri [tell] [about] => sends the documentation entry about to using /msg" end def ri(m, params) + tgt = nil + if params[:who] + if m.private? + if params[:who] != m.sourcenick + m.reply '"ri tell " syntax is only allowed in public channels' + return + end + elsif !(tgt = m.channel.users[params[:who]]) + m.reply "sorry, i don't see user #{params[:who]} here on #{m.channel}" + return + end + end args = RI_COMMAND.dup if a = params[:something] if a == '-c' @@ -35,17 +49,26 @@ class RiPlugin < Plugin begin ret = Utils.safe_exec(*args) rescue - ret = "failed to execute ri" + return m.reply("failed to execute ri") end ret = ret.gsub(/\t/, " ").split(/\n/).join(" ").gsub(/\s\s+/, ' ') - - if ret.length > @bot.config['ri.max_length'] && !m.private? - ret = 'entry is too long to send to the channel, use /msg to ask me about it' + + if ret.length > @bot.config['ri.max_length'] + if !m.private? && tgt.to_s != m.sourcenick + return m.reply('entry is too long to send to the channel or to some other user, use /msg to ask me about it') + end + end + if tgt + @bot.say(tgt, ret) + m.okay + else + m.reply(ret) end - m.reply(ret) return end end plugin = RiPlugin.new plugin.map 'ri :something', :requirements => {:something => /^((-c)|(\w\S+))$/} +plugin.map 'ri [tell] :who [about] :something', + :requirements => {:something => /^((-c)|(\w\S+))$/}