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