message.rb: fix a thinko in inspect()
[rbot] / 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   AttributeRx = /#{Bold}|#{Underline}|#{Reverse}|#{Italic}|#{NormalText}/
37
38   # Color is prefixed by \003 and followed by optional
39   # foreground and background specifications, two-digits-max
40   # numbers separated by a comma. One of the two parts
41   # must be present.
42   Color = "\003"
43   ColorRx = /#{Color}\d?\d?(?:,\d\d?)?/
44
45   FormattingRx = /#{AttributeRx}|#{ColorRx}/
46
47   # Standard color codes
48   ColorCode = {
49     :black      => 1,
50     :blue       => 2,
51     :navyblue   => 2,
52     :navy_blue  => 2,
53     :green      => 3,
54     :red        => 4,
55     :brown      => 5,
56     :purple     => 6,
57     :olive      => 7,
58     :yellow     => 8,
59     :limegreen  => 9,
60     :lime_green => 9,
61     :teal       => 10,
62     :aqualight  => 11,
63     :aqua_light => 11,
64     :royal_blue => 12,
65     :hotpink    => 13,
66     :hot_pink   => 13,
67     :darkgray   => 14,
68     :dark_gray  => 14,
69     :lightgray  => 15,
70     :light_gray => 15,
71     :white      => 16
72   }
73
74   # Convert a String or Symbol into a color number
75   def Irc.find_color(data)
76     "%02d" % if Integer === data
77       data
78     else
79       f = if String === data
80             data.intern
81           else
82             data
83           end
84       if ColorCode.key?(f)
85         ColorCode[f] 
86       else
87         0
88       end
89     end
90   end
91
92   # Insert the full color code for a given
93   # foreground/background combination.
94   def Irc.color(fg=nil,bg=nil)
95     str = Color.dup
96     if fg
97      str << Irc.find_color(fg)
98     end
99     if bg
100       str << "," << Irc.find_color(bg)
101     end
102     return str
103   end
104
105   # base user message class, all user messages derive from this
106   # (a user message is defined as having a source hostmask, a target
107   # nick/channel and a message part)
108   class BasicUserMessage
109
110     # associated bot
111     attr_reader :bot
112
113     # associated server
114     attr_reader :server
115
116     # when the message was received
117     attr_reader :time
118
119     # User that originated the message
120     attr_reader :source
121
122     # User/Channel message was sent to
123     attr_reader :target
124
125     # contents of the message (stripped of initial/final format codes)
126     attr_accessor :message
127
128     # contents of the message (for logging purposes)
129     attr_accessor :logmessage
130
131     # contents of the message (stripped of all formatting)
132     attr_accessor :plainmessage
133
134     # has the message been replied to/handled by a plugin?
135     attr_accessor :replied
136     alias :replied? :replied
137
138     # should the message be ignored?
139     attr_accessor :ignored
140     alias :ignored? :ignored
141
142     # set this to true if the method that delegates the message is run in a thread
143     attr_accessor :in_thread
144     alias :in_thread? :in_thread
145
146     def inspect(fields=nil)
147       ret = self.__to_s__[0..-2]
148       ret << ' bot=' << @bot.__to_s__
149       ret << ' server=' << server.to_s
150       ret << ' time=' << time.to_s
151       ret << ' source=' << source.to_s
152       ret << ' target=' << target.to_s
153       ret << ' message=' << message.inspect
154       ret << ' logmessage=' << logmessage.inspect
155       ret << ' plainmessage=' << plainmessage.inspect
156       ret << fields if fields
157       ret << ' (identified)' if identified?
158       ret << ' (addressed to me)' if address?
159       ret << ' (replied)' if replied?
160       ret << ' (ignored)' if ignored?
161       ret << ' (in thread)' if in_thread?
162       ret << '>'
163     end
164
165     # instantiate a new Message
166     # bot::      associated bot class
167     # server::   Server where the message took place
168     # source::   User that sent the message
169     # target::   User/Channel is destined for
170     # message::  actual message
171     def initialize(bot, server, source, target, message)
172       @msg_wants_id = false unless defined? @msg_wants_id
173
174       @time = Time.now
175       @bot = bot
176       @source = source
177       @address = false
178       @target = target
179       @message = message || ""
180       @replied = false
181       @server = server
182       @ignored = false
183       @in_thread = false
184
185       @identified = false
186       if @msg_wants_id && @server.capabilities[:"identify-msg"]
187         if @message =~ /^([-+])(.*)/
188           @identified = ($1=="+")
189           @message = $2
190         else
191           warning "Message does not have identification"
192         end
193       end
194       @logmessage = @message.dup
195       @plainmessage = BasicUserMessage.strip_formatting(@message)
196       @message = BasicUserMessage.strip_initial_formatting(@message)
197
198       if target && target == @bot.myself
199         @address = true
200       end
201
202     end
203
204     # Access the nick of the source
205     #
206     def sourcenick
207       @source.nick rescue @source.to_s
208     end
209
210     # Access the user@host of the source
211     #
212     def sourceaddress
213       "#{@source.user}@#{@source.host}" rescue @source.to_s
214     end
215
216     # Access the botuser corresponding to the source, if any
217     #
218     def botuser
219       source.botuser rescue @bot.auth.everyone
220     end
221
222
223     # Was the message from an identified user?
224     def identified?
225       return @identified
226     end
227
228     # returns true if the message was addressed to the bot.
229     # This includes any private message to the bot, or any public message
230     # which looks like it's addressed to the bot, e.g. "bot: foo", "bot, foo",
231     # a kick message when bot was kicked etc.
232     def address?
233       return @address
234     end
235
236     # strip mIRC colour escapes from a string
237     def BasicUserMessage.stripcolour(string)
238       return "" unless string
239       ret = string.gsub(ColorRx, "")
240       #ret.tr!("\x00-\x1f", "")
241       ret
242     end
243
244     def BasicUserMessage.strip_initial_formatting(string)
245       return "" unless string
246       ret = string.gsub(/^#{FormattingRx}|#{FormattingRx}$/,"")
247     end
248
249     def BasicUserMessage.strip_formatting(string)
250       string.gsub(FormattingRx,"")
251     end
252
253   end
254
255   # class for handling welcome messages from the server
256   class WelcomeMessage < BasicUserMessage
257   end
258
259   # class for handling MOTD from the server. Yes, MotdMessage
260   # is somewhat redundant, but it fits with the naming scheme
261   class MotdMessage < BasicUserMessage
262   end
263
264   # class for handling IRC user messages. Includes some utilities for handling
265   # the message, for example in plugins.
266   # The +message+ member will have any bot addressing "^bot: " removed
267   # (address? will return true in this case)
268   class UserMessage < BasicUserMessage
269
270     def inspect
271       fields = ' plugin=' << plugin.inspect
272       fields << ' params=' << params.inspect
273       fields << ' channel=' << channel.to_s if channel
274       fields << ' (reply to ' << replyto.to_s << ')'
275       if self.private?
276         fields << ' (private)'
277       else
278         fields << ' (public)'
279       end
280       if self.action?
281         fields << ' (action)'
282       elsif ctcp
283         fields << ' (CTCP ' << ctcp << ')'
284       end
285       super(fields)
286     end
287
288     # for plugin messages, the name of the plugin invoked by the message
289     attr_reader :plugin
290
291     # for plugin messages, the rest of the message, with the plugin name
292     # removed
293     attr_reader :params
294
295     # convenience member. Who to reply to (i.e. would be sourcenick for a
296     # privately addressed message, or target (the channel) for a publicly
297     # addressed message
298     attr_reader :replyto
299
300     # channel the message was in, nil for privately addressed messages
301     attr_reader :channel
302
303     # for PRIVMSGs, false unless the message was a CTCP command,
304     # in which case it evaluates to the CTCP command itself
305     # (TIME, PING, VERSION, etc). The CTCP command parameters
306     # are then stored in the message.
307     attr_reader :ctcp
308
309     # for PRIVMSGs, true if the message was a CTCP ACTION (CTCP stuff
310     # will be stripped from the message)
311     attr_reader :action
312
313     # instantiate a new UserMessage
314     # bot::      associated bot class
315     # source::   hostmask of the message source
316     # target::   nick/channel message is destined for
317     # message::  message part
318     def initialize(bot, server, source, target, message)
319       super(bot, server, source, target, message)
320       @target = target
321       @private = false
322       @plugin = nil
323       @ctcp = false
324       @action = false
325
326       if target == @bot.myself
327         @private = true
328         @address = true
329         @channel = nil
330         @replyto = source
331       else
332         @replyto = @target
333         @channel = @target
334       end
335
336       # check for option extra addressing prefixes, e.g "|search foo", or
337       # "!version" - first match wins
338       bot.config['core.address_prefix'].each {|mprefix|
339         if @message.gsub!(/^#{Regexp.escape(mprefix)}\s*/, "")
340           @address = true
341           break
342         end
343       }
344
345       # even if they used above prefixes, we allow for silly people who
346       # combine all possible types, e.g. "|rbot: hello", or
347       # "/msg rbot rbot: hello", etc
348       if @message.gsub!(/^\s*#{Regexp.escape(bot.nick)}\s*([:;,>]|\s)\s*/i, "")
349         @address = true
350       end
351
352       if(@message =~ /^\001(\S+)(\s(.+))?\001/)
353         @ctcp = $1
354         # FIXME need to support quoting of NULL and CR/LF, see
355         # http://www.irchelp.org/irchelp/rfc/ctcpspec.html
356         @message = $3 || String.new
357         @action = @ctcp == 'ACTION'
358         debug "Received CTCP command #{@ctcp} with options #{@message} (action? #{@action})"
359         @logmessage = @message.dup
360       end
361
362       # free splitting for plugins
363       @params = @message.dup
364       # Created messges (such as by fake_message) can contain multiple lines
365       if @params.gsub!(/\A\s*(\S+)[\s$]*/m, "")
366         @plugin = $1.downcase
367         @params = nil unless @params.length > 0
368       end
369     end
370
371     # returns true for private messages, e.g. "/msg bot hello"
372     def private?
373       return @private
374     end
375
376     # returns true if the message was in a channel
377     def public?
378       return !@private
379     end
380
381     def action?
382       return @action
383     end
384
385     # convenience method to reply to a message, useful in plugins. It's the
386     # same as doing:
387     # <tt>@bot.say m.replyto, string</tt>
388     # So if the message is private, it will reply to the user. If it was
389     # in a channel, it will reply in the channel.
390     def plainreply(string, options={})
391       @bot.say @replyto, string, options
392       @replied = true
393     end
394
395     # Same as reply, but when replying in public it adds the nick of the user
396     # the bot is replying to
397     def nickreply(string, options={})
398       extra = self.public? ? "#{@source}#{@bot.config['core.nick_postfix']} " : ""
399       @bot.say @replyto, extra + string, options
400       @replied = true
401     end
402
403     # the default reply style is to nickreply unless the reply already contains
404     # the nick or core.reply_with_nick is set to false
405     #
406     def reply(string, options={})
407       if @bot.config['core.reply_with_nick'] and not string =~ /(?:^|\W)#{Regexp.escape(@source.to_s)}(?:$|\W)/
408         return nickreply(string, options)
409       end
410       plainreply(string, options)
411     end
412
413     # convenience method to reply to a message with an action. It's the
414     # same as doing:
415     # <tt>@bot.action m.replyto, string</tt>
416     # So if the message is private, it will reply to the user. If it was
417     # in a channel, it will reply in the channel.
418     def act(string, options={})
419       @bot.action @replyto, string, options
420       @replied = true
421     end
422
423     # send a CTCP response, i.e. a private NOTICE to the sender
424     # with the same CTCP command and the reply as a parameter
425     def ctcp_reply(string, options={})
426       @bot.ctcp_notice @source, @ctcp, string, options
427     end
428
429     # convenience method to reply "okay" in the current language to the
430     # message
431     def plainokay
432       self.plainreply @bot.lang.get("okay")
433     end
434
435     # Like the above, but append the username
436     def nickokay
437       str = @bot.lang.get("okay").dup
438       if self.public?
439         # remove final punctuation
440         str.gsub!(/[!,.]$/,"")
441         str += ", #{@source}"
442       end
443       self.plainreply str
444     end
445
446     # the default okay style is the same as the default reply style
447     #
448     def okay
449       if @bot.config['core.reply_with_nick']
450         return nickokay
451       end
452       plainokay
453     end
454
455     # send a NOTICE to the message source
456     #
457     def notify(msg,opts={})
458       @bot.notice(sourcenick, msg, opts)
459     end
460
461   end
462
463   # class to manage IRC PRIVMSGs
464   class PrivMessage < UserMessage
465     def initialize(bot, server, source, target, message, opts={})
466       @msg_wants_id = opts[:handle_id]
467       super(bot, server, source, target, message)
468     end
469   end
470
471   # class to manage IRC NOTICEs
472   class NoticeMessage < UserMessage
473     def initialize(bot, server, source, target, message, opts={})
474       @msg_wants_id = opts[:handle_id]
475       super(bot, server, source, target, message)
476     end
477   end
478
479   # class to manage IRC KICKs
480   # +address?+ can be used as a shortcut to see if the bot was kicked,
481   # basically, +target+ was kicked from +channel+ by +source+ with +message+
482   class KickMessage < BasicUserMessage
483     # channel user was kicked from
484     attr_reader :channel
485
486     def inspect
487       fields = ' channel=' << channel.to_s
488       super(fields)
489     end
490
491     def initialize(bot, server, source, target, channel, message="")
492       super(bot, server, source, target, message)
493       @channel = channel
494     end
495   end
496
497   # class to manage IRC INVITEs
498   # +address?+ can be used as a shortcut to see if the bot was invited,
499   # which should be true except for server bugs
500   class InviteMessage < BasicUserMessage
501     # channel user was invited to
502     attr_reader :channel
503
504     def inspect
505       fields = ' channel=' << channel.to_s
506       super(fields)
507     end
508
509     def initialize(bot, server, source, target, channel, message="")
510       super(bot, server, source, target, message)
511       @channel = channel
512     end
513   end
514
515   # class to pass IRC Nick changes in. @message contains the old nickame,
516   # @sourcenick contains the new one.
517   class NickMessage < BasicUserMessage
518     attr_accessor :is_on
519     def initialize(bot, server, source, oldnick, newnick)
520       super(bot, server, source, oldnick, newnick)
521       @is_on = []
522     end
523
524     def oldnick
525       return @target
526     end
527
528     def newnick
529       return @message
530     end
531
532     def inspect
533       fields = ' old=' << oldnick
534       fields << ' new=' << newnick
535       super(fields)
536     end
537   end
538
539   # class to manage mode changes
540   class ModeChangeMessage < BasicUserMessage
541     attr_accessor :modes
542     def initialize(bot, server, source, target, message="")
543       super(bot, server, source, target, message)
544       @address = (source == @bot.myself)
545       @modes = []
546     end
547
548     def inspect
549       fields = ' modes=' << modes.inspect
550       super(fields)
551     end
552   end
553
554   # class to manage NAME replies
555   class NamesMessage < BasicUserMessage
556     attr_accessor :users
557     def initialize(bot, server, source, target, message="")
558       super(bot, server, source, target, message)
559       @users = []
560     end
561
562     def inspect
563       fields = ' users=' << users.inspect
564       super(fields)
565     end
566   end
567
568   class QuitMessage < BasicUserMessage
569     attr_accessor :was_on
570     def initialize(bot, server, source, target, message="")
571       super(bot, server, source, target, message)
572       @was_on = []
573     end
574   end
575
576   class TopicMessage < BasicUserMessage
577     # channel topic
578     attr_reader :topic
579     # topic set at (unixtime)
580     attr_reader :timestamp
581     # topic set on channel
582     attr_reader :channel
583
584     # :info if topic info, :set if topic set
585     attr_accessor :info_or_set
586     def initialize(bot, server, source, channel, topic=ChannelTopic.new)
587       super(bot, server, source, channel, topic.text)
588       @topic = topic
589       @timestamp = topic.set_on
590       @channel = channel
591       @info_or_set = nil
592     end
593
594     def inspect
595       fields = ' topic=' << topic
596       fields << ' (set on ' << timestamp << ')'
597       super(fields)
598     end
599   end
600
601   # class to manage channel joins
602   class JoinMessage < BasicUserMessage
603     # channel joined
604     attr_reader :channel
605
606     def inspect
607       fields = ' channel=' << channel.to_s
608       super(fields)
609     end
610
611     def initialize(bot, server, source, channel, message="")
612       super(bot, server, source, channel, message)
613       @channel = channel
614       # in this case sourcenick is the nick that could be the bot
615       @address = (source == @bot.myself)
616     end
617   end
618
619   # class to manage channel parts
620   # same as a join, but can have a message too
621   class PartMessage < JoinMessage
622   end
623
624   class UnknownMessage < BasicUserMessage
625   end
626 end