figlet plugin: make it more friendly to external usage
[rbot] / 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         u = @bot.server.user("remote:#{m.source.username}")
19         @bot.auth.login(u, m.source.username, m.source.password)
20         fake_message(s, :source => u)
21     end
22 end
23
24 me = RemoteCtlPlugin.new
25
26 me.remote_map 'dispatch *string',
27     :action => 'remote_command'
28
29 me.default_auth('*', false)