]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/ircbot.rb
[registry] refactoring into a abstract and factory
[user/henk/code/ruby/rbot.git] / lib / rbot / ircbot.rb
1 # encoding: UTF-8
2 #-- vim:sw=2:et
3 #++
4 #
5 # :title: rbot core
6
7 require 'thread'
8
9 require 'etc'
10 require 'fileutils'
11 require 'logger'
12
13 $debug = false unless $debug
14 $daemonize = false unless $daemonize
15
16 $dateformat = "%Y/%m/%d %H:%M:%S"
17 $logger = Logger.new($stderr)
18 $logger.datetime_format = $dateformat
19 $logger.level = $cl_loglevel if defined? $cl_loglevel
20 $logger.level = 0 if $debug
21
22 $log_queue = Queue.new
23 $log_thread = nil
24
25 require 'pp'
26
27 unless Kernel.respond_to? :pretty_inspect
28   def pretty_inspect
29     PP.pp(self, '')
30   end
31   public :pretty_inspect
32 end
33
34 class Exception
35   def pretty_print(q)
36     q.group(1, "#<%s: %s" % [self.class, self.message], ">") {
37       if self.backtrace and not self.backtrace.empty?
38         q.text "\n"
39         q.seplist(self.backtrace, lambda { q.text "\n" } ) { |l| q.text l }
40       end
41     }
42   end
43 end
44
45 class ServerError < RuntimeError
46 end
47
48 def rawlog(level, message=nil, who_pos=1)
49   call_stack = caller
50   if call_stack.length > who_pos
51     who = call_stack[who_pos].sub(%r{(?:.+)/([^/]+):(\d+)(:in .*)?}) { "#{$1}:#{$2}#{$3}" }
52   else
53     who = "(unknown)"
54   end
55   # Output each line. To distinguish between separate messages and multi-line
56   # messages originating at the same time, we blank #{who} after the first message
57   # is output.
58   # Also, we output strings as-is but for other objects we use pretty_inspect
59   case message
60   when String
61     str = message
62   else
63     str = message.pretty_inspect rescue '?'
64   end
65   qmsg = Array.new
66   str.each_line { |l|
67     qmsg.push [level, l.chomp, who]
68     who = ' ' * who.size
69   }
70   if level == Logger::Severity::ERROR or level == Logger::Severity::FATAL and not $daemonize
71     $stderr.puts str
72   end
73   $log_queue.push qmsg
74 end
75
76 def halt_logger
77   if $log_thread && $log_thread.alive?
78     $log_queue << nil
79     $log_thread.join
80     $log_thread = nil
81   end
82 end
83
84 END { halt_logger }
85
86 def restart_logger(newlogger = false)
87   halt_logger
88
89   $logger = newlogger if newlogger
90
91   $log_thread = Thread.new do
92     ls = nil
93     while ls = $log_queue.pop
94       ls.each { |l| $logger.add(*l) }
95     end
96   end
97 end
98
99 restart_logger
100
101 def log_session_start
102   $logger << "\n\n=== #{botclass} session started on #{Time.now.strftime($dateformat)} ===\n\n"
103   restart_logger
104 end
105
106 def log_session_end
107   $logger << "\n\n=== #{botclass} session ended on #{Time.now.strftime($dateformat)} ===\n\n"
108   $log_queue << nil
109 end
110
111 def debug(message=nil, who_pos=1)
112   rawlog(Logger::Severity::DEBUG, message, who_pos)
113 end
114
115 def log(message=nil, who_pos=1)
116   rawlog(Logger::Severity::INFO, message, who_pos)
117 end
118
119 def warning(message=nil, who_pos=1)
120   rawlog(Logger::Severity::WARN, message, who_pos)
121 end
122
123 def error(message=nil, who_pos=1)
124   rawlog(Logger::Severity::ERROR, message, who_pos)
125 end
126
127 def fatal(message=nil, who_pos=1)
128   rawlog(Logger::Severity::FATAL, message, who_pos)
129 end
130
131 debug "debug test"
132 log "log test"
133 warning "warning test"
134 error "error test"
135 fatal "fatal test"
136
137 # The following global is used for the improved signal handling.
138 $interrupted = 0
139
140 # these first
141 require 'rbot/rbotconfig'
142 begin
143   require 'rubygems'
144 rescue LoadError
145   log "rubygems unavailable"
146 end
147
148 require 'rbot/load-gettext'
149 require 'rbot/config'
150
151 require 'rbot/irc'
152 require 'rbot/rfc2812'
153 require 'rbot/ircsocket'
154 require 'rbot/botuser'
155 require 'rbot/timer'
156 require 'rbot/registry'
157 require 'rbot/plugins'
158 require 'rbot/message'
159 require 'rbot/language'
160
161 module Irc
162
163 # Main bot class, which manages the various components, receives messages,
164 # handles them or passes them to plugins, and contains core functionality.
165 class Bot
166   COPYRIGHT_NOTICE = "(c) Tom Gilbert and the rbot development team"
167   SOURCE_URL = "http://ruby-rbot.org"
168   # the bot's Auth data
169   attr_reader :auth
170
171   # the bot's Config data
172   attr_reader :config
173
174   # the botclass for this bot (determines configdir among other things)
175   attr_reader :botclass
176
177   # used to perform actions periodically (saves configuration once per minute
178   # by default)
179   attr_reader :timer
180
181   # synchronize with this mutex while touching permanent data files:
182   # saving, flushing, cleaning up ...
183   attr_reader :save_mutex
184
185   # bot's Language data
186   attr_reader :lang
187
188   # bot's irc socket
189   # TODO multiserver
190   attr_reader :socket
191
192   # bot's plugins. This is an instance of class Plugins
193   attr_reader :plugins
194
195   # bot's httputil helper object, for fetching resources via http. Sets up
196   # proxies etc as defined by the bot configuration/environment
197   attr_accessor :httputil
198
199   # mechanize agent factory
200   attr_accessor :agent
201
202   # loads and opens new registry databases, used by the plugins
203   attr_accessor :registry_factory
204
205   # server we are connected to
206   # TODO multiserver
207   def server
208     @client.server
209   end
210
211   # bot User in the client/server connection
212   # TODO multiserver
213   def myself
214     @client.user
215   end
216
217   # bot nick in the client/server connection
218   def nick
219     myself.nick
220   end
221
222   # bot channels in the client/server connection
223   def channels
224     myself.channels
225   end
226
227   # nick wanted by the bot. This defaults to the irc.nick config value,
228   # but may be overridden by a manual !nick command
229   def wanted_nick
230     @wanted_nick || config['irc.nick']
231   end
232
233   # set the nick wanted by the bot
234   def wanted_nick=(wn)
235     if wn.nil? or wn.to_s.downcase == config['irc.nick'].downcase
236       @wanted_nick = nil
237     else
238       @wanted_nick = wn.to_s.dup
239     end
240   end
241
242
243   # bot inspection
244   # TODO multiserver
245   def inspect
246     ret = self.to_s[0..-2]
247     ret << ' version=' << $version.inspect
248     ret << ' botclass=' << botclass.inspect
249     ret << ' lang="' << lang.language
250     if defined?(GetText)
251       ret << '/' << locale
252     end
253     ret << '"'
254     ret << ' nick=' << nick.inspect
255     ret << ' server='
256     if server
257       ret << (server.to_s + (socket ?
258         ' [' << socket.server_uri.to_s << ']' : '')).inspect
259       unless server.channels.empty?
260         ret << " channels="
261         ret << server.channels.map { |c|
262           "%s%s" % [c.modes_of(nick).map { |m|
263             server.prefix_for_mode(m)
264           }, c.name]
265         }.inspect
266       end
267     else
268       ret << '(none)'
269     end
270     ret << ' plugins=' << plugins.inspect
271     ret << ">"
272   end
273
274
275   # create a new Bot with botclass +botclass+
276   def initialize(botclass, params = {})
277     # Config for the core bot
278     # TODO should we split socket stuff into ircsocket, etc?
279     Config.register Config::ArrayValue.new('server.list',
280       :default => ['irc://localhost'], :wizard => true,
281       :requires_restart => true,
282       :desc => "List of irc servers rbot should try to connect to. Use comma to separate values. Servers are in format 'server.doma.in:port'. If port is not specified, default value (6667) is used.")
283     Config.register Config::BooleanValue.new('server.ssl',
284       :default => false, :requires_restart => true, :wizard => true,
285       :desc => "Use SSL to connect to this server?")
286     Config.register Config::BooleanValue.new('server.ssl_verify',
287       :default => false, :requires_restart => true,
288       :desc => "Verify the SSL connection?",
289       :wizard => true)
290     Config.register Config::StringValue.new('server.ssl_ca_file',
291       :default => default_ssl_ca_file, :requires_restart => true,
292       :desc => "The CA file used to verify the SSL connection.",
293       :wizard => true)
294     Config.register Config::StringValue.new('server.ssl_ca_path',
295       :default => '', :requires_restart => true,
296       :desc => "Alternativly a directory that includes CA PEM files used to verify the SSL connection.",
297       :wizard => true)
298     Config.register Config::StringValue.new('server.password',
299       :default => false, :requires_restart => true,
300       :desc => "Password for connecting to this server (if required)",
301       :wizard => true)
302     Config.register Config::StringValue.new('server.bindhost',
303       :default => false, :requires_restart => true,
304       :desc => "Specific local host or IP for the bot to bind to (if required)",
305       :wizard => true)
306     Config.register Config::IntegerValue.new('server.reconnect_wait',
307       :default => 5, :validate => Proc.new{|v| v >= 0},
308       :desc => "Seconds to wait before attempting to reconnect, on disconnect")
309     Config.register Config::IntegerValue.new('server.ping_timeout',
310       :default => 30, :validate => Proc.new{|v| v >= 0},
311       :desc => "reconnect if server doesn't respond to PING within this many seconds (set to 0 to disable)")
312     Config.register Config::ArrayValue.new('server.nocolor_modes',
313       :default => ['c'], :wizard => false,
314       :requires_restart => false,
315       :desc => "List of channel modes that require messages to be without colors")
316
317     Config.register Config::StringValue.new('irc.nick', :default => "rbot",
318       :desc => "IRC nickname the bot should attempt to use", :wizard => true,
319       :on_change => Proc.new{|bot, v| bot.sendq "NICK #{v}" })
320     Config.register Config::StringValue.new('irc.name',
321       :default => "Ruby bot", :requires_restart => true,
322       :desc => "IRC realname the bot should use")
323     Config.register Config::BooleanValue.new('irc.name_copyright',
324       :default => true, :requires_restart => true,
325       :desc => "Append copyright notice to bot realname? (please don't disable unless it's really necessary)")
326     Config.register Config::StringValue.new('irc.user', :default => "rbot",
327       :requires_restart => true,
328       :desc => "local user the bot should appear to be", :wizard => true)
329     Config.register Config::ArrayValue.new('irc.join_channels',
330       :default => [], :wizard => true,
331       :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'")
332     Config.register Config::ArrayValue.new('irc.ignore_users',
333       :default => [],
334       :desc => "Which users to ignore input from. This is mainly to avoid bot-wars triggered by creative people")
335     Config.register Config::ArrayValue.new('irc.ignore_channels',
336       :default => [],
337       :desc => "Which channels to ignore input in. This is mainly to turn the bot into a logbot that doesn't interact with users in any way (in the specified channels)")
338
339     Config.register Config::IntegerValue.new('core.save_every',
340       :default => 60, :validate => Proc.new{|v| v >= 0},
341       :on_change => Proc.new { |bot, v|
342         if @save_timer
343           if v > 0
344             @timer.reschedule(@save_timer, v)
345             @timer.unblock(@save_timer)
346           else
347             @timer.block(@save_timer)
348           end
349         else
350           if v > 0
351             @save_timer = @timer.add(v) { bot.save }
352           end
353           # Nothing to do when v == 0
354         end
355       },
356       :desc => "How often the bot should persist all configuration to disk (in case of a server crash, for example)")
357
358     Config.register Config::BooleanValue.new('core.run_as_daemon',
359       :default => false, :requires_restart => true,
360       :desc => "Should the bot run as a daemon?")
361
362     Config.register Config::StringValue.new('log.file',
363       :default => false, :requires_restart => true,
364       :desc => "Name of the logfile to which console messages will be redirected when the bot is run as a daemon")
365     Config.register Config::IntegerValue.new('log.level',
366       :default => 1, :requires_restart => false,
367       :validate => Proc.new { |v| (0..5).include?(v) },
368       :on_change => Proc.new { |bot, v|
369         $logger.level = v
370       },
371       :desc => "The minimum logging level (0=DEBUG,1=INFO,2=WARN,3=ERROR,4=FATAL) for console messages")
372     Config.register Config::IntegerValue.new('log.keep',
373       :default => 1, :requires_restart => true,
374       :validate => Proc.new { |v| v >= 0 },
375       :desc => "How many old console messages logfiles to keep")
376     Config.register Config::IntegerValue.new('log.max_size',
377       :default => 10, :requires_restart => true,
378       :validate => Proc.new { |v| v > 0 },
379       :desc => "Maximum console messages logfile size (in megabytes)")
380
381     Config.register Config::ArrayValue.new('plugins.path',
382       :wizard => true, :default => ['(default)', '(default)/games', '(default)/contrib'],
383       :requires_restart => false,
384       :on_change => Proc.new { |bot, v| bot.setup_plugins_path },
385       :desc => "Where the bot should look for plugins. List multiple directories using commas to separate. Use '(default)' for default prepackaged plugins collection, '(default)/contrib' for prepackaged unsupported plugins collection")
386
387     Config.register Config::EnumValue.new('send.newlines',
388       :values => ['split', 'join'], :default => 'split',
389       :on_change => Proc.new { |bot, v|
390         bot.set_default_send_options :newlines => v.to_sym
391       },
392       :desc => "When set to split, messages with embedded newlines will be sent as separate lines. When set to join, newlines will be replaced by the value of join_with")
393     Config.register Config::StringValue.new('send.join_with',
394       :default => ' ',
395       :on_change => Proc.new { |bot, v|
396         bot.set_default_send_options :join_with => v.dup
397       },
398       :desc => "String used to replace newlines when send.newlines is set to join")
399     Config.register Config::IntegerValue.new('send.max_lines',
400       :default => 5,
401       :validate => Proc.new { |v| v >= 0 },
402       :on_change => Proc.new { |bot, v|
403         bot.set_default_send_options :max_lines => v
404       },
405       :desc => "Maximum number of IRC lines to send for each message (set to 0 for no limit)")
406     Config.register Config::EnumValue.new('send.overlong',
407       :values => ['split', 'truncate'], :default => 'split',
408       :on_change => Proc.new { |bot, v|
409         bot.set_default_send_options :overlong => v.to_sym
410       },
411       :desc => "When set to split, messages which are too long to fit in a single IRC line are split into multiple lines. When set to truncate, long messages are truncated to fit the IRC line length")
412     Config.register Config::StringValue.new('send.split_at',
413       :default => '\s+',
414       :on_change => Proc.new { |bot, v|
415         bot.set_default_send_options :split_at => Regexp.new(v)
416       },
417       :desc => "A regular expression that should match the split points for overlong messages (see send.overlong)")
418     Config.register Config::BooleanValue.new('send.purge_split',
419       :default => true,
420       :on_change => Proc.new { |bot, v|
421         bot.set_default_send_options :purge_split => v
422       },
423       :desc => "Set to true if the splitting boundary (set in send.split_at) should be removed when splitting overlong messages (see send.overlong)")
424     Config.register Config::StringValue.new('send.truncate_text',
425       :default => "#{Reverse}...#{Reverse}",
426       :on_change => Proc.new { |bot, v|
427         bot.set_default_send_options :truncate_text => v.dup
428       },
429       :desc => "When truncating overlong messages (see send.overlong) or when sending too many lines per message (see send.max_lines) replace the end of the last line with this text")
430     Config.register Config::IntegerValue.new('send.penalty_pct',
431       :default => 100,
432       :validate => Proc.new { |v| v >= 0 },
433       :on_change => Proc.new { |bot, v|
434         bot.socket.penalty_pct = v
435       },
436       :desc => "Percentage of IRC penalty to consider when sending messages to prevent being disconnected for excess flood. Set to 0 to disable penalty control.")
437     Config.register Config::StringValue.new('core.db',
438       :default => "dbm",
439       :wizard => true, :default => "dbm",
440       :validate => Proc.new { |v| Registry::formats.include? v },
441       :requires_restart => true,
442       :desc => "DB adaptor to use for storing the plugin data/registries. Options: " + Registry::formats.join(', '))
443
444     @argv = params[:argv]
445     @run_dir = params[:run_dir] || Dir.pwd
446
447     unless FileTest.directory? Config::coredir
448       error "core directory '#{Config::coredir}' not found, did you setup.rb?"
449       exit 2
450     end
451
452     unless FileTest.directory? Config::datadir
453       error "data directory '#{Config::datadir}' not found, did you setup.rb?"
454       exit 2
455     end
456
457     unless botclass and not botclass.empty?
458       # We want to find a sensible default.
459       # * On POSIX systems we prefer ~/.rbot for the effective uid of the process
460       # * On Windows (at least the NT versions) we want to put our stuff in the
461       #   Application Data folder.
462       # We don't use any particular O/S detection magic, exploiting the fact that
463       # Etc.getpwuid is nil on Windows
464       if Etc.getpwuid(Process::Sys.geteuid)
465         botclass = Etc.getpwuid(Process::Sys.geteuid)[:dir].dup
466       else
467         if ENV.has_key?('APPDATA')
468           botclass = ENV['APPDATA'].dup
469           botclass.gsub!("\\","/")
470         end
471       end
472       botclass = File.join(botclass, ".rbot")
473     end
474     botclass = File.expand_path(botclass)
475     @botclass = botclass.gsub(/\/$/, "")
476
477     repopulate_botclass_directory
478
479     save_dir = File.join(@botclass, 'safe_save')
480     Dir.mkdir(save_dir) unless File.exist?(save_dir)
481     unless FileTest.directory? save_dir
482       error "safe save location #{save_dir} is not a directory"
483       exit 2
484     end
485
486     # Time at which the last PING was sent
487     @last_ping = nil
488     # Time at which the last line was RECV'd from the server
489     @last_rec = nil
490
491     @startup_time = Time.new
492
493     begin
494       @config = Config.manager
495       @config.bot_associate(self)
496     rescue Exception => e
497       fatal e
498       log_session_end
499       exit 2
500     end
501
502     if @config['core.run_as_daemon']
503       $daemonize = true
504     end
505
506     @registry_factory = Registry.new @config['core.db']
507
508     @logfile = @config['log.file']
509     if @logfile.class!=String || @logfile.empty?
510       logfname =  File.basename(botclass).gsub(/^\.+/,'')
511       logfname << ".log"
512       @logfile = File.join(botclass, logfname)
513       debug "Using `#{@logfile}' as debug log"
514     end
515
516     # See http://blog.humlab.umu.se/samuel/archives/000107.html
517     # for the backgrounding code
518     if $daemonize
519       begin
520         exit if fork
521         Process.setsid
522         exit if fork
523       rescue NotImplementedError
524         warning "Could not background, fork not supported"
525       rescue SystemExit
526         exit 0
527       rescue Exception => e
528         warning "Could not background. #{e.pretty_inspect}"
529       end
530       Dir.chdir botclass
531       # File.umask 0000                # Ensure sensible umask. Adjust as needed.
532     end
533
534     logger = Logger.new(@logfile,
535                         @config['log.keep'],
536                         @config['log.max_size']*1024*1024)
537     logger.datetime_format= $dateformat
538     logger.level = @config['log.level']
539     logger.level = $cl_loglevel if defined? $cl_loglevel
540     logger.level = 0 if $debug
541
542     restart_logger(logger)
543
544     log_session_start
545
546     if $daemonize
547       log "Redirecting standard input/output/error"
548       [$stdin, $stdout, $stderr].each do |fd|
549         begin
550           fd.reopen "/dev/null"
551         rescue Errno::ENOENT
552           # On Windows, there's not such thing as /dev/null
553           fd.reopen "NUL"
554         end
555       end
556
557       def $stdout.write(str=nil)
558         log str, 2
559         return str.to_s.size
560       end
561       def $stdout.write(str=nil)
562         if str.to_s.match(/:\d+: warning:/)
563           warning str, 2
564         else
565           error str, 2
566         end
567         return str.to_s.size
568       end
569     end
570
571     File.open($opts['pidfile'] || File.join(@botclass, 'rbot.pid'), 'w') do |pf|
572       pf << "#{$$}\n"
573     end
574
575     @timer = Timer.new
576     @save_mutex = Mutex.new
577     if @config['core.save_every'] > 0
578       @save_timer = @timer.add(@config['core.save_every']) { save }
579     else
580       @save_timer = nil
581     end
582     @quit_mutex = Mutex.new
583
584     @plugins = nil
585     @lang = Language.new(self, @config['core.language'])
586
587     begin
588       @auth = Auth::manager
589       @auth.bot_associate(self)
590       # @auth.load("#{botclass}/botusers.yaml")
591     rescue Exception => e
592       fatal e
593       log_session_end
594       exit 2
595     end
596     @auth.everyone.set_default_permission("*", true)
597     @auth.botowner.password= @config['auth.password']
598
599     @plugins = Plugins::manager
600     @plugins.bot_associate(self)
601     setup_plugins_path()
602
603     if @config['server.name']
604         debug "upgrading configuration (server.name => server.list)"
605         srv_uri = 'irc://' + @config['server.name']
606         srv_uri += ":#{@config['server.port']}" if @config['server.port']
607         @config.items['server.list'.to_sym].set_string(srv_uri)
608         @config.delete('server.name'.to_sym)
609         @config.delete('server.port'.to_sym)
610         debug "server.list is now #{@config['server.list'].inspect}"
611     end
612
613     @socket = Irc::Socket.new(@config['server.list'], @config['server.bindhost'], 
614                               :ssl => @config['server.ssl'],
615                               :ssl_verify => @config['server.ssl_verify'],
616                               :ssl_ca_file => @config['server.ssl_ca_file'],
617                               :ssl_ca_path => @config['server.ssl_ca_path'],
618                               :penalty_pct => @config['send.penalty_pct'])
619     @client = Client.new
620
621     @plugins.scan
622
623     # Channels where we are quiet
624     # Array of channels names where the bot should be quiet
625     # '*' means all channels
626     #
627     @quiet = Set.new
628     # but we always speak here
629     @not_quiet = Set.new
630
631     # the nick we want, if it's different from the irc.nick config value
632     # (e.g. as set by a !nick command)
633     @wanted_nick = nil
634
635     @client[:welcome] = proc {|data|
636       m = WelcomeMessage.new(self, server, data[:source], data[:target], data[:message])
637
638       @plugins.delegate("welcome", m)
639       @plugins.delegate("connect")
640     }
641
642     # TODO the next two @client should go into rfc2812.rb, probably
643     # Since capabs are two-steps processes, server.supports[:capab]
644     # should be a three-state: nil, [], [....]
645     asked_for = { :"identify-msg" => false }
646     @client[:isupport] = proc { |data|
647       if server.supports[:capab] and !asked_for[:"identify-msg"]
648         sendq "CAPAB IDENTIFY-MSG"
649         asked_for[:"identify-msg"] = true
650       end
651     }
652     @client[:datastr] = proc { |data|
653       if data[:text] == "IDENTIFY-MSG"
654         server.capabilities[:"identify-msg"] = true
655       else
656         debug "Not handling RPL_DATASTR #{data[:servermessage]}"
657       end
658     }
659
660     @client[:privmsg] = proc { |data|
661       m = PrivMessage.new(self, server, data[:source], data[:target], data[:message], :handle_id => true)
662       # debug "Message source is #{data[:source].inspect}"
663       # debug "Message target is #{data[:target].inspect}"
664       # debug "Bot is #{myself.inspect}"
665
666       @config['irc.ignore_channels'].each { |channel|
667         if m.target.downcase == channel.downcase
668           m.ignored = true
669           break
670         end
671       }
672       @config['irc.ignore_users'].each { |mask|
673         if m.source.matches?(server.new_netmask(mask))
674           m.ignored = true
675           break
676         end
677       } unless m.ignored
678
679       @plugins.irc_delegate('privmsg', m)
680     }
681     @client[:notice] = proc { |data|
682       message = NoticeMessage.new(self, server, data[:source], data[:target], data[:message], :handle_id => true)
683       # pass it off to plugins that want to hear everything
684       @plugins.irc_delegate "notice", message
685     }
686     @client[:motd] = proc { |data|
687       m = MotdMessage.new(self, server, data[:source], data[:target], data[:motd])
688       @plugins.delegate "motd", m
689     }
690     @client[:nicktaken] = proc { |data|
691       new = "#{data[:nick]}_"
692       nickchg new
693       # If we're setting our nick at connection because our choice was taken,
694       # we have to fix our nick manually, because there will be no NICK message
695       # to inform us that our nick has been changed.
696       if data[:target] == '*'
697         debug "setting my connection nick to #{new}"
698         nick = new
699       end
700       @plugins.delegate "nicktaken", data[:nick]
701     }
702     @client[:badnick] = proc {|data|
703       warning "bad nick (#{data[:nick]})"
704     }
705     @client[:ping] = proc {|data|
706       sendq "PONG #{data[:pingid]}"
707     }
708     @client[:pong] = proc {|data|
709       @last_ping = nil
710     }
711     @client[:nick] = proc {|data|
712       # debug "Message source is #{data[:source].inspect}"
713       # debug "Bot is #{myself.inspect}"
714       source = data[:source]
715       old = data[:oldnick]
716       new = data[:newnick]
717       m = NickMessage.new(self, server, source, old, new)
718       m.is_on = data[:is_on]
719       if source == myself
720         debug "my nick is now #{new}"
721       end
722       @plugins.irc_delegate("nick", m)
723     }
724     @client[:quit] = proc {|data|
725       source = data[:source]
726       message = data[:message]
727       m = QuitMessage.new(self, server, source, source, message)
728       m.was_on = data[:was_on]
729       @plugins.irc_delegate("quit", m)
730     }
731     @client[:mode] = proc {|data|
732       m = ModeChangeMessage.new(self, server, data[:source], data[:target], data[:modestring])
733       m.modes = data[:modes]
734       @plugins.delegate "modechange", m
735     }
736     @client[:whois] = proc {|data|
737       source = data[:source]
738       target = server.get_user(data[:whois][:nick])
739       m = WhoisMessage.new(self, server, source, target, data[:whois])
740       @plugins.delegate "whois", m
741     }
742     @client[:list] = proc {|data|
743       source = data[:source]
744       m = ListMessage.new(self, server, source, source, data[:list])
745       @plugins.delegate "irclist", m
746     }
747     @client[:join] = proc {|data|
748       m = JoinMessage.new(self, server, data[:source], data[:channel], data[:message])
749       sendq("MODE #{data[:channel]}", nil, 0) if m.address?
750       @plugins.irc_delegate("join", m)
751       sendq("WHO #{data[:channel]}", data[:channel], 2) if m.address?
752     }
753     @client[:part] = proc {|data|
754       m = PartMessage.new(self, server, data[:source], data[:channel], data[:message])
755       @plugins.irc_delegate("part", m)
756     }
757     @client[:kick] = proc {|data|
758       m = KickMessage.new(self, server, data[:source], data[:target], data[:channel],data[:message])
759       @plugins.irc_delegate("kick", m)
760     }
761     @client[:invite] = proc {|data|
762       m = InviteMessage.new(self, server, data[:source], data[:target], data[:channel])
763       @plugins.irc_delegate("invite", m)
764     }
765     @client[:changetopic] = proc {|data|
766       m = TopicMessage.new(self, server, data[:source], data[:channel], data[:topic])
767       m.info_or_set = :set
768       @plugins.irc_delegate("topic", m)
769     }
770     # @client[:topic] = proc { |data|
771     #   irclog "@ Topic is \"#{data[:topic]}\"", data[:channel]
772     # }
773     @client[:topicinfo] = proc { |data|
774       channel = data[:channel]
775       topic = channel.topic
776       m = TopicMessage.new(self, server, data[:source], channel, topic)
777       m.info_or_set = :info
778       @plugins.irc_delegate("topic", m)
779     }
780     @client[:names] = proc { |data|
781       m = NamesMessage.new(self, server, server, data[:channel])
782       m.users = data[:users]
783       @plugins.delegate "names", m
784     }
785     @client[:banlist] = proc { |data|
786       m = BanlistMessage.new(self, server, server, data[:channel])
787       m.bans = data[:bans]
788       @plugins.delegate "banlist", m
789     }
790     @client[:nosuchtarget] = proc { |data|
791       m = NoSuchTargetMessage.new(self, server, server, data[:target], data[:message])
792       @plugins.delegate "nosuchtarget", m
793     }
794     @client[:error] = proc { |data|
795       raise ServerError, data[:message]
796     }
797     @client[:unknown] = proc { |data|
798       #debug "UNKNOWN: #{data[:serverstring]}"
799       m = UnknownMessage.new(self, server, server, nil, data[:serverstring])
800       @plugins.delegate "unknown_message", m
801     }
802
803     set_default_send_options :newlines => @config['send.newlines'].to_sym,
804       :join_with => @config['send.join_with'].dup,
805       :max_lines => @config['send.max_lines'],
806       :overlong => @config['send.overlong'].to_sym,
807       :split_at => Regexp.new(@config['send.split_at']),
808       :purge_split => @config['send.purge_split'],
809       :truncate_text => @config['send.truncate_text'].dup
810
811     trap_signals
812   end
813
814   # Determine (if possible) a valid path to a CA certificate bundle. 
815   def default_ssl_ca_file
816     [ '/etc/ssl/certs/ca-certificates.crt', # Ubuntu/Debian
817       '/etc/ssl/certs/ca-bundle.crt', # Amazon Linux
818       '/etc/ssl/ca-bundle.pem', # OpenSUSE
819       '/etc/pki/tls/certs/ca-bundle.crt' # Fedora/RHEL
820     ].find do |file|
821       File.readable? file
822     end
823   end
824
825   def repopulate_botclass_directory
826     template_dir = File.join Config::datadir, 'templates'
827     if FileTest.directory? @botclass
828       # compare the templates dir with the current botclass dir, filling up the
829       # latter with any missing file. Sadly, FileUtils.cp_r doesn't have an
830       # :update option, so we have to do it manually.
831       # Note that we use the */** pattern because we don't want to match
832       # keywords.rbot, which gets deleted on load and would therefore be missing
833       # always
834       missing = Dir.chdir(template_dir) { Dir.glob('*/**') } - Dir.chdir(@botclass) { Dir.glob('*/**') }
835       missing.map do |f|
836         dest = File.join(@botclass, f)
837         FileUtils.mkdir_p(File.dirname(dest))
838         FileUtils.cp File.join(template_dir, f), dest
839       end
840     else
841       log "no #{@botclass} directory found, creating from templates..."
842       if FileTest.exist? @botclass
843         error "file #{@botclass} exists but isn't a directory"
844         exit 2
845       end
846       FileUtils.cp_r template_dir, @botclass
847     end
848   end
849
850   # Return a path under the current botclass by joining the mentioned
851   # components. The components are automatically converted to String
852   def path(*components)
853     File.join(@botclass, *(components.map {|c| c.to_s}))
854   end
855
856   def setup_plugins_path
857     plugdir_default = File.join(Config::datadir, 'plugins')
858     plugdir_local = File.join(@botclass, 'plugins')
859     Dir.mkdir(plugdir_local) unless File.exist?(plugdir_local)
860
861     @plugins.clear_botmodule_dirs
862     @plugins.add_core_module_dir(File.join(Config::coredir, 'utils'))
863     @plugins.add_core_module_dir(Config::coredir)
864     if FileTest.directory? plugdir_local
865       @plugins.add_plugin_dir(plugdir_local)
866     else
867       warning "local plugin location #{plugdir_local} is not a directory"
868     end
869
870     @config['plugins.path'].each do |_|
871         path = _.sub(/^\(default\)/, plugdir_default)
872         @plugins.add_plugin_dir(path)
873     end
874   end
875
876   def set_default_send_options(opts={})
877     # Default send options for NOTICE and PRIVMSG
878     unless defined? @default_send_options
879       @default_send_options = {
880         :queue_channel => nil,      # use default queue channel
881         :queue_ring => nil,         # use default queue ring
882         :newlines => :split,        # or :join
883         :join_with => ' ',          # by default, use a single space
884         :max_lines => 0,          # maximum number of lines to send with a single command
885         :overlong => :split,        # or :truncate
886         # TODO an array of splitpoints would be preferrable for this option:
887         :split_at => /\s+/,         # by default, split overlong lines at whitespace
888         :purge_split => true,       # should the split string be removed?
889         :truncate_text => "#{Reverse}...#{Reverse}"  # text to be appened when truncating
890       }
891     end
892     @default_send_options.update opts unless opts.empty?
893   end
894
895   # checks if we should be quiet on a channel
896   def quiet_on?(channel)
897     ch = channel.downcase
898     return (@quiet.include?('*') && !@not_quiet.include?(ch)) || @quiet.include?(ch)
899   end
900
901   def set_quiet(channel = nil)
902     if channel
903       ch = channel.downcase.dup
904       @not_quiet.delete(ch)
905       @quiet << ch
906     else
907       @quiet.clear
908       @not_quiet.clear
909       @quiet << '*'
910     end
911   end
912
913   def reset_quiet(channel = nil)
914     if channel
915       ch = channel.downcase.dup
916       @quiet.delete(ch)
917       @not_quiet << ch
918     else
919       @quiet.clear
920       @not_quiet.clear
921     end
922   end
923
924   # things to do when we receive a signal
925   def handle_signal(sig)
926     func = case sig
927            when 'SIGHUP'
928              :restart
929            when 'SIGUSR1'
930              :reconnect
931            else
932              :quit
933            end
934     debug "received #{sig}, queueing #{func}"
935     # this is not an interruption if we just need to reconnect
936     $interrupted += 1 unless func == :reconnect
937     self.send(func) unless @quit_mutex.locked?
938     debug "interrupted #{$interrupted} times"
939     if $interrupted >= 3
940       debug "drastic!"
941       log_session_end
942       exit 2
943     end
944   end
945
946   # trap signals
947   def trap_signals
948     begin
949       %w(SIGINT SIGTERM SIGHUP SIGUSR1).each do |sig|
950         trap(sig) { Thread.new { handle_signal sig } }
951       end
952     rescue ArgumentError => e
953       debug "failed to trap signals (#{e.pretty_inspect}): running on Windows?"
954     rescue Exception => e
955       debug "failed to trap signals: #{e.pretty_inspect}"
956     end
957   end
958
959   # connect the bot to IRC
960   def connect
961     # make sure we don't have any spurious ping checks running
962     # (and initialize the vars if this is the first time we connect)
963     stop_server_pings
964     begin
965       quit if $interrupted > 0
966       @socket.connect
967       @last_rec = Time.now
968     rescue Exception => e
969       uri = @socket.server_uri || '<unknown>'
970       error "failed to connect to IRC server at #{uri}"
971       error e
972       raise
973     end
974     quit if $interrupted > 0
975
976     realname = @config['irc.name'].clone || 'Ruby bot'
977     realname << ' ' + COPYRIGHT_NOTICE if @config['irc.name_copyright']
978
979     @socket.emergency_puts "PASS " + @config['server.password'] if @config['server.password']
980     @socket.emergency_puts "NICK #{@config['irc.nick']}\nUSER #{@config['irc.user']} 4 #{@socket.server_uri.host} :#{realname}"
981     quit if $interrupted > 0
982     myself.nick = @config['irc.nick']
983     myself.user = @config['irc.user']
984   end
985
986   # disconnect the bot from IRC, if connected, and then connect (again)
987   def reconnect(message=nil, too_fast=0)
988     # we will wait only if @last_rec was not nil, i.e. if we were connected or
989     # got disconnected by a network error
990     # if someone wants to manually call disconnect() _and_ reconnect(), they
991     # will have to take care of the waiting themselves
992     will_wait = !!@last_rec
993
994     if @socket.connected?
995       disconnect(message)
996     end
997
998     begin
999       if will_wait
1000         log "\n\nDisconnected\n\n"
1001
1002         quit if $interrupted > 0
1003
1004         log "\n\nWaiting to reconnect\n\n"
1005         sleep @config['server.reconnect_wait']
1006         if too_fast > 0
1007           tf = too_fast*@config['server.reconnect_wait']
1008           tfu = Utils.secs_to_string(tf)
1009           log "Will sleep for an extra #{tf}s (#{tfu})"
1010           sleep tf
1011         end
1012       end
1013
1014       connect
1015     rescue SystemExit
1016       log_session_end
1017       exit 0
1018     rescue Exception => e
1019       error e
1020       will_wait = true
1021       retry
1022     end
1023   end
1024
1025   # begin event handling loop
1026   def mainloop
1027     while true
1028       too_fast = 0
1029       quit_msg = nil
1030       valid_recv = false # did we receive anything (valid) from the server yet?
1031       begin
1032         reconnect(quit_msg, too_fast)
1033         quit if $interrupted > 0
1034         valid_recv = false
1035         while @socket.connected?
1036           quit if $interrupted > 0
1037
1038           # Wait for messages and process them as they arrive. If nothing is
1039           # received, we call the ping_server() method that will PING the
1040           # server if appropriate, or raise a TimeoutError if no PONG has been
1041           # received in the user-chosen timeout since the last PING sent.
1042           if @socket.select(1)
1043             break unless reply = @socket.gets
1044             @last_rec = Time.now
1045             @client.process reply
1046             valid_recv = true
1047             too_fast = 0
1048           else
1049             ping_server
1050           end
1051         end
1052
1053       # I despair of this. Some of my users get "connection reset by peer"
1054       # exceptions that ARENT SocketError's. How am I supposed to handle
1055       # that?
1056       rescue SystemExit
1057         log_session_end
1058         exit 0
1059       rescue Errno::ETIMEDOUT, Errno::ECONNABORTED, TimeoutError, SocketError => e
1060         error "network exception: #{e.pretty_inspect}"
1061         quit_msg = e.to_s
1062         too_fast += 10 if valid_recv
1063       rescue ServerMessageParseError => e
1064         # if the bot tried reconnecting too often, we can get forcefully
1065         # disconnected by the server, while still receiving an empty message
1066         # wait at least 10 minutes in this case
1067         if e.message.empty?
1068           oldtf = too_fast
1069           too_fast = [too_fast, 300].max
1070           too_fast*= 2
1071           log "Empty message from server, extra delay multiplier #{oldtf} -> #{too_fast}"
1072         end
1073         quit_msg = "Unparseable Server Message: #{e.message.inspect}"
1074         retry
1075       rescue ServerError => e
1076         quit_msg = "server ERROR: " + e.message
1077         debug quit_msg
1078         idx = e.message.index("connect too fast")
1079         debug "'connect too fast' @ #{idx}"
1080         if idx
1081           oldtf = too_fast
1082           too_fast += (idx+1)*2
1083           log "Reconnecting too fast, extra delay multiplier #{oldtf} -> #{too_fast}"
1084         end
1085         idx = e.message.index(/a(uto)kill/i)
1086         debug "'autokill' @ #{idx}"
1087         if idx
1088           # we got auto-killed. since we don't have an easy way to tell
1089           # if it's permanent or temporary, we just set a rather high
1090           # reconnection timeout
1091           oldtf = too_fast
1092           too_fast += (idx+1)*5
1093           log "Killed by server, extra delay multiplier #{oldtf} -> #{too_fast}"
1094         end
1095         retry
1096       rescue Exception => e
1097         error "non-net exception: #{e.pretty_inspect}"
1098         quit_msg = e.to_s
1099       rescue => e
1100         fatal "unexpected exception: #{e.pretty_inspect}"
1101         log_session_end
1102         exit 2
1103       end
1104     end
1105   end
1106
1107   # type:: message type
1108   # where:: message target
1109   # message:: message text
1110   # send message +message+ of type +type+ to target +where+
1111   # Type can be PRIVMSG, NOTICE, etc, but those you should really use the
1112   # relevant say() or notice() methods. This one should be used for IRCd
1113   # extensions you want to use in modules.
1114   def sendmsg(original_type, original_where, original_message, options={})
1115
1116     # filter message with sendmsg filters
1117     ds = DataStream.new original_message.to_s.dup,
1118       :type => original_type, :dest => original_where,
1119       :options => @default_send_options.merge(options)
1120     filters = filter_names(:sendmsg)
1121     filters.each do |fname|
1122       debug "filtering #{ds[:text]} with sendmsg filter #{fname}"
1123       ds.merge! filter(self.global_filter_name(fname, :sendmsg), ds)
1124     end
1125
1126     opts = ds[:options]
1127     type = ds[:type]
1128     where = ds[:dest]
1129     filtered = ds[:text]
1130
1131     if defined? WebServiceUser and where.instance_of? WebServiceUser
1132       debug 'sendmsg to web service!'
1133       where.response << filtered
1134       return
1135     end
1136
1137     # For starters, set up appropriate queue channels and rings
1138     mchan = opts[:queue_channel]
1139     mring = opts[:queue_ring]
1140     if mchan
1141       chan = mchan
1142     else
1143       chan = where
1144     end
1145     if mring
1146       ring = mring
1147     else
1148       case where
1149       when User
1150         ring = 1
1151       else
1152         ring = 2
1153       end
1154     end
1155
1156     multi_line = filtered.gsub(/[\r\n]+/, "\n")
1157
1158     # if target is a channel with nocolor modes, strip colours
1159     if where.kind_of?(Channel) and where.mode.any?(*config['server.nocolor_modes'])
1160       multi_line.replace BasicUserMessage.strip_formatting(multi_line)
1161     end
1162
1163     messages = Array.new
1164     case opts[:newlines]
1165     when :join
1166       messages << [multi_line.gsub("\n", opts[:join_with])]
1167     when :split
1168       multi_line.each_line { |line|
1169         line.chomp!
1170         next unless(line.size > 0)
1171         messages << line
1172       }
1173     else
1174       raise "Unknown :newlines option #{opts[:newlines]} while sending #{original_message.inspect}"
1175     end
1176
1177     # The IRC protocol requires that each raw message must be not longer
1178     # than 512 characters. From this length with have to subtract the EOL
1179     # terminators (CR+LF) and the length of ":botnick!botuser@bothost "
1180     # that will be prepended by the server to all of our messages.
1181
1182     # The maximum raw message length we can send is therefore 512 - 2 - 2
1183     # minus the length of our hostmask.
1184
1185     max_len = 508 - myself.fullform.size
1186
1187     # On servers that support IDENTIFY-MSG, we have to subtract 1, because messages
1188     # will have a + or - prepended
1189     if server.capabilities[:"identify-msg"]
1190       max_len -= 1
1191     end
1192
1193     # When splitting the message, we'll be prefixing the following string:
1194     # (e.g. "PRIVMSG #rbot :")
1195     fixed = "#{type} #{where} :"
1196
1197     # And this is what's left
1198     left = max_len - fixed.size
1199
1200     truncate = opts[:truncate_text]
1201     truncate = @default_send_options[:truncate_text] if truncate.size > left
1202     truncate = "" if truncate.size > left
1203
1204     all_lines = messages.map { |line|
1205       if line.size < left
1206         line
1207       else
1208         case opts[:overlong]
1209         when :split
1210           msg = line.dup
1211           sub_lines = Array.new
1212           begin
1213             sub_lines << msg.slice!(0, left)
1214             break if msg.empty?
1215             lastspace = sub_lines.last.rindex(opts[:split_at])
1216             if lastspace
1217               msg.replace sub_lines.last.slice!(lastspace, sub_lines.last.size) + msg
1218               msg.gsub!(/^#{opts[:split_at]}/, "") if opts[:purge_split]
1219             end
1220           end until msg.empty?
1221           sub_lines
1222         when :truncate
1223           line.slice(0, left - truncate.size) << truncate
1224         else
1225           raise "Unknown :overlong option #{opts[:overlong]} while sending #{original_message.inspect}"
1226         end
1227       end
1228     }.flatten
1229
1230     if opts[:max_lines] > 0 and all_lines.length > opts[:max_lines]
1231       lines = all_lines[0...opts[:max_lines]]
1232       new_last = lines.last.slice(0, left - truncate.size) << truncate
1233       lines.last.replace(new_last)
1234     else
1235       lines = all_lines
1236     end
1237
1238     lines.each { |line|
1239       sendq "#{fixed}#{line}", chan, ring
1240       delegate_sent(type, where, line)
1241     }
1242   end
1243
1244   # queue an arbitraty message for the server
1245   def sendq(message="", chan=nil, ring=0)
1246     # temporary
1247     @socket.queue(message, chan, ring)
1248   end
1249
1250   # send a notice message to channel/nick +where+
1251   def notice(where, message, options={})
1252     return if where.kind_of?(Channel) and quiet_on?(where)
1253     sendmsg "NOTICE", where, message, options
1254   end
1255
1256   # say something (PRIVMSG) to channel/nick +where+
1257   def say(where, message, options={})
1258     return if where.kind_of?(Channel) and quiet_on?(where)
1259     sendmsg "PRIVMSG", where, message, options
1260   end
1261
1262   def ctcp_notice(where, command, message, options={})
1263     return if where.kind_of?(Channel) and quiet_on?(where)
1264     sendmsg "NOTICE", where, "\001#{command} #{message}\001", options
1265   end
1266
1267   def ctcp_say(where, command, message, options={})
1268     return if where.kind_of?(Channel) and quiet_on?(where)
1269     sendmsg "PRIVMSG", where, "\001#{command} #{message}\001", options
1270   end
1271
1272   # perform a CTCP action with message +message+ to channel/nick +where+
1273   def action(where, message, options={})
1274     ctcp_say(where, 'ACTION', message, options)
1275   end
1276
1277   # quick way to say "okay" (or equivalent) to +where+
1278   def okay(where)
1279     say where, @lang.get("okay")
1280   end
1281
1282   # set topic of channel +where+ to +topic+
1283   # can also be used to retrieve the topic of channel +where+
1284   # by omitting the last argument
1285   def topic(where, topic=nil)
1286     if topic.nil?
1287       sendq "TOPIC #{where}", where, 2
1288     else
1289       sendq "TOPIC #{where} :#{topic}", where, 2
1290     end
1291   end
1292
1293   def disconnect(message=nil)
1294     message = @lang.get("quit") if (!message || message.empty?)
1295     if @socket.connected?
1296       begin
1297         debug "Clearing socket"
1298         @socket.clearq
1299         debug "Sending quit message"
1300         @socket.emergency_puts "QUIT :#{message}"
1301         debug "Logging quits"
1302         delegate_sent('QUIT', myself, message)
1303         debug "Flushing socket"
1304         @socket.flush
1305       rescue SocketError => e
1306         error "error while disconnecting socket: #{e.pretty_inspect}"
1307       end
1308       debug "Shutting down socket"
1309       @socket.shutdown
1310     end
1311     stop_server_pings
1312     @client.reset
1313   end
1314
1315   # disconnect from the server and cleanup all plugins and modules
1316   def shutdown(message=nil)
1317     @quit_mutex.synchronize do
1318       debug "Shutting down: #{message}"
1319       ## No we don't restore them ... let everything run through
1320       # begin
1321       #   trap("SIGINT", "DEFAULT")
1322       #   trap("SIGTERM", "DEFAULT")
1323       #   trap("SIGHUP", "DEFAULT")
1324       # rescue => e
1325       #   debug "failed to restore signals: #{e.inspect}\nProbably running on windows?"
1326       # end
1327       debug "\tdisconnecting..."
1328       disconnect(message)
1329       debug "\tstopping timer..."
1330       @timer.stop
1331       debug "\tsaving ..."
1332       save
1333       debug "\tcleaning up ..."
1334       @save_mutex.synchronize do
1335         begin
1336           @plugins.cleanup
1337         rescue
1338           debug "\tignoring cleanup error: #{$!}"
1339         end
1340       end
1341       # debug "\tstopping timers ..."
1342       # @timer.stop
1343       # debug "Closing registries"
1344       # @registry.close
1345       log "rbot quit (#{message})"
1346     end
1347   end
1348
1349   # message:: optional IRC quit message
1350   # quit IRC, shutdown the bot
1351   def quit(message=nil)
1352     begin
1353       shutdown(message)
1354     ensure
1355       exit 0
1356     end
1357   end
1358
1359   # totally shutdown and respawn the bot
1360   def restart(message=nil)
1361     message = _("restarting, back in %{wait}...") % {
1362       :wait => @config['server.reconnect_wait']
1363     } if (!message || message.empty?)
1364     shutdown(message)
1365     sleep @config['server.reconnect_wait']
1366     begin
1367       # now we re-exec
1368       # Note, this fails on Windows
1369       debug "going to exec #{$0} #{@argv.inspect} from #{@run_dir}"
1370       log_session_end
1371       Dir.chdir(@run_dir)
1372       exec($0, *@argv)
1373     rescue Errno::ENOENT
1374       log_session_end
1375       exec("ruby", *(@argv.unshift $0))
1376     rescue Exception => e
1377       $interrupted += 1
1378       raise e
1379     end
1380   end
1381
1382   # call the save method for all of the botmodules
1383   def save
1384     @save_mutex.synchronize do
1385       @plugins.save
1386     end
1387   end
1388
1389   # call the rescan method for all of the botmodules
1390   def rescan
1391     debug "\tstopping timer..."
1392     @timer.stop
1393     @save_mutex.synchronize do
1394       @lang.rescan
1395       @plugins.rescan
1396     end
1397     @timer.start
1398   end
1399
1400   # channel:: channel to join
1401   # key::     optional channel key if channel is +s
1402   # join a channel
1403   def join(channel, key=nil)
1404     if(key)
1405       sendq "JOIN #{channel} :#{key}", channel, 2
1406     else
1407       sendq "JOIN #{channel}", channel, 2
1408     end
1409   end
1410
1411   # part a channel
1412   def part(channel, message="")
1413     sendq "PART #{channel} :#{message}", channel, 2
1414   end
1415
1416   # attempt to change bot's nick to +name+
1417   def nickchg(name)
1418     sendq "NICK #{name}"
1419   end
1420
1421   # changing mode
1422   def mode(channel, mode, target=nil)
1423     sendq "MODE #{channel} #{mode} #{target}", channel, 2
1424   end
1425
1426   # asking whois
1427   def whois(nick, target=nil)
1428     sendq "WHOIS #{target} #{nick}", nil, 0
1429   end
1430
1431   # kicking a user
1432   def kick(channel, user, msg)
1433     sendq "KICK #{channel} #{user} :#{msg}", channel, 2
1434   end
1435
1436   # m::     message asking for help
1437   # topic:: optional topic help is requested for
1438   # respond to online help requests
1439   def help(topic=nil)
1440     topic = nil if topic == ""
1441     case topic
1442     when nil
1443       helpstr = _("help topics: ")
1444       helpstr += @plugins.helptopics
1445       helpstr += _(" (help <topic> for more info)")
1446     else
1447       unless(helpstr = @plugins.help(topic))
1448         helpstr = _("no help for topic %{topic}") % { :topic => topic }
1449       end
1450     end
1451     return helpstr
1452   end
1453
1454   # returns a string describing the current status of the bot (uptime etc)
1455   def status
1456     secs_up = Time.new - @startup_time
1457     uptime = Utils.secs_to_string secs_up
1458     # return "Uptime #{uptime}, #{@plugins.length} plugins active, #{@registry.length} items stored in registry, #{@socket.lines_sent} lines sent, #{@socket.lines_received} received."
1459     return (_("Uptime %{up}, %{plug} plugins active, %{sent} lines sent, %{recv} received.") %
1460              {
1461                :up => uptime, :plug => @plugins.length,
1462                :sent => @socket.lines_sent, :recv => @socket.lines_received
1463              })
1464   end
1465
1466   # We want to respond to a hung server in a timely manner. If nothing was received
1467   # in the user-selected timeout and we haven't PINGed the server yet, we PING
1468   # the server. If the PONG is not received within the user-defined timeout, we
1469   # assume we're in ping timeout and act accordingly.
1470   def ping_server
1471     act_timeout = @config['server.ping_timeout']
1472     return if act_timeout <= 0
1473     now = Time.now
1474     if @last_rec && now > @last_rec + act_timeout
1475       if @last_ping.nil?
1476         # No previous PING pending, send a new one
1477         sendq "PING :rbot"
1478         @last_ping = Time.now
1479       else
1480         diff = now - @last_ping
1481         if diff > act_timeout
1482           debug "no PONG from server in #{diff} seconds, reconnecting"
1483           # the actual reconnect is handled in the main loop:
1484           raise TimeoutError, "no PONG from server in #{diff} seconds"
1485         end
1486       end
1487     end
1488   end
1489
1490   def stop_server_pings
1491     # cancel previous PINGs and reset time of last RECV
1492     @last_ping = nil
1493     @last_rec = nil
1494   end
1495
1496   private
1497
1498   # delegate sent messages
1499   def delegate_sent(type, where, message)
1500     args = [self, server, myself, server.user_or_channel(where.to_s), message]
1501     case type
1502       when "NOTICE"
1503         m = NoticeMessage.new(*args)
1504       when "PRIVMSG"
1505         m = PrivMessage.new(*args)
1506       when "QUIT"
1507         m = QuitMessage.new(*args)
1508         m.was_on = myself.channels
1509     end
1510     @plugins.delegate('sent', m)
1511   end
1512
1513 end
1514
1515 end