]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/messagemapper.rb
2214780b3c875c8c9ef6595782764d3c7d57db1c
[user/henk/code/ruby/rbot.git] / lib / rbot / messagemapper.rb
1 module Irc
2
3   # +MessageMapper+ is a class designed to reduce the amount of regexps and
4   # string parsing plugins and bot modules need to do, in order to process
5   # and respond to messages.
6   #
7   # You add templates to the MessageMapper which are examined by the handle
8   # method when handling a message. The templates tell the mapper which
9   # method in its parent class (your class) to invoke for that message. The
10   # string is split, optionally defaulted and validated before being passed
11   # to the matched method.
12   #
13   # A template such as "foo :option :otheroption" will match the string "foo
14   # bar baz" and, by default, result in method +foo+ being called, if
15   # present, in the parent class. It will receive two parameters, the
16   # Message (derived from BasicUserMessage) and a Hash containing
17   #   {:option => "bar", :otheroption => "baz"}
18   # See the #map method for more details.
19   class MessageMapper
20     # used to set the method name used as a fallback for unmatched messages.
21     # The default fallback is a method called "usage".
22     attr_writer :fallback
23
24     # parent::   parent class which will receive mapped messages
25     #
26     # create a new MessageMapper with parent class +parent+. This class will
27     # receive messages from the mapper via the handle() method.
28     def initialize(parent)
29       @parent = parent
30       @templates = Array.new
31       @fallback = 'usage'
32     end
33
34     # args:: hash format containing arguments for this template
35     #
36     # map a template string to an action. example:
37     #   map 'myplugin :parameter1 :parameter2'
38     # (other examples follow). By default, maps a matched string to an
39     # action with the name of the first word in the template. The action is
40     # a method which takes a message and a parameter hash for arguments.
41     #
42     # The :action => 'method_name' option can be used to override this
43     # default behaviour. Example:
44     #   map 'myplugin :parameter1 :parameter2', :action => 'mymethod'
45     #
46     # By default whether a handler is fired depends on an auth check. The
47     # first component of the string is used for the auth check, unless
48     # overridden via the :auth => 'auth_name' option.
49     #
50     # Static parameters (not prefixed with ':' or '*') must match the
51     # respective component of the message exactly. Example:
52     #   map 'myplugin :foo is :bar'
53     # will only match messages of the form "myplugin something is
54     # somethingelse"
55     #
56     # Dynamic parameters can be specified by a colon ':' to match a single
57     # component (whitespace seperated), or a * to suck up all following
58     # parameters into an array. Example:
59     #   map 'myplugin :parameter1 *rest'
60     #
61     # You can provide defaults for dynamic components using the :defaults
62     # parameter. If a component has a default, then it is optional. e.g:
63     #   map 'myplugin :foo :bar', :defaults => {:bar => 'qux'}
64     # would match 'myplugin param param2' and also 'myplugin param'. In the
65     # latter case, :bar would be provided from the default.
66     #
67     # Components can be validated before being allowed to match, for
68     # example if you need a component to be a number:
69     #   map 'myplugin :param', :requirements => {:param => /^\d+$/}
70     # will only match strings of the form 'myplugin 1234' or some other
71     # number.
72     #
73     # Templates can be set not to match public or private messages using the
74     # :public or :private boolean options.
75     #
76     # Further examples:
77     #
78     #   # match 'karmastats' and call my stats() method
79     #   map 'karmastats', :action => 'stats'
80     #   # match 'karma' with an optional 'key' and call my karma() method
81     #   map 'karma :key', :defaults => {:key => false}
82     #   # match 'karma for something' and call my karma() method
83     #   map 'karma for :key'
84     #
85     #   # two matches, one for public messages in a channel, one for
86     #   # private messages which therefore require a channel argument
87     #   map 'urls search :channel :limit :string', :action => 'search',
88     #             :defaults => {:limit => 4},
89     #             :requirements => {:limit => /^\d+$/},
90     #             :public => false
91     #   plugin.map 'urls search :limit :string', :action => 'search',
92     #             :defaults => {:limit => 4},
93     #             :requirements => {:limit => /^\d+$/},
94     #             :private => false
95     #
96     def map(botmodule, *args)
97       @templates << Template.new(botmodule, *args)
98     end
99
100     def each
101       @templates.each {|tmpl| yield tmpl}
102     end
103
104     def last
105       @templates.last
106     end
107
108     # m::  derived from BasicUserMessage
109     #
110     # examine the message +m+, comparing it with each map()'d template to
111     # find and process a match. Templates are examined in the order they
112     # were map()'d - first match wins.
113     #
114     # returns +true+ if a match is found including fallbacks, +false+
115     # otherwise.
116     def handle(m)
117       return false if @templates.empty?
118       failures = []
119       @templates.each do |tmpl|
120         options, failure = tmpl.recognize(m)
121         if options.nil?
122           failures << [tmpl, failure]
123         else
124           action = tmpl.options[:action] ? tmpl.options[:action] : tmpl.items[0]
125           unless @parent.respond_to?(action)
126             failures << [tmpl, "class does not respond to action #{action}"]
127             next
128           end
129           auth = tmpl.options[:full_auth_path]
130           debug "checking auth for #{auth}"
131           if m.bot.auth.allow?(auth, m.source, m.replyto)
132             debug "template match found and auth'd: #{action.inspect} #{options.inspect}"
133             @parent.send(action, m, options)
134             return true
135           end
136           debug "auth failed for #{auth}"
137           # if it's just an auth failure but otherwise the match is good,
138           # don't try any more handlers
139           return false
140         end
141       end
142       failures.each {|f, r|
143         debug "#{f.inspect} => #{r}"
144       }
145       debug "no handler found, trying fallback"
146       if @fallback != nil && @parent.respond_to?(@fallback)
147         if m.bot.auth.allow?(@fallback, m.source, m.replyto)
148           @parent.send(@fallback, m, {})
149           return true
150         end
151       end
152       return false
153     end
154
155   end
156
157   class Template
158     attr_reader :defaults # The defaults hash
159     attr_reader :options  # The options hash
160     attr_reader :items
161
162     def initialize(botmodule, template, hash={})
163       raise ArgumentError, "Third argument must be a hash!" unless hash.kind_of?(Hash)
164       @defaults = hash[:defaults].kind_of?(Hash) ? hash.delete(:defaults) : {}
165       @requirements = hash[:requirements].kind_of?(Hash) ? hash.delete(:requirements) : {}
166       self.items = template
167       if hash.has_key?(:auth)
168         warning "Command #{template} in #{botmodule} uses old :auth syntax, please upgrade"
169       end
170       if hash.has_key?(:full_auth_path)
171         warning "Command #{template} in #{botmodule} sets :full_auth_path, please don't do this"
172       else
173         case botmodule
174         when String
175           pre = botmodule
176         when Plugins::BotModule
177           pre = botmodule.name
178         else
179           raise ArgumentError, "Can't find auth base in #{botmodule.inspect}"
180         end
181         post = items.reject{ |x|
182           x == pre || x.kind_of?(Symbol)
183         }
184         if post.empty?
185           post = nil
186         else
187           post = post.first
188         end
189         if hash.has_key?(:auth_path)
190           extra = hash[:auth_path]
191           pre = nil if extra.sub!(/^!/, "")
192           post = nil if extra.sub!(/!$/, "")
193         else
194           extra = nil
195         end
196         hash[:full_auth_path] = [pre,extra,post].compact.join("::")
197         # TODO check if the full_auth_path is sane
198       end
199
200       @options = hash
201       # debug "Create template #{self.inspect}"
202     end
203
204     def items=(str)
205       items = str.split(/\s+/).collect {|c| (/^(:|\*)(\w+)$/ =~ c) ? (($1 == ':' ) ? $2.intern : "*#{$2}".intern) : c} if str.kind_of?(String) # split and convert ':xyz' to symbols
206       items.shift if items.first == ""
207       items.pop if items.last == ""
208       @items = items
209
210       if @items.first.kind_of? Symbol
211         raise ArgumentError, "Illegal template -- first component cannot be dynamic\n   #{str.inspect}"
212       end
213
214       # Verify uniqueness of each component.
215       @items.inject({}) do |seen, item|
216         if item.kind_of? Symbol
217           # We must remove the initial * when present,
218           # because the parameters hash will intern both :item and *item as :item
219           it = item.to_s.sub(/^\*/,"").intern
220           raise ArgumentError, "Illegal template -- duplicate item #{it} in #{str.inspect}" if seen.key? it
221           seen[it] = true
222         end
223         seen
224       end
225     end
226
227     # Recognize the provided string components, returning a hash of
228     # recognized values, or [nil, reason] if the string isn't recognized.
229     def recognize(m)
230       components = m.message.split(/\s+/)
231       options = {}
232
233       @items.each do |item|
234         if /^\*/ =~ item.to_s
235           if components.empty?
236             value = @defaults.has_key?(item) ? @defaults[item].clone : []
237           else
238             value = components.clone
239           end
240           components = []
241           def value.to_s() self.join(' ') end
242           options[item.to_s.sub(/^\*/,"").intern] = value
243         elsif item.kind_of? Symbol
244           value = components.shift || @defaults[item]
245           if passes_requirements?(item, value)
246             options[item] = value
247           else
248             if @defaults.has_key?(item)
249               options[item] = @defaults[item]
250               # push the test-failed component back on the stack
251               components.unshift value
252             else
253               return nil, requirements_for(item)
254             end
255           end
256         else
257           return nil, "No value available for component #{item.inspect}" if components.empty?
258           component = components.shift
259           return nil, "Value for component #{item.inspect} doesn't match #{component}" if component != item
260         end
261       end
262
263       return nil, "Unused components were left: #{components.join '/'}" unless components.empty?
264
265       return nil, "template is not configured for private messages" if @options.has_key?(:private) && !@options[:private] && m.private?
266       return nil, "template is not configured for public messages" if @options.has_key?(:public) && !@options[:public] && !m.private?
267
268       options.delete_if {|k, v| v.nil?} # Remove nil values.
269       return options, nil
270     end
271
272     def inspect
273       when_str = @requirements.empty? ? "" : " when #{@requirements.inspect}"
274       default_str = @defaults.empty? ? "" : " || #{@defaults.inspect}"
275       "<#{self.class.to_s} #{@items.collect{|c| c.kind_of?(String) ? c : c.inspect}.join(' ').inspect}#{default_str}#{when_str}>"
276     end
277
278     # Verify that the given value passes this template's requirements
279     def passes_requirements?(name, value)
280       return @defaults.key?(name) && @defaults[name].nil? if value.nil? # Make sure it's there if it should be
281
282       case @requirements[name]
283         when nil then true
284         when Regexp then
285           value = value.to_s
286           match = @requirements[name].match(value)
287           match && match[0].length == value.length
288         else
289           @requirements[name] == value.to_s
290       end
291     end
292
293     def requirements_for(name)
294       name = name.to_s.sub(/^\*/,"").intern if (/^\*/ =~ name.inspect)
295       presence = (@defaults.key?(name) && @defaults[name].nil?)
296       requirement = case @requirements[name]
297         when nil then nil
298         when Regexp then "match #{@requirements[name].inspect}"
299         else "be equal to #{@requirements[name].inspect}"
300       end
301       if presence && requirement then "#{name} must be present and #{requirement}"
302       elsif presence || requirement then "#{name} must #{requirement || 'be present'}"
303       else "#{name} has no requirements"
304       end
305     end
306   end
307 end