]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/message.rb
d923fd8efd6aed61478426cb8a9e3a1ef1234a49
[user/henk/code/ruby/rbot.git] / lib / rbot / message.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: IRC message datastructures
5
6 module Irc
7
8
9   class Bot
10     module Config
11       Config.register ArrayValue.new('core.address_prefix',
12         :default => [], :wizard => true,
13         :desc => "what non nick-matching prefixes should the bot respond to as if addressed (e.g !, so that '!foo' is treated like 'rbot: foo')"
14       )
15
16       Config.register BooleanValue.new('core.reply_with_nick',
17         :default => false, :wizard => true,
18         :desc => "if true, the bot will prepend the nick to what he has to say when replying (e.g. 'markey: you can't do that!')"
19       )
20
21       Config.register StringValue.new('core.nick_postfix',
22         :default => ':', :wizard => true,
23         :desc => "when replying with nick put this character after the nick of the user the bot is replying to"
24       )
25     end
26   end
27
28
29   # Define standard IRC attriubtes (not so standard actually,
30   # but the closest thing we have ...)
31   Bold = "\002"
32   Underline = "\037"
33   Reverse = "\026"
34   Italic = "\011"
35   NormalText = "\017"
36
37   # Color is prefixed by \003 and followed by optional
38   # foreground and background specifications, two-digits-max
39   # numbers separated by a comma. One of the two parts
40   # must be present.
41   Color = "\003"
42   ColorRx = /#{Color}\d?\d?(?:,\d\d?)?/
43
44   # Standard color codes
45   ColorCode = {
46     :black      => 1,
47     :blue       => 2,
48     :navyblue   => 2,
49     :navy_blue  => 2,
50     :green      => 3,
51     :red        => 4,
52     :brown      => 5,
53     :purple     => 6,
54     :olive      => 7,
55     :yellow     => 8,
56     :limegreen  => 9,
57     :lime_green => 9,
58     :teal       => 10,
59     :aqualight  => 11,
60     :aqua_light => 11,
61     :royal_blue => 12,
62     :hotpink    => 13,
63     :hot_pink   => 13,
64     :darkgray   => 14,
65     :dark_gray  => 14,
66     :lightgray  => 15,
67     :light_gray => 15,
68     :white      => 16
69   }
70
71   # Convert a String or Symbol into a color number
72   def Irc.find_color(data)
73     "%02d" % if Integer === data
74       data
75     else
76       f = if String === data
77             data.intern
78           else
79             data
80           end
81       if ColorCode.key?(f)
82         ColorCode[f] 
83       else
84         0
85       end
86     end
87   end
88
89   # Insert the full color code for a given
90   # foreground/background combination.
91   def Irc.color(fg=nil,bg=nil)
92     str = Color.dup
93     if fg
94      str << Irc.find_color(fg)
95     end
96     if bg
97       str << "," << Irc.find_color(bg)
98     end
99     return str
100   end
101
102   # base user message class, all user messages derive from this
103   # (a user message is defined as having a source hostmask, a target
104   # nick/channel and a message part)
105   class BasicUserMessage
106
107     # associated bot
108     attr_reader :bot
109
110     # associated server
111     attr_reader :server
112
113     # when the message was received
114     attr_reader :time
115
116     # User that originated the message
117     attr_reader :source
118
119     # User/Channel message was sent to
120     attr_reader :target
121
122     # contents of the message
123     attr_accessor :message
124
125     # contents of the message (for logging purposes)
126     attr_accessor :logmessage
127
128     # has the message been replied to/handled by a plugin?
129     attr_accessor :replied
130
131     # should the message be ignored?
132     attr_accessor :ignored
133     alias :ignored? :ignored
134
135     # instantiate a new Message
136     # bot::      associated bot class
137     # server::   Server where the message took place
138     # source::   User that sent the message
139     # target::   User/Channel is destined for
140     # message::  actual message
141     def initialize(bot, server, source, target, message)
142       @msg_wants_id = false unless defined? @msg_wants_id
143
144       @time = Time.now
145       @bot = bot
146       @source = source
147       @address = false
148       @target = target
149       @message = BasicUserMessage.stripcolour message
150       @replied = false
151       @server = server
152       @ignored = false
153
154       @identified = false
155       if @msg_wants_id && @server.capabilities[:"identify-msg"]
156         if @message =~ /^([-+])(.*)/
157           @identified = ($1=="+")
158           @message = $2
159         else
160           warning "Message does not have identification"
161         end
162       end
163       @logmessage = @message.dup
164
165       if target && target == @bot.myself
166         @address = true
167       end
168
169     end
170
171     # Access the nick of the source
172     #
173     def sourcenick
174       @source.nick rescue @source.to_s
175     end
176
177     # Access the user@host of the source
178     #
179     def sourceaddress
180       "#{@source.user}@#{@source.host}" rescue @source.to_s
181     end
182
183     # Access the botuser corresponding to the source, if any
184     #
185     def botuser
186       source.botuser rescue @bot.auth.everyone
187     end
188
189
190     # Was the message from an identified user?
191     def identified?
192       return @identified
193     end
194
195     # returns true if the message was addressed to the bot.
196     # This includes any private message to the bot, or any public message
197     # which looks like it's addressed to the bot, e.g. "bot: foo", "bot, foo",
198     # a kick message when bot was kicked etc.
199     def address?
200       return @address
201     end
202
203     # has this message been replied to by a plugin?
204     def replied?
205       return @replied
206     end
207
208     # strip mIRC colour escapes from a string
209     def BasicUserMessage.stripcolour(string)
210       return "" unless string
211       ret = string.gsub(ColorRx, "")
212       #ret.tr!("\x00-\x1f", "")
213       ret
214     end
215
216   end
217
218   # class for handling welcome messages from the server
219   class WelcomeMessage < BasicUserMessage
220   end
221
222   # class for handling IRC user messages. Includes some utilities for handling
223   # the message, for example in plugins.
224   # The +message+ member will have any bot addressing "^bot: " removed
225   # (address? will return true in this case)
226   class UserMessage < BasicUserMessage
227
228     # for plugin messages, the name of the plugin invoked by the message
229     attr_reader :plugin
230
231     # for plugin messages, the rest of the message, with the plugin name
232     # removed
233     attr_reader :params
234
235     # convenience member. Who to reply to (i.e. would be sourcenick for a
236     # privately addressed message, or target (the channel) for a publicly
237     # addressed message
238     attr_reader :replyto
239
240     # channel the message was in, nil for privately addressed messages
241     attr_reader :channel
242
243     # for PRIVMSGs, false unless the message was a CTCP command,
244     # in which case it evaluates to the CTCP command itself
245     # (TIME, PING, VERSION, etc). The CTCP command parameters
246     # are then stored in the message.
247     attr_reader :ctcp
248
249     # for PRIVMSGs, true if the message was a CTCP ACTION (CTCP stuff
250     # will be stripped from the message)
251     attr_reader :action
252
253     # instantiate a new UserMessage
254     # bot::      associated bot class
255     # source::   hostmask of the message source
256     # target::   nick/channel message is destined for
257     # message::  message part
258     def initialize(bot, server, source, target, message)
259       super(bot, server, source, target, message)
260       @target = target
261       @private = false
262       @plugin = nil
263       @ctcp = false
264       @action = false
265
266       if target == @bot.myself
267         @private = true
268         @address = true
269         @channel = nil
270         @replyto = source
271       else
272         @replyto = @target
273         @channel = @target
274       end
275
276       # check for option extra addressing prefixes, e.g "|search foo", or
277       # "!version" - first match wins
278       bot.config['core.address_prefix'].each {|mprefix|
279         if @message.gsub!(/^#{Regexp.escape(mprefix)}\s*/, "")
280           @address = true
281           break
282         end
283       }
284
285       # even if they used above prefixes, we allow for silly people who
286       # combine all possible types, e.g. "|rbot: hello", or
287       # "/msg rbot rbot: hello", etc
288       if @message.gsub!(/^\s*#{Regexp.escape(bot.nick)}\s*([:;,>]|\s)\s*/i, "")
289         @address = true
290       end
291
292       if(@message =~ /^\001(\S+)(\s(.+))?\001/)
293         @ctcp = $1
294         # FIXME need to support quoting of NULL and CR/LF, see
295         # http://www.irchelp.org/irchelp/rfc/ctcpspec.html
296         @message = $3 || String.new
297         @action = @ctcp == 'ACTION'
298         debug "Received CTCP command #{@ctcp} with options #{@message} (action? #{@action})"
299         @logmessage = @message.dup
300       end
301
302       # free splitting for plugins
303       @params = @message.dup
304       if @params.gsub!(/^\s*(\S+)[\s$]*/, "")
305         @plugin = $1.downcase
306         @params = nil unless @params.length > 0
307       end
308     end
309
310     # returns true for private messages, e.g. "/msg bot hello"
311     def private?
312       return @private
313     end
314
315     # returns true if the message was in a channel
316     def public?
317       return !@private
318     end
319
320     def action?
321       return @action
322     end
323
324     # convenience method to reply to a message, useful in plugins. It's the
325     # same as doing:
326     # <tt>@bot.say m.replyto, string</tt>
327     # So if the message is private, it will reply to the user. If it was
328     # in a channel, it will reply in the channel.
329     def plainreply(string, options={})
330       @bot.say @replyto, string, options
331       @replied = true
332     end
333
334     # Same as reply, but when replying in public it adds the nick of the user
335     # the bot is replying to
336     def nickreply(string, options={})
337       extra = self.public? ? "#{@source}#{@bot.config['core.nick_postfix']} " : ""
338       @bot.say @replyto, extra + string, options
339       @replied = true
340     end
341
342     # the default reply style is to nickreply unless the reply already contains
343     # the nick or core.reply_with_nick is set to false
344     #
345     def reply(string, options={})
346       if @bot.config['core.reply_with_nick'] and not string =~ /\b#{Regexp.escape(@source.to_s)}\b/
347         return nickreply(string, options)
348       end
349       plainreply(string, options)
350     end
351
352     # convenience method to reply to a message with an action. It's the
353     # same as doing:
354     # <tt>@bot.action m.replyto, string</tt>
355     # So if the message is private, it will reply to the user. If it was
356     # in a channel, it will reply in the channel.
357     def act(string, options={})
358       @bot.action @replyto, string, options
359       @replied = true
360     end
361
362     # send a CTCP response, i.e. a private NOTICE to the sender
363     # with the same CTCP command and the reply as a parameter
364     def ctcp_reply(string, options={})
365       @bot.ctcp_notice @source, @ctcp, string, options
366     end
367
368     # convenience method to reply "okay" in the current language to the
369     # message
370     def plainokay
371       self.plainreply @bot.lang.get("okay")
372     end
373
374     # Like the above, but append the username
375     def nickokay
376       str = @bot.lang.get("okay").dup
377       if self.public?
378         # remove final punctuation
379         str.gsub!(/[!,.]$/,"")
380         str += ", #{@source}"
381       end
382       self.plainreply str
383     end
384
385     # the default okay style is the same as the default reply style
386     #
387     def okay
388       if @bot.config['core.reply_with_nick']
389         return nickokay
390       end
391       plainokay
392     end
393
394     # send a NOTICE to the message source
395     #
396     def notify(msg,opts={})
397       @bot.notice(sourcenick, msg, opts)
398     end
399
400   end
401
402   # class to manage IRC PRIVMSGs
403   class PrivMessage < UserMessage
404     def initialize(bot, server, source, target, message)
405       @msg_wants_id = true
406       super
407     end
408   end
409
410   # class to manage IRC NOTICEs
411   class NoticeMessage < UserMessage
412     def initialize(bot, server, source, target, message)
413       @msg_wants_id = true
414       super
415     end
416   end
417
418   # class to manage IRC KICKs
419   # +address?+ can be used as a shortcut to see if the bot was kicked,
420   # basically, +target+ was kicked from +channel+ by +source+ with +message+
421   class KickMessage < BasicUserMessage
422     # channel user was kicked from
423     attr_reader :channel
424
425     def initialize(bot, server, source, target, channel, message="")
426       super(bot, server, source, target, message)
427       @channel = channel
428     end
429   end
430
431   # class to manage IRC INVITEs
432   # +address?+ can be used as a shortcut to see if the bot was invited,
433   # which should be true except for server bugs
434   class InviteMessage < BasicUserMessage
435     # channel user was invited to
436     attr_reader :channel
437
438     def initialize(bot, server, source, target, channel, message="")
439       super(bot, server, source, target, message)
440       @channel = channel
441     end
442   end
443
444   # class to pass IRC Nick changes in. @message contains the old nickame,
445   # @sourcenick contains the new one.
446   class NickMessage < BasicUserMessage
447     def initialize(bot, server, source, oldnick, newnick)
448       super(bot, server, source, oldnick, newnick)
449     end
450
451     def oldnick
452       return @target
453     end
454
455     def newnick
456       return @message
457     end
458   end
459
460   class QuitMessage < BasicUserMessage
461     def initialize(bot, server, source, target, message="")
462       super(bot, server, source, target, message)
463     end
464   end
465
466   class TopicMessage < BasicUserMessage
467     # channel topic
468     attr_reader :topic
469     # topic set at (unixtime)
470     attr_reader :timestamp
471     # topic set on channel
472     attr_reader :channel
473
474     def initialize(bot, server, source, channel, topic=ChannelTopic.new)
475       super(bot, server, source, channel, topic.text)
476       @topic = topic
477       @timestamp = topic.set_on
478       @channel = channel
479     end
480   end
481
482   # class to manage channel joins
483   class JoinMessage < BasicUserMessage
484     # channel joined
485     attr_reader :channel
486     def initialize(bot, server, source, channel, message="")
487       super(bot, server, source, channel, message)
488       @channel = channel
489       # in this case sourcenick is the nick that could be the bot
490       @address = (source == @bot.myself)
491     end
492   end
493
494   # class to manage channel parts
495   # same as a join, but can have a message too
496   class PartMessage < JoinMessage
497   end
498 end