]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - data/rbot/plugins/alias.rb
* Prevent the alias from including arguments not substituded in command, as a check for
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / alias.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: Alias plugin for rbot
5 #
6 # Author:: Yaohan Chen <yaohan.chen@gmail.com>
7 # Copyright:: (C) 2007 Yaohan Chen
8 # License:: GPLv2
9 #
10 # This plugin allows defining aliases for rbot commands. Aliases are like normal rbot
11 # commands and can take parameters. When called, they will be substituted into an
12 # exisitng rbot command and that is run.
13 #
14 # == Example Session
15 #   < alias googlerbot *terms => google site:linuxbrit.co.uk/rbot/ <terms>
16 #   > okay
17 #   < googlerbot plugins
18 #   > Results for site:linuxbrit.co.uk/rbot/ plugins: ....
19 #
20 # == Security
21 # By default, only the owner can define and remove aliases, while everyone else can
22 # use and view them. When a command is executed with an alias, it's mapped normally with
23 # the alias user appearing to attempt to execute the command. Therefore it should be not
24 # possible to use aliases to circumvent permission sets. Care should be taken when
25 # defining aliases, due to these concerns:
26 # * Defined aliases can potentially override other plugins' maps, if this plugin is
27 #   loaded first
28 # * Aliases can cause infinite recursion of aliases and/or commands. The plugin attempts
29 #   to detect and stop this, but a few recursive calls can still cause spamming
30
31 require 'yaml'
32 require 'set'
33
34 class AliasPlugin < Plugin
35   # an exception raised when loading or getting input of invalid alias definitions
36   class AliasDefinitionError < ArgumentError
37   end
38
39   MAX_RECURSION_DEPTH = 10
40
41   def initialize
42     super
43     @data_path = "#{@bot.botclass}/alias/"
44     @data_file = "#{@data_path}/aliases.yaml"
45     # hash of alias => command entries
46     @aliases = if File.exist?(@data_file)
47                  YAML.load_file(@data_file)
48                else
49                  Hash.new
50                end
51     @aliases.each_pair do |a, c|
52       begin
53         add_alias(a, c)
54       rescue AliasDefinitionError
55         warning _("Invalid alias entry %{alias} : %{command} in %{filename}: %{reason}") %
56                 {:alias => a, :command => c, :filename => @data_file, :reason => $1}
57       end
58     end 
59   end 
60
61   def save 
62     Dir.mkdir(@data_path) unless File.exist?(@data_path)
63     File.open(@data_file, 'w') {|f| f.write @aliases.to_yaml}
64   end
65
66   def cmd_add(m, params)
67     begin
68       add_alias(params[:text].to_s, params[:command].to_s)
69       m.okay
70     rescue AliasDefinitionError
71       m.reply _('The definition you provided is invalid: %{reason}') % {:reason => $!}
72     end
73   end
74
75   def cmd_remove(m, params)
76     text = params[:text].to_s
77     if @aliases.has_key?(text)
78       @aliases.delete(text)
79       # TODO when rbot supports it, remove the mapping corresponding to the alias
80       m.okay
81     else
82       m.reply _('No such alias is defined')
83     end
84   end
85
86   def cmd_list(m, params)
87     if @aliases.empty?
88       m.reply _('No aliases defined')
89     else
90       m.reply @aliases.map {|a, c| "#{a} => #{c}"}.join(' | ')
91     end
92   end
93
94   def cmd_whatis(m, params)
95     text = params[:text].to_s
96     if @aliases.has_key?(text)
97       m.reply _('Alias of %{command}') % {:command => @aliases[text]}
98     else
99       m.reply _('No such alias is defined')
100     end
101   end
102
103   def add_alias(text, command)
104     # each alias is implemented by adding a message map, whose handler creates a message
105     # containing the aliased command
106
107     command.grep(/<(\w+)>/) {$1}.to_set ==
108       text.grep(/(?:^|\s)[:*](\w+)(?:\s|$)/) {$1}.to_set or
109       raise AliasDefinitionError.new(_('The arguments in alias must match the substitutions in command, and vice versa'))
110     
111     @aliases[text] = command
112     map text, :action => :"alias_handle<#{text}>", :auth_path => 'run'
113   end
114
115   def respond_to?(name, include_private=false)
116     name.to_s =~ /\Aalias_handle<.+>\Z/ || super
117   end
118
119   def method_missing(name, *args, &block)
120     if name.to_s =~ /\Aalias_handle<(.+)>\Z/
121       m, params = args
122       # messages created by alias handler will have a depth method, which returns the 
123       # depth of "recursion" caused by the message
124       current_depth = if m.respond_to?(:depth) then m.depth else 0 end
125       if current_depth > MAX_RECURSION_DEPTH
126         m.reply _('The alias seems to have caused infinite recursion. Please examine your alias definitions')
127         return
128       end
129
130       command = @aliases[$1]
131       if command
132         # create a fake message containing the intended command
133         new_msg = PrivMessage.new(@bot, m.server, m.server.user(m.source), m.target,
134                                     command.gsub(/<(\w+)>/) {|arg| params[:"#{$1}"].to_s})
135         # tag incremented depth on the message
136         class << new_msg
137           self
138         end.send(:define_method, :depth) {current_depth + 1}
139
140         @bot.plugins.privmsg(new_msg)
141       else
142         m.reply _("Error handling the alias, the command is not defined")
143       end
144     else
145       super(name, *args, &block)
146     end
147   end
148
149   def help(plugin, topic='')
150     case topic
151     when ''
152       _('Create and use aliases for commands. Topics: create, commands')
153     when 'create'
154       _('"alias <text> => <command>" => add text as an alias of command. Text can contain placeholders marked with : or * for :words and *multiword arguments. The command can contain placeholders enclosed with < > which will be substituded with argument values. For example: alias googlerbot *terms => google site:linuxbrit.co.uk/rbot/ <terms>')
155     when 'commands'
156       _('alias list => list defined aliases | alias whatis <alias> => show definition of the alias | alias remove <alias> => remove defined alias | see the "create" topic about adding aliases')
157     end
158   end
159 end
160
161 plugin = AliasPlugin.new
162 plugin.default_auth('edit', false)
163 plugin.default_auth('run', true)
164 plugin.default_auth('list', true)
165
166 plugin.map 'alias list',
167            :action => :cmd_list,
168            :auth_path => 'view'
169 plugin.map 'alias whatis *text',
170            :action => :cmd_whatis,
171            :auth_path => 'view'
172 plugin.map 'alias remove *text',
173            :action => :cmd_remove,
174            :auth_path => 'edit'
175 plugin.map 'alias rm *text',
176            :action => :cmd_remove,
177            :auth_path => 'edit'
178 plugin.map 'alias *text => *command',
179            :action => :cmd_add,
180            :auth_path => 'edit'
181
182
183