]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/ircbot.rb
timestamp debug logs
[user/henk/code/ruby/rbot.git] / lib / rbot / ircbot.rb
1 require 'thread'
2 require 'etc'
3 require 'fileutils'
4
5 $debug = false unless $debug
6 # print +message+ if debugging is enabled
7 def debug(message=nil)
8   stamp = Time.now.strftime("%Y/%m/%d %H:%M:%S")
9   print "D: [#{stamp}] #{message}\n" if($debug && message)
10   #yield
11 end
12
13 # these first
14 require 'rbot/rbotconfig'
15 require 'rbot/config'
16 require 'rbot/utils'
17
18 require 'rbot/rfc2812'
19 require 'rbot/keywords'
20 require 'rbot/ircsocket'
21 require 'rbot/auth'
22 require 'rbot/timer'
23 require 'rbot/plugins'
24 require 'rbot/channel'
25 require 'rbot/message'
26 require 'rbot/language'
27 require 'rbot/dbhash'
28 require 'rbot/registry'
29 require 'rbot/httputil'
30
31 module Irc
32
33 # Main bot class, which manages the various components, receives messages,
34 # handles them or passes them to plugins, and contains core functionality.
35 class IrcBot
36   # the bot's current nickname
37   attr_reader :nick
38   
39   # the bot's IrcAuth data
40   attr_reader :auth
41   
42   # the bot's BotConfig data
43   attr_reader :config
44   
45   # the botclass for this bot (determines configdir among other things)
46   attr_reader :botclass
47   
48   # used to perform actions periodically (saves configuration once per minute
49   # by default)
50   attr_reader :timer
51   
52   # bot's Language data
53   attr_reader :lang
54
55   # channel info for channels the bot is in
56   attr_reader :channels
57
58   # bot's irc socket
59   attr_reader :socket
60
61   # bot's object registry, plugins get an interface to this for persistant
62   # storage (hash interface tied to a bdb file, plugins use Accessors to store
63   # and restore objects in their own namespaces.)
64   attr_reader :registry
65
66   # bot's httputil help object, for fetching resources via http. Sets up
67   # proxies etc as defined by the bot configuration/environment
68   attr_reader :httputil
69
70   # create a new IrcBot with botclass +botclass+
71   def initialize(botclass, params = {})
72     # BotConfig for the core bot
73     BotConfig.register BotConfigStringValue.new('server.name',
74       :default => "localhost", :requires_restart => true,
75       :desc => "What server should the bot connect to?",
76       :wizard => true)
77     BotConfig.register BotConfigIntegerValue.new('server.port',
78       :default => 6667, :type => :integer, :requires_restart => true,
79       :desc => "What port should the bot connect to?", 
80       :validate => Proc.new {|v| v > 0}, :wizard => true)
81     BotConfig.register BotConfigStringValue.new('server.password',
82       :default => false, :requires_restart => true,
83       :desc => "Password for connecting to this server (if required)",
84       :wizard => true)
85     BotConfig.register BotConfigStringValue.new('server.bindhost',
86       :default => false, :requires_restart => true,
87       :desc => "Specific local host or IP for the bot to bind to (if required)",
88       :wizard => true)
89     BotConfig.register BotConfigIntegerValue.new('server.reconnect_wait',
90       :default => 5, :validate => Proc.new{|v| v >= 0},
91       :desc => "Seconds to wait before attempting to reconnect, on disconnect")
92     BotConfig.register BotConfigStringValue.new('irc.nick', :default => "rbot",
93       :desc => "IRC nickname the bot should attempt to use", :wizard => true,
94       :on_change => Proc.new{|bot, v| bot.sendq "NICK #{v}" })
95     BotConfig.register BotConfigStringValue.new('irc.user', :default => "rbot",
96       :requires_restart => true,
97       :desc => "local user the bot should appear to be", :wizard => true)
98     BotConfig.register BotConfigArrayValue.new('irc.join_channels',
99       :default => [], :wizard => true,
100       :desc => "What channels the bot should always join at startup. List multiple channels using commas to separate. If a channel requires a password, use a space after the channel name. e.g: '#chan1, #chan2, #secretchan secritpass, #chan3'")
101     BotConfig.register BotConfigIntegerValue.new('core.save_every',
102       :default => 60, :validate => Proc.new{|v| v >= 0},
103       # TODO change timer via on_change proc
104       :desc => "How often the bot should persist all configuration to disk (in case of a server crash, for example")
105     BotConfig.register BotConfigFloatValue.new('server.sendq_delay',
106       :default => 2.0, :validate => Proc.new{|v| v >= 0},
107       :desc => "(flood prevention) the delay between sending messages to the server (in seconds)",
108       :on_change => Proc.new {|bot, v| bot.socket.sendq_delay = v })
109     BotConfig.register BotConfigIntegerValue.new('server.sendq_burst',
110       :default => 4, :validate => Proc.new{|v| v >= 0},
111       :desc => "(flood prevention) max lines to burst to the server before throttling. Most ircd's allow bursts of up 5 lines, with non-burst limits of 512 bytes/2 seconds",
112       :on_change => Proc.new {|bot, v| bot.socket.sendq_burst = v })
113     BotConfig.register BotConfigIntegerValue.new('server.ping_timeout',
114       :default => 10, :validate => Proc.new{|v| v >= 0},
115       :on_change => Proc.new {|bot, v| bot.start_server_pings},
116       :desc => "reconnect if server doesn't respond to PING within this many seconds (set to 0 to disable)")
117
118     @argv = params[:argv]
119
120     unless FileTest.directory? Config::datadir
121       puts "data directory '#{Config::datadir}' not found, did you setup.rb?"
122       exit 2
123     end
124     
125     #botclass = "#{Etc.getpwnam(Etc.getlogin).dir}/.rbot" unless botclass
126     botclass = "#{ENV['HOME']}/.rbot" unless botclass
127     @botclass = botclass.gsub(/\/$/, "")
128
129     unless FileTest.directory? botclass
130       puts "no #{botclass} directory found, creating from templates.."
131       if FileTest.exist? botclass
132         puts "Error: file #{botclass} exists but isn't a directory"
133         exit 2
134       end
135       FileUtils.cp_r Config::datadir+'/templates', botclass
136     end
137     
138     Dir.mkdir("#{botclass}/logs") unless File.exist?("#{botclass}/logs")
139
140     @ping_timer = nil
141     @pong_timer = nil
142     @last_ping = nil
143     @startup_time = Time.new
144     @config = BotConfig.new(self)
145 # TODO background self after botconfig has a chance to run wizard
146     @timer = Timer::Timer.new(1.0) # only need per-second granularity
147     @registry = BotRegistry.new self
148     @timer.add(@config['core.save_every']) { save } if @config['core.save_every']
149     @channels = Hash.new
150     @logs = Hash.new
151     @httputil = Utils::HttpUtil.new(self)
152     @lang = Language::Language.new(@config['core.language'])
153     @keywords = Keywords.new(self)
154     @auth = IrcAuth.new(self)
155
156     Dir.mkdir("#{botclass}/plugins") unless File.exist?("#{botclass}/plugins")
157     @plugins = Plugins::Plugins.new(self, ["#{botclass}/plugins"])
158
159     @socket = IrcSocket.new(@config['server.name'], @config['server.port'], @config['server.bindhost'], @config['server.sendq_delay'], @config['server.sendq_burst'])
160     @nick = @config['irc.nick']
161
162     @client = IrcClient.new
163     @client[:privmsg] = proc { |data|
164       message = PrivMessage.new(self, data[:source], data[:target], data[:message])
165       onprivmsg(message)
166     }
167     @client[:notice] = proc { |data|
168       message = NoticeMessage.new(self, data[:source], data[:target], data[:message])
169       # pass it off to plugins that want to hear everything
170       @plugins.delegate "listen", message
171     }
172     @client[:motd] = proc { |data|
173       data[:motd].each_line { |line|
174         log "MOTD: #{line}", "server"
175       }
176     }
177     @client[:nicktaken] = proc { |data| 
178       nickchg "#{data[:nick]}_"
179     }
180     @client[:badnick] = proc {|data| 
181       puts "WARNING, bad nick (#{data[:nick]})"
182     }
183     @client[:ping] = proc {|data|
184       # (jump the queue for pongs)
185       @socket.puts "PONG #{data[:pingid]}"
186     }
187     @client[:pong] = proc {|data|
188       @last_ping = nil
189     }
190     @client[:nick] = proc {|data|
191       sourcenick = data[:sourcenick]
192       nick = data[:nick]
193       m = NickMessage.new(self, data[:source], data[:sourcenick], data[:nick])
194       if(sourcenick == @nick)
195         debug "my nick is now #{nick}"
196         @nick = nick
197       end
198       @channels.each {|k,v|
199         if(v.users.has_key?(sourcenick))
200           log "@ #{sourcenick} is now known as #{nick}", k
201           v.users[nick] = v.users[sourcenick]
202           v.users.delete(sourcenick)
203         end
204       }
205       @plugins.delegate("listen", m)
206       @plugins.delegate("nick", m)
207     }
208     @client[:quit] = proc {|data|
209       source = data[:source]
210       sourcenick = data[:sourcenick]
211       sourceurl = data[:sourceaddress]
212       message = data[:message]
213       m = QuitMessage.new(self, data[:source], data[:sourcenick], data[:message])
214       if(data[:sourcenick] =~ /#{Regexp.escape(@nick)}/i)
215       else
216         @channels.each {|k,v|
217           if(v.users.has_key?(sourcenick))
218             log "@ Quit: #{sourcenick}: #{message}", k
219             v.users.delete(sourcenick)
220           end
221         }
222       end
223       @plugins.delegate("listen", m)
224       @plugins.delegate("quit", m)
225     }
226     @client[:mode] = proc {|data|
227       source = data[:source]
228       sourcenick = data[:sourcenick]
229       sourceurl = data[:sourceaddress]
230       channel = data[:channel]
231       targets = data[:targets]
232       modestring = data[:modestring]
233       log "@ Mode #{modestring} #{targets} by #{sourcenick}", channel
234     }
235     @client[:welcome] = proc {|data|
236       log "joined server #{data[:source]} as #{data[:nick]}", "server"
237       debug "I think my nick is #{@nick}, server thinks #{data[:nick]}"
238       if data[:nick] && data[:nick].length > 0
239         @nick = data[:nick]
240       end
241
242       @plugins.delegate("connect")
243
244       @config['irc.join_channels'].each {|c|
245         debug "autojoining channel #{c}"
246         if(c =~ /^(\S+)\s+(\S+)$/i)
247           join $1, $2
248         else
249           join c if(c)
250         end
251       }
252     }
253     @client[:join] = proc {|data|
254       m = JoinMessage.new(self, data[:source], data[:channel], data[:message])
255       onjoin(m)
256     }
257     @client[:part] = proc {|data|
258       m = PartMessage.new(self, data[:source], data[:channel], data[:message])
259       onpart(m)
260     }
261     @client[:kick] = proc {|data|
262       m = KickMessage.new(self, data[:source], data[:target],data[:channel],data[:message]) 
263       onkick(m)
264     }
265     @client[:invite] = proc {|data|
266       if(data[:target] =~ /^#{Regexp.escape(@nick)}$/i)
267         join data[:channel] if (@auth.allow?("join", data[:source], data[:sourcenick]))
268       end
269     }
270     @client[:changetopic] = proc {|data|
271       channel = data[:channel]
272       sourcenick = data[:sourcenick]
273       topic = data[:topic]
274       timestamp = data[:unixtime] || Time.now.to_i
275       if(sourcenick == @nick)
276         log "@ I set topic \"#{topic}\"", channel
277       else
278         log "@ #{sourcenick} set topic \"#{topic}\"", channel
279       end
280       m = TopicMessage.new(self, data[:source], data[:channel], timestamp, data[:topic])
281
282       ontopic(m)
283       @plugins.delegate("listen", m)
284       @plugins.delegate("topic", m)
285     }
286     @client[:topic] = @client[:topicinfo] = proc {|data|
287       channel = data[:channel]
288       m = TopicMessage.new(self, data[:source], data[:channel], data[:unixtime], data[:topic])
289         ontopic(m)
290     }
291     @client[:names] = proc {|data|
292       channel = data[:channel]
293       users = data[:users]
294       unless(@channels[channel])
295         puts "bug: got names for channel '#{channel}' I didn't think I was in\n"
296         exit 2
297       end
298       @channels[channel].users.clear
299       users.each {|u|
300         @channels[channel].users[u[0].sub(/^[@&~+]/, '')] = ["mode", u[1]]
301       }
302     }
303     @client[:unknown] = proc {|data|
304       #debug "UNKNOWN: #{data[:serverstring]}"
305       log data[:serverstring], ":unknown"
306     }
307   end
308
309   # connect the bot to IRC
310   def connect
311     begin
312       trap("SIGINT") { quit }
313       trap("SIGTERM") { quit }
314       trap("SIGHUP") { quit }
315     rescue
316       debug "failed to trap signals, probably running on windows?"
317     end
318     begin
319       @socket.connect
320     rescue => e
321       raise "failed to connect to IRC server at #{@config['server.name']} #{@config['server.port']}: " + e
322     end
323     @socket.puts "PASS " + @config['server.password'] if @config['server.password']
324     @socket.puts "NICK #{@nick}\nUSER #{@config['irc.user']} 4 #{@config['server.name']} :Ruby bot. (c) Tom Gilbert"
325     start_server_pings
326   end
327
328   # begin event handling loop
329   def mainloop
330     while true
331       begin
332       connect
333       @timer.start
334       
335         while true
336           if @socket.select
337             break unless reply = @socket.gets
338             @client.process reply
339           end
340         end
341       # I despair of this. Some of my users get "connection reset by peer"
342       # exceptions that ARENT SocketError's. How am I supposed to handle
343       # that?
344       #rescue TimeoutError, SocketError => e
345       rescue SystemExit
346         exit 0
347       rescue Exception => e
348         puts "network exception: connection closed: #{e.inspect}"
349         puts e.backtrace.join("\n")
350         @socket.shutdown # now we reconnect
351       rescue => e
352         puts "unexpected exception: connection closed: #{e.inspect}"
353         puts e.backtrace.join("\n")
354         exit 2
355       end
356       
357       puts "disconnected"
358       @last_ping = nil
359       @channels.clear
360       @socket.clearq
361       
362       puts "waiting to reconnect"
363       sleep @config['server.reconnect_wait']
364     end
365   end
366   
367   # type:: message type
368   # where:: message target
369   # message:: message text
370   # send message +message+ of type +type+ to target +where+
371   # Type can be PRIVMSG, NOTICE, etc, but those you should really use the
372   # relevant say() or notice() methods. This one should be used for IRCd
373   # extensions you want to use in modules.
374   def sendmsg(type, where, message)
375     # limit it 440 chars + CRLF.. so we have to split long lines
376     left = 440 - type.length - where.length - 3
377     begin
378       if(left >= message.length)
379         sendq("#{type} #{where} :#{message}")
380         log_sent(type, where, message)
381         return
382       end
383       line = message.slice!(0, left)
384       lastspace = line.rindex(/\s+/)
385       if(lastspace)
386         message = line.slice!(lastspace, line.length) + message
387         message.gsub!(/^\s+/, "")
388       end
389       sendq("#{type} #{where} :#{line}")
390       log_sent(type, where, line)
391     end while(message.length > 0)
392   end
393
394   # queue an arbitraty message for the server
395   def sendq(message="")
396     # temporary
397     @socket.queue(message)
398   end
399
400   # send a notice message to channel/nick +where+
401   def notice(where, message)
402     message.each_line { |line|
403       line.chomp!
404       next unless(line.length > 0)
405       sendmsg("NOTICE", where, line)
406     }
407   end
408
409   # say something (PRIVMSG) to channel/nick +where+
410   def say(where, message)
411     message.to_s.gsub(/[\r\n]+/, "\n").each_line { |line|
412       line.chomp!
413       next unless(line.length > 0)
414       unless((where =~ /^#/) && (@channels.has_key?(where) && @channels[where].quiet))
415         sendmsg("PRIVMSG", where, line)
416       end
417     }
418   end
419
420   # perform a CTCP action with message +message+ to channel/nick +where+
421   def action(where, message)
422     sendq("PRIVMSG #{where} :\001ACTION #{message}\001")
423     if(where =~ /^#/)
424       log "* #{@nick} #{message}", where
425     elsif (where =~ /^(\S*)!.*$/)
426          log "* #{@nick}[#{where}] #{message}", $1
427     else
428          log "* #{@nick}[#{where}] #{message}", where
429     end
430   end
431
432   # quick way to say "okay" (or equivalent) to +where+
433   def okay(where)
434     say where, @lang.get("okay")
435   end
436
437   # log message +message+ to a file determined by +where+. +where+ can be a
438   # channel name, or a nick for private message logging
439   def log(message, where="server")
440     message.chomp!
441     stamp = Time.now.strftime("%Y/%m/%d %H:%M:%S")
442     unless(@logs.has_key?(where))
443       @logs[where] = File.new("#{@botclass}/logs/#{where}", "a")
444       @logs[where].sync = true
445     end
446     @logs[where].puts "[#{stamp}] #{message}"
447     #debug "[#{stamp}] <#{where}> #{message}"
448   end
449   
450   # set topic of channel +where+ to +topic+
451   def topic(where, topic)
452     sendq "TOPIC #{where} :#{topic}"
453   end
454
455   # disconnect from the server and cleanup all plugins and modules
456   def shutdown(message = nil)
457     begin
458       trap("SIGINT", "DEFAULT")
459       trap("SIGTERM", "DEFAULT")
460       trap("SIGHUP", "DEFAULT")
461     rescue
462       debug "failed to trap signals, probably running on windows?"
463     end
464     message = @lang.get("quit") if (message.nil? || message.empty?)
465     @socket.clearq
466     save
467     @plugins.cleanup
468     @channels.each_value {|v|
469       log "@ quit (#{message})", v.name
470     }
471     @registry.close
472     @socket.puts "QUIT :#{message}"
473     @socket.flush
474     @socket.shutdown
475     puts "rbot quit (#{message})"
476   end
477   
478   # message:: optional IRC quit message
479   # quit IRC, shutdown the bot
480   def quit(message=nil)
481     begin
482       shutdown(message)
483     ensure
484       exit 0
485     end
486   end
487
488   # totally shutdown and respawn the bot
489   def restart(message = false)
490     msg = message ? message : "restarting, back in #{@config['server.reconnect_wait']}..."
491     shutdown(msg)
492     sleep @config['server.reconnect_wait']
493     # now we re-exec
494     exec($0, *@argv)
495   end
496
497   # call the save method for bot's config, keywords, auth and all plugins
498   def save
499     @registry.flush
500     @config.save
501     @keywords.save
502     @auth.save
503     @plugins.save
504   end
505
506   # call the rescan method for the bot's lang, keywords and all plugins
507   def rescan
508     @lang.rescan
509     @plugins.rescan
510     @keywords.rescan
511   end
512   
513   # channel:: channel to join
514   # key::     optional channel key if channel is +s
515   # join a channel
516   def join(channel, key=nil)
517     if(key)
518       sendq "JOIN #{channel} :#{key}"
519     else
520       sendq "JOIN #{channel}"
521     end
522   end
523
524   # part a channel
525   def part(channel, message="")
526     sendq "PART #{channel} :#{message}"
527   end
528
529   # attempt to change bot's nick to +name+
530   def nickchg(name)
531       sendq "NICK #{name}"
532   end
533
534   # changing mode
535   def mode(channel, mode, target)
536       sendq "MODE #{channel} #{mode} #{target}"
537   end
538   
539   # m::     message asking for help
540   # topic:: optional topic help is requested for
541   # respond to online help requests
542   def help(topic=nil)
543     topic = nil if topic == ""
544     case topic
545     when nil
546       helpstr = "help topics: core, auth, keywords"
547       helpstr += @plugins.helptopics
548       helpstr += " (help <topic> for more info)"
549     when /^core$/i
550       helpstr = corehelp
551     when /^core\s+(.+)$/i
552       helpstr = corehelp $1
553     when /^auth$/i
554       helpstr = @auth.help
555     when /^auth\s+(.+)$/i
556       helpstr = @auth.help $1
557     when /^keywords$/i
558       helpstr = @keywords.help
559     when /^keywords\s+(.+)$/i
560       helpstr = @keywords.help $1
561     else
562       unless(helpstr = @plugins.help(topic))
563         helpstr = "no help for topic #{topic}"
564       end
565     end
566     return helpstr
567   end
568
569   # returns a string describing the current status of the bot (uptime etc)
570   def status
571     secs_up = Time.new - @startup_time
572     uptime = Utils.secs_to_string secs_up
573     return "Uptime #{uptime}, #{@plugins.length} plugins active, #{@registry.length} items stored in registry, #{@socket.lines_sent} lines sent, #{@socket.lines_received} received."
574   end
575
576   # we'll ping the server every 30 seconds or so, and expect a response
577   # before the next one come around..
578   def start_server_pings
579     @last_ping = nil
580     # stop existing timers if running
581     unless @ping_timer.nil?
582       @timer.remove @ping_timer
583       @ping_timer = nil
584     end
585     unless @pong_timer.nil?
586       @timer.remove @pong_timer
587       @pong_timer = nil
588     end
589     return unless @config['server.ping_timeout'] > 0
590     # we want to respond to a hung server within 30 secs or so
591     @ping_timer = @timer.add(30) {
592       @last_ping = Time.now
593       @socket.puts "PING :rbot"
594     }
595     @pong_timer = @timer.add(10) {
596       unless @last_ping.nil?
597         diff = Time.now - @last_ping
598         unless diff < @config['server.ping_timeout']
599           debug "no PONG from server for #{diff} seconds, reconnecting"
600           begin
601             @socket.shutdown
602           rescue
603             debug "couldn't shutdown connection (already shutdown?)"
604           end
605           @last_ping = nil
606         end
607       end
608     }
609   end
610
611   private
612
613   # handle help requests for "core" topics
614   def corehelp(topic="")
615     case topic
616       when "quit"
617         return "quit [<message>] => quit IRC with message <message>"
618       when "restart"
619         return "restart => completely stop and restart the bot (including reconnect)"
620       when "join"
621         return "join <channel> [<key>] => join channel <channel> with secret key <key> if specified. #{@nick} also responds to invites if you have the required access level"
622       when "part"
623         return "part <channel> => part channel <channel>"
624       when "hide"
625         return "hide => part all channels"
626       when "save"
627         return "save => save current dynamic data and configuration"
628       when "rescan"
629         return "rescan => reload modules and static facts"
630       when "nick"
631         return "nick <nick> => attempt to change nick to <nick>"
632       when "say"
633         return "say <channel>|<nick> <message> => say <message> to <channel> or in private message to <nick>"
634       when "action"
635         return "action <channel>|<nick> <message> => does a /me <message> to <channel> or in private message to <nick>"
636       when "topic"
637         return "topic <channel> <message> => set topic of <channel> to <message>"
638       when "quiet"
639         return "quiet [in here|<channel>] => with no arguments, stop speaking in all channels, if \"in here\", stop speaking in this channel, or stop speaking in <channel>"
640       when "talk"
641         return "talk [in here|<channel>] => with no arguments, resume speaking in all channels, if \"in here\", resume speaking in this channel, or resume speaking in <channel>"
642       when "version"
643         return "version => describes software version"
644       when "botsnack"
645         return "botsnack => reward #{@nick} for being good"
646       when "hello"
647         return "hello|hi|hey|yo [#{@nick}] => greet the bot"
648       else
649         return "Core help topics: quit, restart, config, join, part, hide, save, rescan, nick, say, action, topic, quiet, talk, version, botsnack, hello"
650     end
651   end
652
653   # handle incoming IRC PRIVMSG +m+
654   def onprivmsg(m)
655     # log it first
656     if(m.action?)
657       if(m.private?)
658         log "* [#{m.sourcenick}(#{m.sourceaddress})] #{m.message}", m.sourcenick
659       else
660         log "* #{m.sourcenick} #{m.message}", m.target
661       end
662     else
663       if(m.public?)
664         log "<#{m.sourcenick}> #{m.message}", m.target
665       else
666         log "[#{m.sourcenick}(#{m.sourceaddress})] #{m.message}", m.sourcenick
667       end
668     end
669
670     # pass it off to plugins that want to hear everything
671     @plugins.delegate "listen", m
672
673     if(m.private? && m.message =~ /^\001PING\s+(.+)\001/)
674       notice m.sourcenick, "\001PING #$1\001"
675       log "@ #{m.sourcenick} pinged me"
676       return
677     end
678
679     if(m.address?)
680       case m.message
681         when (/^join\s+(\S+)\s+(\S+)$/i)
682           join $1, $2 if(@auth.allow?("join", m.source, m.replyto))
683         when (/^join\s+(\S+)$/i)
684           join $1 if(@auth.allow?("join", m.source, m.replyto))
685         when (/^part$/i)
686           part m.target if(m.public? && @auth.allow?("join", m.source, m.replyto))
687         when (/^part\s+(\S+)$/i)
688           part $1 if(@auth.allow?("join", m.source, m.replyto))
689         when (/^quit(?:\s+(.*))?$/i)
690           quit $1 if(@auth.allow?("quit", m.source, m.replyto))
691         when (/^restart(?:\s+(.*))?$/i)
692           restart $1 if(@auth.allow?("quit", m.source, m.replyto))
693         when (/^hide$/i)
694           join 0 if(@auth.allow?("join", m.source, m.replyto))
695         when (/^save$/i)
696           if(@auth.allow?("config", m.source, m.replyto))
697             save
698             m.okay
699           end
700         when (/^nick\s+(\S+)$/i)
701           nickchg($1) if(@auth.allow?("nick", m.source, m.replyto))
702         when (/^say\s+(\S+)\s+(.*)$/i)
703           say $1, $2 if(@auth.allow?("say", m.source, m.replyto))
704         when (/^action\s+(\S+)\s+(.*)$/i)
705           action $1, $2 if(@auth.allow?("say", m.source, m.replyto))
706         when (/^topic\s+(\S+)\s+(.*)$/i)
707           topic $1, $2 if(@auth.allow?("topic", m.source, m.replyto))
708         when (/^mode\s+(\S+)\s+(\S+)\s+(.*)$/i)
709           mode $1, $2, $3 if(@auth.allow?("mode", m.source, m.replyto))
710         when (/^ping$/i)
711           say m.replyto, "pong"
712         when (/^rescan$/i)
713           if(@auth.allow?("config", m.source, m.replyto))
714             m.okay
715             rescan
716           end
717         when (/^quiet$/i)
718           if(auth.allow?("talk", m.source, m.replyto))
719             m.okay
720             @channels.each_value {|c| c.quiet = true }
721           end
722         when (/^quiet in (\S+)$/i)
723           where = $1
724           if(auth.allow?("talk", m.source, m.replyto))
725             m.okay
726             where.gsub!(/^here$/, m.target) if m.public?
727             @channels[where].quiet = true if(@channels.has_key?(where))
728           end
729         when (/^talk$/i)
730           if(auth.allow?("talk", m.source, m.replyto))
731             @channels.each_value {|c| c.quiet = false }
732             m.okay
733           end
734         when (/^talk in (\S+)$/i)
735           where = $1
736           if(auth.allow?("talk", m.source, m.replyto))
737             where.gsub!(/^here$/, m.target) if m.public?
738             @channels[where].quiet = false if(@channels.has_key?(where))
739             m.okay
740           end
741         when (/^status\??$/i)
742           m.reply status if auth.allow?("status", m.source, m.replyto)
743         when (/^registry stats$/i)
744           if auth.allow?("config", m.source, m.replyto)
745             m.reply @registry.stat.inspect
746           end
747         when (/^(help\s+)?config(\s+|$)/)
748           @config.privmsg(m)
749         when (/^(version)|(introduce yourself)$/i)
750           say m.replyto, "I'm a v. #{$version} rubybot, (c) Tom Gilbert - http://linuxbrit.co.uk/rbot/"
751         when (/^help(?:\s+(.*))?$/i)
752           say m.replyto, help($1)
753           #TODO move these to a "chatback" plugin
754         when (/^(botsnack|ciggie)$/i)
755           say m.replyto, @lang.get("thanks_X") % m.sourcenick if(m.public?)
756           say m.replyto, @lang.get("thanks") if(m.private?)
757         when (/^(hello|howdy|hola|salut|bonjour|sup|niihau|hey|hi(\W|$)|yo(\W|$)).*/i)
758           say m.replyto, @lang.get("hello_X") % m.sourcenick if(m.public?)
759           say m.replyto, @lang.get("hello") if(m.private?)
760         else
761           delegate_privmsg(m)
762       end
763     else
764       # stuff to handle when not addressed
765       case m.message
766         when (/^\s*(hello|howdy|hola|salut|bonjour|sup|niihau|hey|hi|yo(\W|$))[\s,-.]+#{Regexp.escape(@nick)}$/i)
767           say m.replyto, @lang.get("hello_X") % m.sourcenick
768         when (/^#{Regexp.escape(@nick)}!*$/)
769           say m.replyto, @lang.get("hello_X") % m.sourcenick
770         else
771           @keywords.privmsg(m)
772       end
773     end
774   end
775
776   # log a message. Internal use only.
777   def log_sent(type, where, message)
778     case type
779       when "NOTICE"
780         if(where =~ /^#/)
781           log "-=#{@nick}=- #{message}", where
782         elsif (where =~ /(\S*)!.*/)
783              log "[-=#{where}=-] #{message}", $1
784         else
785              log "[-=#{where}=-] #{message}"
786         end
787       when "PRIVMSG"
788         if(where =~ /^#/)
789           log "<#{@nick}> #{message}", where
790         elsif (where =~ /^(\S*)!.*$/)
791           log "[msg(#{where})] #{message}", $1
792         else
793           log "[msg(#{where})] #{message}", where
794         end
795     end
796   end
797
798   def onjoin(m)
799     @channels[m.channel] = IRCChannel.new(m.channel) unless(@channels.has_key?(m.channel))
800     if(m.address?)
801       debug "joined channel #{m.channel}"
802       log "@ Joined channel #{m.channel}", m.channel
803     else
804       log "@ #{m.sourcenick} joined channel #{m.channel}", m.channel
805       @channels[m.channel].users[m.sourcenick] = Hash.new
806       @channels[m.channel].users[m.sourcenick]["mode"] = ""
807     end
808
809     @plugins.delegate("listen", m)
810     @plugins.delegate("join", m)
811   end
812
813   def onpart(m)
814     if(m.address?)
815       debug "left channel #{m.channel}"
816       log "@ Left channel #{m.channel} (#{m.message})", m.channel
817       @channels.delete(m.channel)
818     else
819       log "@ #{m.sourcenick} left channel #{m.channel} (#{m.message})", m.channel
820       @channels[m.channel].users.delete(m.sourcenick)
821     end
822     
823     # delegate to plugins
824     @plugins.delegate("listen", m)
825     @plugins.delegate("part", m)
826   end
827
828   # respond to being kicked from a channel
829   def onkick(m)
830     if(m.address?)
831       debug "kicked from channel #{m.channel}"
832       @channels.delete(m.channel)
833       log "@ You have been kicked from #{m.channel} by #{m.sourcenick} (#{m.message})", m.channel
834     else
835       @channels[m.channel].users.delete(m.sourcenick)
836       log "@ #{m.target} has been kicked from #{m.channel} by #{m.sourcenick} (#{m.message})", m.channel
837     end
838
839     @plugins.delegate("listen", m)
840     @plugins.delegate("kick", m)
841   end
842
843   def ontopic(m)
844     @channels[m.channel] = IRCChannel.new(m.channel) unless(@channels.has_key?(m.channel))
845     @channels[m.channel].topic = m.topic if !m.topic.nil?
846     @channels[m.channel].topic.timestamp = m.timestamp if !m.timestamp.nil?
847     @channels[m.channel].topic.by = m.source if !m.source.nil?
848
849           debug "topic of channel #{m.channel} is now #{@channels[m.channel].topic}"
850   end
851
852   # delegate a privmsg to auth, keyword or plugin handlers
853   def delegate_privmsg(message)
854     [@auth, @plugins, @keywords].each {|m|
855       break if m.privmsg(message)
856     }
857   end
858 end
859
860 end