summaryrefslogtreecommitdiff
path: root/data/rbot/plugins
diff options
context:
space:
mode:
authorDmitry Kim <dmitry point kim at gmail point com>2007-04-06 15:42:35 +0000
committerDmitry Kim <dmitry point kim at gmail point com>2007-04-06 15:42:35 +0000
commit9efe37db63efbe8c2e360fed93382e59bf1b417b (patch)
treecdb56f195c919bcdfb1f157b2c59c5b386fb16ef /data/rbot/plugins
parent7999621ee6a8a0b0884eae38096f33e983c3a1ad (diff)
+ (plugins/ri) "ri [tell] <whom> [about] <something>" syntax support
+ (plugins/ri) add Eric Hodel to the header credits section
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r--data/rbot/plugins/ri.rb32
1 files changed, 26 insertions, 6 deletions
diff --git a/data/rbot/plugins/ri.rb b/data/rbot/plugins/ri.rb
index 5bde894c..472c08e3 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 <brailsmt@yahoo.com> aka brailsmt
+# Author:: Eric Hodel <drbrain@segment7.net> (aka drbrain)
+# Author:: Michael Brailsford <brailsmt@yahoo.com> aka brailsmt
# Author:: dmitry kim <dmitry dot kim at gmail dot com>
# Copyright:: (C) 2007, dmitry kim
+# Copyright:: (C) Eric Hodel
# Copyright:: (C) Michael Brailsford
# License:: MIT
#
@@ -16,13 +18,25 @@ class RiPlugin < Plugin
BotConfig.register BotConfigIntegerValue.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 <something> => returns ruby documentation for <something>"
+ "ri <something> => returns ruby documentation for <something>; ri [tell] <whom> [about] <something> => sends the documentation entry about <something> to <whom> using /msg"
end
def ri(m, params)
+ tgt = nil
+ if params[:who]
+ if m.private?
+ if params[:who] != m.sourcenick
+ m.reply '"ri tell <who>" 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,23 @@ 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'
+ 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
+ if tgt
+ @bot.say(tgt, ret)
+ 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+))$/}