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