summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/remotectl.rb
blob: 31d48fe397cbf22a0e059c71207a166d9da9c621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#-- vim:sw=4:et
#++
#
# :title: RemoteCtl plugin
#
# Author:: jsn (dmitry kim) <dmitry dot kim at gmail dot org>
# Copyright:: (C) 2007 dmitry kim
# License:: in public domain
#
# Adds druby remote command execution to rbot. See 'bin/rbot-remote' for
# example usage.

class RemoteCtlPlugin < Plugin
    include RemotePlugin

    def remote_command(m, params)
        s = params[:string].to_s
        u = @bot.server.user("remote:#{m.source.username}")
        @bot.auth.login(u, m.source.username, m.source.password)
        fake_message(s, :source => u)
    end
end

me = RemoteCtlPlugin.new

me.remote_map 'dispatch *string',
    :action => 'remote_command'

me.default_auth('*', false)