]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - data/rbot/plugins/remotectl.rb
Forgot to add the actual unicode I/O filter to the repository (see [753])
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / remotectl.rb
1 #-- vim:sw=4:et
2 #++
3 #
4 # :title: RemoteCtl plugin
5 #
6 # Author:: jsn (dmitry kim) <dmitry dot kim at gmail dot org>
7 # Copyright:: (C) 2007 dmitry kim
8 # License:: in public domain
9 #
10 # Adds druby remote command execution to rbot. See 'bin/rbot-remote' for
11 # example usage.
12
13 class RemoteCtlPlugin < Plugin
14     include RemotePlugin
15
16     def remote_command(m, params)
17         s = params[:string].to_s
18         new_m = PrivMessage.new(@bot, @bot.server, m.source, @bot.nick, s)
19         @bot.plugins.delegate "listen", new_m
20         @bot.plugins.privmsg(new_m)
21     end
22 end
23
24 me = RemoteCtlPlugin.new
25
26 me.remote_map 'dispatch *string',
27     :action => 'remote_command',
28     :action_path => 'dispatch'
29
30 me.default_auth('*', false)