]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/messagemapper.rb
fcec76dfa9eca29ef913791fcec45fc023d64913
[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         words = items.reject{ |x|
182           x == pre || x.kind_of?(Symbol)
183         }
184         if words.empty?
185           post = nil
186         else
187           post = words.first
188         end
189         if hash.has_key?(:auth_path)
190           extra = hash[:auth_path]
191           if extra.sub!(/^:/, "")
192             pre += "::" + post
193             post = nil
194           end
195           if extra.sub!(/:$/, "")
196             post = [post,words[1]].compact.join("::") if words.length > 1
197           end
198           pre = nil if extra.sub!(/^!/, "")
199           post = nil if extra.sub!(/!$/, "")
200         else
201           extra = nil
202         end
203         hash[:full_auth_path] = [pre,extra,post].compact.join("::")
204         # TODO check if the full_auth_path is sane
205       end
206
207       @options = hash
208       # debug "Create template #{self.inspect}"
209     end
210
211     def items=(str)
212       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
213       items.shift if items.first == ""
214       items.pop if items.last == ""
215       @items = items
216
217       if @items.first.kind_of? Symbol
218         raise ArgumentError, "Illegal template -- first component cannot be dynamic\n   #{str.inspect}"
219       end
220
221       # Verify uniqueness of each component.
222       @items.inject({}) do |seen, item|
223         if item.kind_of? Symbol
224           # We must remove the initial * when present,
225           # because the parameters hash will intern both :item and *item as :item
226           it = item.to_s.sub(/^\*/,"").intern
227           raise ArgumentError, "Illegal template -- duplicate item #{it} in #{str.inspect}" if seen.key? it
228           seen[it] = true
229         end
230         seen
231       end
232     end
233
234     # Recognize the provided string components, returning a hash of
235     # recognized values, or [nil, reason] if the string isn't recognized.
236     def recognize(m)
237       components = m.message.split(/\s+/)
238       options = {}
239
240       @items.each do |item|
241         if /^\*/ =~ item.to_s
242           if components.empty?
243             value = @defaults.has_key?(item) ? @defaults[item].clone : []
244           else
245             value = components.clone
246           end
247           components = []
248           def value.to_s() self.join(' ') end
249           options[item.to_s.sub(/^\*/,"").intern] = value
250         elsif item.kind_of? Symbol
251           value = components.shift || @defaults[item]
252           if passes_requirements?(item, value)
253             options[item] = value
254           else
255             if @defaults.has_key?(item)
256               options[item] = @defaults[item]
257               # push the test-failed component back on the stack
258               components.unshift value
259             else
260               return nil, requirements_for(item)
261             end
262           end
263         else
264           return nil, "No value available for component #{item.inspect}" if components.empty?
265           component = components.shift
266           return nil, "Value for component #{item.inspect} doesn't match #{component}" if component != item
267         end
268       end
269
270       return nil, "Unused components were left: #{components.join '/'}" unless components.empty?
271
272       return nil, "template is not configured for private messages" if @options.has_key?(:private) && !@options[:private] && m.private?
273       return nil, "template is not configured for public messages" if @options.has_key?(:public) && !@options[:public] && !m.private?
274
275       options.delete_if {|k, v| v.nil?} # Remove nil values.
276       return options, nil
277     end
278
279     def inspect
280       when_str = @requirements.empty? ? "" : " when #{@requirements.inspect}"
281       default_str = @defaults.empty? ? "" : " || #{@defaults.inspect}"
282       "<#{self.class.to_s} #{@items.collect{|c| c.kind_of?(String) ? c : c.inspect}.join(' ').inspect}#{default_str}#{when_str}>"
283     end
284
285     # Verify that the given value passes this template's requirements
286     def passes_requirements?(name, value)
287       return @defaults.key?(name) && @defaults[name].nil? if value.nil? # Make sure it's there if it should be
288
289       case @requirements[name]
290         when nil then true
291         when Regexp then
292           value = value.to_s
293           match = @requirements[name].match(value)
294           match && match[0].length == value.length
295         else
296           @requirements[name] == value.to_s
297       end
298     end
299
300     def requirements_for(name)
301       name = name.to_s.sub(/^\*/,"").intern if (/^\*/ =~ name.inspect)
302       presence = (@defaults.key?(name) && @defaults[name].nil?)
303       requirement = case @requirements[name]
304         when nil then nil
305         when Regexp then "match #{@requirements[name].inspect}"
306         else "be equal to #{@requirements[name].inspect}"
307       end
308       if presence && requirement then "#{name} must be present and #{requirement}"
309       elsif presence || requirement then "#{name} must #{requirement || 'be present'}"
310       else "#{name} has no requirements"
311       end
312     end
313   end
314 end