4 # :title: RemoteCtl plugin
6 # Author:: jsn (dmitry kim) <dmitry dot kim at gmail dot org>
7 # Copyright:: (C) 2007 dmitry kim
8 # License:: in public domain
10 # Adds druby remote command execution to rbot. See 'bin/rbot-remote' for
13 class RemoteCtlPlugin < Plugin
16 def remote_command(m, params)
17 s = params[:string].to_s
18 u = @bot.server.user("remote:#{m.source.username}")
19 @bot.auth.login(u, m.source.username, m.source.password)
20 new_m = PrivMessage.new(@bot, @bot.server, u, @bot.myself, s)
21 @bot.plugins.delegate "listen", new_m
22 @bot.plugins.privmsg(new_m)
26 me = RemoteCtlPlugin.new
28 me.remote_map 'dispatch *string',
29 :action => 'remote_command',
30 :action_path => 'dispatch'
32 me.default_auth('*', false)