12 $debug = false unless $debug
13 $daemonize = false unless $daemonize
15 $dateformat = "%Y/%m/%d %H:%M:%S"
16 $logger = Logger.new($stderr)
17 $logger.datetime_format = $dateformat
18 $logger.level = $cl_loglevel if defined? $cl_loglevel
19 $logger.level = 0 if $debug
23 unless Kernel.instance_methods.include?("pretty_inspect")
27 public :pretty_inspect
32 q.group(1, "#<%s: %s" % [self.class, self.message], ">") {
33 if self.backtrace and not self.backtrace.empty?
35 q.seplist(self.backtrace, lambda { q.text "\n" } ) { |l| q.text l }
41 def rawlog(level, message=nil, who_pos=1)
43 if call_stack.length > who_pos
44 who = call_stack[who_pos].sub(%r{(?:.+)/([^/]+):(\d+)(:in .*)?}) { "#{$1}:#{$2}#{$3}" }
48 # Output each line. To distinguish between separate messages and multi-line
49 # messages originating at the same time, we blank #{who} after the first message
51 # Also, we output strings as-is but for other objects we use pretty_inspect
56 str = message.pretty_inspect
59 $logger.add(level, l.chomp, who)
65 $logger << "\n\n=== #{botclass} session started on #{Time.now.strftime($dateformat)} ===\n\n"
69 $logger << "\n\n=== #{botclass} session ended on #{Time.now.strftime($dateformat)} ===\n\n"
72 def debug(message=nil, who_pos=1)
73 rawlog(Logger::Severity::DEBUG, message, who_pos)
76 def log(message=nil, who_pos=1)
77 rawlog(Logger::Severity::INFO, message, who_pos)
80 def warning(message=nil, who_pos=1)
81 rawlog(Logger::Severity::WARN, message, who_pos)
84 def error(message=nil, who_pos=1)
85 rawlog(Logger::Severity::ERROR, message, who_pos)
88 def fatal(message=nil, who_pos=1)
89 rawlog(Logger::Severity::FATAL, message, who_pos)
94 warning "warning test"
98 # The following global is used for the improved signal handling.
102 require 'rbot/rbotconfig'
103 require 'rbot/load-gettext'
104 require 'rbot/config'
105 require 'rbot/config-compat'
108 require 'rbot/rfc2812'
109 require 'rbot/ircsocket'
110 require 'rbot/botuser'
112 require 'rbot/plugins'
113 require 'rbot/message'
114 require 'rbot/language'
115 require 'rbot/dbhash'
116 require 'rbot/registry'
120 # Main bot class, which manages the various components, receives messages,
121 # handles them or passes them to plugins, and contains core functionality.
123 COPYRIGHT_NOTICE = "(c) Tom Gilbert and the rbot development team"
124 SOURCE_URL = "http://ruby-rbot.org"
125 # the bot's Auth data
128 # the bot's Config data
131 # the botclass for this bot (determines configdir among other things)
132 attr_reader :botclass
134 # used to perform actions periodically (saves configuration once per minute
138 # synchronize with this mutex while touching permanent data files:
139 # saving, flushing, cleaning up ...
140 attr_reader :save_mutex
142 # bot's Language data
149 # bot's object registry, plugins get an interface to this for persistant
150 # storage (hash interface tied to a bdb file, plugins use Accessors to store
151 # and restore objects in their own namespaces.)
152 attr_reader :registry
154 # bot's plugins. This is an instance of class Plugins
157 # bot's httputil help object, for fetching resources via http. Sets up
158 # proxies etc as defined by the bot configuration/environment
159 attr_accessor :httputil
161 # server we are connected to
167 # bot User in the client/server connection
173 # bot User in the client/server connection
181 ret = self.to_s[0..-2]
182 ret << ' version=' << $version.inspect
183 ret << ' botclass=' << botclass.inspect
184 ret << ' lang="' << lang.language
189 ret << ' nick=' << nick.inspect
192 ret << (server.to_s + (socket ?
193 ' [' << socket.server_uri.to_s << ']' : '')).inspect
194 unless server.channels.empty?
196 ret << server.channels.map { |c|
197 "%s%s" % [c.modes_of(nick).map { |m|
198 server.prefix_for_mode(m)
205 ret << ' plugins=' << plugins.inspect
210 # create a new Bot with botclass +botclass+
211 def initialize(botclass, params = {})
212 # Config for the core bot
213 # TODO should we split socket stuff into ircsocket, etc?
214 Config.register Config::ArrayValue.new('server.list',
215 :default => ['irc://localhost'], :wizard => true,
216 :requires_restart => true,
217 :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.")
218 Config.register Config::BooleanValue.new('server.ssl',
219 :default => false, :requires_restart => true, :wizard => true,
220 :desc => "Use SSL to connect to this server?")
221 Config.register Config::StringValue.new('server.password',
222 :default => false, :requires_restart => true,
223 :desc => "Password for connecting to this server (if required)",
225 Config.register Config::StringValue.new('server.bindhost',
226 :default => false, :requires_restart => true,
227 :desc => "Specific local host or IP for the bot to bind to (if required)",
229 Config.register Config::IntegerValue.new('server.reconnect_wait',
230 :default => 5, :validate => Proc.new{|v| v >= 0},
231 :desc => "Seconds to wait before attempting to reconnect, on disconnect")
232 Config.register Config::FloatValue.new('server.sendq_delay',
233 :default => 2.0, :validate => Proc.new{|v| v >= 0},
234 :desc => "(flood prevention) the delay between sending messages to the server (in seconds)",
235 :on_change => Proc.new {|bot, v| bot.socket.sendq_delay = v })
236 Config.register Config::IntegerValue.new('server.sendq_burst',
237 :default => 4, :validate => Proc.new{|v| v >= 0},
238 :desc => "(flood prevention) max lines to burst to the server before throttling. Most ircd's allow bursts of up 5 lines",
239 :on_change => Proc.new {|bot, v| bot.socket.sendq_burst = v })
240 Config.register Config::IntegerValue.new('server.ping_timeout',
241 :default => 30, :validate => Proc.new{|v| v >= 0},
242 :desc => "reconnect if server doesn't respond to PING within this many seconds (set to 0 to disable)")
244 Config.register Config::StringValue.new('irc.nick', :default => "rbot",
245 :desc => "IRC nickname the bot should attempt to use", :wizard => true,
246 :on_change => Proc.new{|bot, v| bot.sendq "NICK #{v}" })
247 Config.register Config::StringValue.new('irc.name',
248 :default => "Ruby bot", :requires_restart => true,
249 :desc => "IRC realname the bot should use")
250 Config.register Config::BooleanValue.new('irc.name_copyright',
251 :default => true, :requires_restart => true,
252 :desc => "Append copyright notice to bot realname? (please don't disable unless it's really necessary)")
253 Config.register Config::StringValue.new('irc.user', :default => "rbot",
254 :requires_restart => true,
255 :desc => "local user the bot should appear to be", :wizard => true)
256 Config.register Config::ArrayValue.new('irc.join_channels',
257 :default => [], :wizard => true,
258 :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'")
259 Config.register Config::ArrayValue.new('irc.ignore_users',
261 :desc => "Which users to ignore input from. This is mainly to avoid bot-wars triggered by creative people")
263 Config.register Config::IntegerValue.new('core.save_every',
264 :default => 60, :validate => Proc.new{|v| v >= 0},
265 :on_change => Proc.new { |bot, v|
268 @timer.reschedule(@save_timer, v)
269 @timer.unblock(@save_timer)
271 @timer.block(@save_timer)
275 @save_timer = @timer.add(v) { bot.save }
277 # Nothing to do when v == 0
280 :desc => "How often the bot should persist all configuration to disk (in case of a server crash, for example)")
282 Config.register Config::BooleanValue.new('core.run_as_daemon',
283 :default => false, :requires_restart => true,
284 :desc => "Should the bot run as a daemon?")
286 Config.register Config::StringValue.new('log.file',
287 :default => false, :requires_restart => true,
288 :desc => "Name of the logfile to which console messages will be redirected when the bot is run as a daemon")
289 Config.register Config::IntegerValue.new('log.level',
290 :default => 1, :requires_restart => false,
291 :validate => Proc.new { |v| (0..5).include?(v) },
292 :on_change => Proc.new { |bot, v|
295 :desc => "The minimum logging level (0=DEBUG,1=INFO,2=WARN,3=ERROR,4=FATAL) for console messages")
296 Config.register Config::IntegerValue.new('log.keep',
297 :default => 1, :requires_restart => true,
298 :validate => Proc.new { |v| v >= 0 },
299 :desc => "How many old console messages logfiles to keep")
300 Config.register Config::IntegerValue.new('log.max_size',
301 :default => 10, :requires_restart => true,
302 :validate => Proc.new { |v| v > 0 },
303 :desc => "Maximum console messages logfile size (in megabytes)")
305 Config.register Config::ArrayValue.new('plugins.path',
306 :wizard => true, :default => ['(default)', '(default)/games', '(default)/contrib'],
307 :requires_restart => false,
308 :on_change => Proc.new { |bot, v| bot.setup_plugins_path },
309 :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")
311 Config.register Config::EnumValue.new('send.newlines',
312 :values => ['split', 'join'], :default => 'split',
313 :on_change => Proc.new { |bot, v|
314 bot.set_default_send_options :newlines => v.to_sym
316 :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")
317 Config.register Config::StringValue.new('send.join_with',
319 :on_change => Proc.new { |bot, v|
320 bot.set_default_send_options :join_with => v.dup
322 :desc => "String used to replace newlines when send.newlines is set to join")
323 Config.register Config::IntegerValue.new('send.max_lines',
325 :validate => Proc.new { |v| v >= 0 },
326 :on_change => Proc.new { |bot, v|
327 bot.set_default_send_options :max_lines => v
329 :desc => "Maximum number of IRC lines to send for each message (set to 0 for no limit)")
330 Config.register Config::EnumValue.new('send.overlong',
331 :values => ['split', 'truncate'], :default => 'split',
332 :on_change => Proc.new { |bot, v|
333 bot.set_default_send_options :overlong => v.to_sym
335 :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")
336 Config.register Config::StringValue.new('send.split_at',
338 :on_change => Proc.new { |bot, v|
339 bot.set_default_send_options :split_at => Regexp.new(v)
341 :desc => "A regular expression that should match the split points for overlong messages (see send.overlong)")
342 Config.register Config::BooleanValue.new('send.purge_split',
344 :on_change => Proc.new { |bot, v|
345 bot.set_default_send_options :purge_split => v
347 :desc => "Set to true if the splitting boundary (set in send.split_at) should be removed when splitting overlong messages (see send.overlong)")
348 Config.register Config::StringValue.new('send.truncate_text',
349 :default => "#{Reverse}...#{Reverse}",
350 :on_change => Proc.new { |bot, v|
351 bot.set_default_send_options :truncate_text => v.dup
353 :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")
355 @argv = params[:argv]
356 @run_dir = params[:run_dir] || Dir.pwd
358 unless FileTest.directory? Config::coredir
359 error "core directory '#{Config::coredir}' not found, did you setup.rb?"
363 unless FileTest.directory? Config::datadir
364 error "data directory '#{Config::datadir}' not found, did you setup.rb?"
368 unless botclass and not botclass.empty?
369 # We want to find a sensible default.
370 # * On POSIX systems we prefer ~/.rbot for the effective uid of the process
371 # * On Windows (at least the NT versions) we want to put our stuff in the
372 # Application Data folder.
373 # We don't use any particular O/S detection magic, exploiting the fact that
374 # Etc.getpwuid is nil on Windows
375 if Etc.getpwuid(Process::Sys.geteuid)
376 botclass = Etc.getpwuid(Process::Sys.geteuid)[:dir].dup
378 if ENV.has_key?('APPDATA')
379 botclass = ENV['APPDATA'].dup
380 botclass.gsub!("\\","/")
385 botclass = File.expand_path(botclass)
386 @botclass = botclass.gsub(/\/$/, "")
388 unless FileTest.directory? botclass
389 log "no #{botclass} directory found, creating from templates.."
390 if FileTest.exist? botclass
391 error "file #{botclass} exists but isn't a directory"
394 FileUtils.cp_r Config::datadir+'/templates', botclass
397 Dir.mkdir("#{botclass}/registry") unless File.exist?("#{botclass}/registry")
398 Dir.mkdir("#{botclass}/safe_save") unless File.exist?("#{botclass}/safe_save")
400 # Time at which the last PING was sent
402 # Time at which the last line was RECV'd from the server
405 @startup_time = Time.new
408 @config = Config.manager
409 @config.bot_associate(self)
410 rescue Exception => e
416 if @config['core.run_as_daemon']
420 @logfile = @config['log.file']
421 if @logfile.class!=String || @logfile.empty?
422 @logfile = "#{botclass}/#{File.basename(botclass).gsub(/^\.+/,'')}.log"
425 # See http://blog.humlab.umu.se/samuel/archives/000107.html
426 # for the backgrounding code
432 rescue NotImplementedError
433 warning "Could not background, fork not supported"
436 rescue Exception => e
437 warning "Could not background. #{e.pretty_inspect}"
440 # File.umask 0000 # Ensure sensible umask. Adjust as needed.
441 log "Redirecting standard input/output/error"
443 STDIN.reopen "/dev/null"
445 # On Windows, there's not such thing as /dev/null
448 def STDOUT.write(str=nil)
452 def STDERR.write(str=nil)
453 if str.to_s.match(/:\d+: warning:/)
462 # Set the new logfile and loglevel. This must be done after the daemonizing
463 $logger = Logger.new(@logfile, @config['log.keep'], @config['log.max_size']*1024*1024)
464 $logger.datetime_format= $dateformat
465 $logger.level = @config['log.level']
466 $logger.level = $cl_loglevel if defined? $cl_loglevel
467 $logger.level = 0 if $debug
471 File.open($opts['pidfile'] || "#{@botclass}/rbot.pid", 'w') do |pf|
475 @registry = Registry.new self
478 @save_mutex = Mutex.new
479 if @config['core.save_every'] > 0
480 @save_timer = @timer.add(@config['core.save_every']) { save }
484 @quit_mutex = Mutex.new
487 @lang = Language.new(self, @config['core.language'])
490 @auth = Auth::manager
491 @auth.bot_associate(self)
492 # @auth.load("#{botclass}/botusers.yaml")
493 rescue Exception => e
498 @auth.everyone.set_default_permission("*", true)
499 @auth.botowner.password= @config['auth.password']
501 Dir.mkdir("#{botclass}/plugins") unless File.exist?("#{botclass}/plugins")
502 @plugins = Plugins::manager
503 @plugins.bot_associate(self)
506 if @config['server.name']
507 debug "upgrading configuration (server.name => server.list)"
508 srv_uri = 'irc://' + @config['server.name']
509 srv_uri += ":#{@config['server.port']}" if @config['server.port']
510 @config.items['server.list'.to_sym].set_string(srv_uri)
511 @config.delete('server.name'.to_sym)
512 @config.delete('server.port'.to_sym)
513 debug "server.list is now #{@config['server.list'].inspect}"
516 @socket = Irc::Socket.new(@config['server.list'], @config['server.bindhost'], @config['server.sendq_delay'], @config['server.sendq_burst'], :ssl => @config['server.ssl'])
521 # Channels where we are quiet
522 # Array of channels names where the bot should be quiet
523 # '*' means all channels
527 @client[:welcome] = proc {|data|
528 m = WelcomeMessage.new(self, server, data[:source], data[:target], data[:message])
530 @plugins.delegate("welcome", m)
531 @plugins.delegate("connect")
533 @config['irc.join_channels'].each { |c|
534 debug "autojoining channel #{c}"
535 if(c =~ /^(\S+)\s+(\S+)$/i)
543 # TODO the next two @client should go into rfc2812.rb, probably
544 # Since capabs are two-steps processes, server.supports[:capab]
545 # should be a three-state: nil, [], [....]
546 asked_for = { :"identify-msg" => false }
547 @client[:isupport] = proc { |data|
548 if server.supports[:capab] and !asked_for[:"identify-msg"]
549 sendq "CAPAB IDENTIFY-MSG"
550 asked_for[:"identify-msg"] = true
553 @client[:datastr] = proc { |data|
554 if data[:text] == "IDENTIFY-MSG"
555 server.capabilities[:"identify-msg"] = true
557 debug "Not handling RPL_DATASTR #{data[:servermessage]}"
561 @client[:privmsg] = proc { |data|
562 m = PrivMessage.new(self, server, data[:source], data[:target], data[:message])
563 # debug "Message source is #{data[:source].inspect}"
564 # debug "Message target is #{data[:target].inspect}"
565 # debug "Bot is #{myself.inspect}"
567 @config['irc.ignore_users'].each { |mask|
568 if m.source.matches?(server.new_netmask(mask))
573 @plugins.irc_delegate('privmsg', m)
575 @client[:notice] = proc { |data|
576 message = NoticeMessage.new(self, server, data[:source], data[:target], data[:message])
577 # pass it off to plugins that want to hear everything
578 @plugins.irc_delegate "notice", message
580 @client[:motd] = proc { |data|
581 m = MotdMessage.new(self, server, data[:source], data[:target], data[:motd])
582 @plugins.delegate "motd", m
584 @client[:nicktaken] = proc { |data|
585 new = "#{data[:nick]}_"
587 # If we're setting our nick at connection because our choice was taken,
588 # we have to fix our nick manually, because there will be no NICK message
589 # to inform us that our nick has been changed.
590 if data[:target] == '*'
591 debug "setting my connection nick to #{new}"
594 @plugins.delegate "nicktaken", data[:nick]
596 @client[:badnick] = proc {|data|
597 warning "bad nick (#{data[:nick]})"
599 @client[:ping] = proc {|data|
600 sendq "PONG #{data[:pingid]}"
602 @client[:pong] = proc {|data|
605 @client[:nick] = proc {|data|
606 # debug "Message source is #{data[:source].inspect}"
607 # debug "Bot is #{myself.inspect}"
608 source = data[:source]
611 m = NickMessage.new(self, server, source, old, new)
612 m.is_on = data[:is_on]
614 debug "my nick is now #{new}"
616 @plugins.irc_delegate("nick", m)
618 @client[:quit] = proc {|data|
619 source = data[:source]
620 message = data[:message]
621 m = QuitMessage.new(self, server, source, source, message)
622 m.was_on = data[:was_on]
623 @plugins.irc_delegate("quit", m)
625 @client[:mode] = proc {|data|
626 m = ModeChangeMessage.new(self, server, data[:source], data[:target], data[:modestring])
627 m.modes = data[:modes]
628 @plugins.delegate "modechange", m
630 @client[:join] = proc {|data|
631 m = JoinMessage.new(self, server, data[:source], data[:channel], data[:message])
632 @plugins.irc_delegate("join", m)
633 sendq("WHO #{data[:channel]}", data[:channel], 2) if m.address?
635 @client[:part] = proc {|data|
636 m = PartMessage.new(self, server, data[:source], data[:channel], data[:message])
637 @plugins.irc_delegate("part", m)
639 @client[:kick] = proc {|data|
640 m = KickMessage.new(self, server, data[:source], data[:target], data[:channel],data[:message])
641 @plugins.irc_delegate("kick", m)
643 @client[:invite] = proc {|data|
644 m = InviteMessage.new(self, server, data[:source], data[:target], data[:channel])
645 @plugins.irc_delegate("invite", m)
647 @client[:changetopic] = proc {|data|
648 m = TopicMessage.new(self, server, data[:source], data[:channel], data[:topic])
650 @plugins.irc_delegate("topic", m)
652 # @client[:topic] = proc { |data|
653 # irclog "@ Topic is \"#{data[:topic]}\"", data[:channel]
655 @client[:topicinfo] = proc { |data|
656 channel = data[:channel]
657 topic = channel.topic
658 m = TopicMessage.new(self, server, data[:source], channel, topic)
659 m.info_or_set = :info
660 @plugins.irc_delegate("topic", m)
662 @client[:names] = proc { |data|
663 m = NamesMessage.new(self, server, server, data[:channel])
664 m.users = data[:users]
665 @plugins.delegate "names", m
667 @client[:unknown] = proc { |data|
668 #debug "UNKNOWN: #{data[:serverstring]}"
669 m = UnknownMessage.new(self, server, server, nil, data[:serverstring])
670 @plugins.delegate "unknown_message", m
673 set_default_send_options :newlines => @config['send.newlines'].to_sym,
674 :join_with => @config['send.join_with'].dup,
675 :max_lines => @config['send.max_lines'],
676 :overlong => @config['send.overlong'].to_sym,
677 :split_at => Regexp.new(@config['send.split_at']),
678 :purge_split => @config['send.purge_split'],
679 :truncate_text => @config['send.truncate_text'].dup
682 def setup_plugins_path
683 @plugins.clear_botmodule_dirs
684 @plugins.add_botmodule_dir(Config::coredir + "/utils")
685 @plugins.add_botmodule_dir(Config::coredir)
686 @plugins.add_botmodule_dir("#{botclass}/plugins")
688 @config['plugins.path'].each do |_|
689 path = _.sub(/^\(default\)/, Config::datadir + '/plugins')
690 @plugins.add_botmodule_dir(path)
694 def set_default_send_options(opts={})
695 # Default send options for NOTICE and PRIVMSG
696 unless defined? @default_send_options
697 @default_send_options = {
698 :queue_channel => nil, # use default queue channel
699 :queue_ring => nil, # use default queue ring
700 :newlines => :split, # or :join
701 :join_with => ' ', # by default, use a single space
702 :max_lines => 0, # maximum number of lines to send with a single command
703 :overlong => :split, # or :truncate
704 # TODO an array of splitpoints would be preferrable for this option:
705 :split_at => /\s+/, # by default, split overlong lines at whitespace
706 :purge_split => true, # should the split string be removed?
707 :truncate_text => "#{Reverse}...#{Reverse}" # text to be appened when truncating
710 @default_send_options.update opts unless opts.empty?
713 # checks if we should be quiet on a channel
714 def quiet_on?(channel)
715 return @quiet.include?('*') || @quiet.include?(channel.downcase)
718 def set_quiet(channel)
720 ch = channel.downcase.dup
721 @quiet << ch unless @quiet.include?(ch)
728 def reset_quiet(channel)
730 @quiet.delete channel.downcase
736 # things to do when we receive a signal
738 debug "received #{sig}, queueing quit"
740 quit unless @quit_mutex.locked?
741 debug "interrupted #{$interrupted} times"
749 # connect the bot to IRC
752 trap("SIGINT") { got_sig("SIGINT") }
753 trap("SIGTERM") { got_sig("SIGTERM") }
754 trap("SIGHUP") { got_sig("SIGHUP") }
755 rescue ArgumentError => e
756 debug "failed to trap signals (#{e.pretty_inspect}): running on Windows?"
757 rescue Exception => e
758 debug "failed to trap signals: #{e.pretty_inspect}"
761 quit if $interrupted > 0
764 raise e.class, "failed to connect to IRC server at #{@socket.server_uri}: " + e
766 quit if $interrupted > 0
768 realname = @config['irc.name'].clone || 'Ruby bot'
769 realname << ' ' + COPYRIGHT_NOTICE if @config['irc.name_copyright']
771 @socket.emergency_puts "PASS " + @config['server.password'] if @config['server.password']
772 @socket.emergency_puts "NICK #{@config['irc.nick']}\nUSER #{@config['irc.user']} 4 #{@socket.server_uri.host} :#{realname}"
773 quit if $interrupted > 0
774 myself.nick = @config['irc.nick']
775 myself.user = @config['irc.user']
778 # begin event handling loop
782 quit if $interrupted > 0
786 while @socket.connected?
787 quit if $interrupted > 0
789 # Wait for messages and process them as they arrive. If nothing is
790 # received, we call the ping_server() method that will PING the
791 # server if appropriate, or raise a TimeoutError if no PONG has been
792 # received in the user-chosen timeout since the last PING sent.
794 break unless reply = @socket.gets
796 @client.process reply
802 # I despair of this. Some of my users get "connection reset by peer"
803 # exceptions that ARENT SocketError's. How am I supposed to handle
808 rescue Errno::ETIMEDOUT, Errno::ECONNABORTED, TimeoutError, SocketError => e
809 error "network exception: #{e.pretty_inspect}"
811 rescue BDB::Fatal => e
812 fatal "fatal bdb error: #{e.pretty_inspect}"
814 # Why restart? DB problems are serious stuff ...
815 # restart("Oops, we seem to have registry problems ...")
818 rescue Exception => e
819 error "non-net exception: #{e.pretty_inspect}"
822 fatal "unexpected exception: #{e.pretty_inspect}"
829 log "\n\nDisconnected\n\n"
831 quit if $interrupted > 0
833 log "\n\nWaiting to reconnect\n\n"
834 sleep @config['server.reconnect_wait']
838 # type:: message type
839 # where:: message target
840 # message:: message text
841 # send message +message+ of type +type+ to target +where+
842 # Type can be PRIVMSG, NOTICE, etc, but those you should really use the
843 # relevant say() or notice() methods. This one should be used for IRCd
844 # extensions you want to use in modules.
845 def sendmsg(type, where, original_message, options={})
846 opts = @default_send_options.merge(options)
848 # For starters, set up appropriate queue channels and rings
849 mchan = opts[:queue_channel]
850 mring = opts[:queue_ring]
867 multi_line = original_message.to_s.gsub(/[\r\n]+/, "\n")
871 messages << [multi_line.gsub("\n", opts[:join_with])]
873 multi_line.each_line { |line|
875 next unless(line.size > 0)
879 raise "Unknown :newlines option #{opts[:newlines]} while sending #{original_message.inspect}"
882 # The IRC protocol requires that each raw message must be not longer
883 # than 512 characters. From this length with have to subtract the EOL
884 # terminators (CR+LF) and the length of ":botnick!botuser@bothost "
885 # that will be prepended by the server to all of our messages.
887 # The maximum raw message length we can send is therefore 512 - 2 - 2
888 # minus the length of our hostmask.
890 max_len = 508 - myself.fullform.size
892 # On servers that support IDENTIFY-MSG, we have to subtract 1, because messages
893 # will have a + or - prepended
894 if server.capabilities[:"identify-msg"]
898 # When splitting the message, we'll be prefixing the following string:
899 # (e.g. "PRIVMSG #rbot :")
900 fixed = "#{type} #{where} :"
902 # And this is what's left
903 left = max_len - fixed.size
905 truncate = opts[:truncate_text]
906 truncate = @default_send_options[:truncate_text] if truncate.size > left
907 truncate = "" if truncate.size > left
909 all_lines = messages.map { |line|
916 sub_lines = Array.new
918 sub_lines << msg.slice!(0, left)
920 lastspace = sub_lines.last.rindex(opts[:split_at])
922 msg.replace sub_lines.last.slice!(lastspace, sub_lines.last.size) + msg
923 msg.gsub!(/^#{opts[:split_at]}/, "") if opts[:purge_split]
928 line.slice(0, left - truncate.size) << truncate
930 raise "Unknown :overlong option #{opts[:overlong]} while sending #{original_message.inspect}"
935 if opts[:max_lines] > 0 and all_lines.length > opts[:max_lines]
936 lines = all_lines[0...opts[:max_lines]]
937 new_last = lines.last.slice(0, left - truncate.size) << truncate
938 lines.last.replace(new_last)
944 sendq "#{fixed}#{line}", chan, ring
945 delegate_sent(type, where, line)
949 # queue an arbitraty message for the server
950 def sendq(message="", chan=nil, ring=0)
952 @socket.queue(message, chan, ring)
955 # send a notice message to channel/nick +where+
956 def notice(where, message, options={})
957 return if where.kind_of?(Channel) and quiet_on?(where)
958 sendmsg "NOTICE", where, message, options
961 # say something (PRIVMSG) to channel/nick +where+
962 def say(where, message, options={})
963 return if where.kind_of?(Channel) and quiet_on?(where)
964 sendmsg "PRIVMSG", where, message, options
967 def ctcp_notice(where, command, message, options={})
968 return if where.kind_of?(Channel) and quiet_on?(where)
969 sendmsg "NOTICE", where, "\001#{command} #{message}\001", options
972 def ctcp_say(where, command, message, options={})
973 return if where.kind_of?(Channel) and quiet_on?(where)
974 sendmsg "PRIVMSG", where, "\001#{command} #{message}\001", options
977 # perform a CTCP action with message +message+ to channel/nick +where+
978 def action(where, message, options={})
979 ctcp_say(where, 'ACTION', message, options)
982 # quick way to say "okay" (or equivalent) to +where+
984 say where, @lang.get("okay")
987 # set topic of channel +where+ to +topic+
988 def topic(where, topic)
989 sendq "TOPIC #{where} :#{topic}", where, 2
992 def disconnect(message=nil)
993 message = @lang.get("quit") if (!message || message.empty?)
994 if @socket.connected?
996 debug "Clearing socket"
998 debug "Sending quit message"
999 @socket.emergency_puts "QUIT :#{message}"
1000 debug "Logging quits"
1001 delegate_sent('QUIT', myself, message)
1002 debug "Flushing socket"
1004 rescue SocketError => e
1005 error "error while disconnecting socket: #{e.pretty_inspect}"
1007 debug "Shutting down socket"
1014 # disconnect from the server and cleanup all plugins and modules
1015 def shutdown(message=nil)
1016 @quit_mutex.synchronize do
1017 debug "Shutting down: #{message}"
1018 ## No we don't restore them ... let everything run through
1020 # trap("SIGINT", "DEFAULT")
1021 # trap("SIGTERM", "DEFAULT")
1022 # trap("SIGHUP", "DEFAULT")
1024 # debug "failed to restore signals: #{e.inspect}\nProbably running on windows?"
1026 debug "\tdisconnecting..."
1028 debug "\tstopping timer..."
1030 debug "\tsaving ..."
1032 debug "\tcleaning up ..."
1033 @save_mutex.synchronize do
1036 # debug "\tstopping timers ..."
1038 # debug "Closing registries"
1040 debug "\t\tcleaning up the db environment ..."
1042 log "rbot quit (#{message})"
1046 # message:: optional IRC quit message
1047 # quit IRC, shutdown the bot
1048 def quit(message=nil)
1056 # totally shutdown and respawn the bot
1057 def restart(message=nil)
1058 message = "restarting, back in #{@config['server.reconnect_wait']}..." if (!message || message.empty?)
1060 sleep @config['server.reconnect_wait']
1063 # Note, this fails on Windows
1064 debug "going to exec #{$0} #{@argv.inspect} from #{@run_dir}"
1067 rescue Errno::ENOENT
1068 exec("ruby", *(@argv.unshift $0))
1069 rescue Exception => e
1075 # call the save method for all of the botmodules
1077 @save_mutex.synchronize do
1083 # call the rescan method for all of the botmodules
1085 debug "\tstopping timer..."
1087 @save_mutex.synchronize do
1094 # channel:: channel to join
1095 # key:: optional channel key if channel is +s
1097 def join(channel, key=nil)
1099 sendq "JOIN #{channel} :#{key}", channel, 2
1101 sendq "JOIN #{channel}", channel, 2
1106 def part(channel, message="")
1107 sendq "PART #{channel} :#{message}", channel, 2
1110 # attempt to change bot's nick to +name+
1112 sendq "NICK #{name}"
1116 def mode(channel, mode, target)
1117 sendq "MODE #{channel} #{mode} #{target}", channel, 2
1121 def kick(channel, user, msg)
1122 sendq "KICK #{channel} #{user} :#{msg}", channel, 2
1125 # m:: message asking for help
1126 # topic:: optional topic help is requested for
1127 # respond to online help requests
1129 topic = nil if topic == ""
1132 helpstr = _("help topics: ")
1133 helpstr += @plugins.helptopics
1134 helpstr += _(" (help <topic> for more info)")
1136 unless(helpstr = @plugins.help(topic))
1137 helpstr = _("no help for topic %{topic}") % { :topic => topic }
1143 # returns a string describing the current status of the bot (uptime etc)
1145 secs_up = Time.new - @startup_time
1146 uptime = Utils.secs_to_string secs_up
1147 # return "Uptime #{uptime}, #{@plugins.length} plugins active, #{@registry.length} items stored in registry, #{@socket.lines_sent} lines sent, #{@socket.lines_received} received."
1148 return (_("Uptime %{up}, %{plug} plugins active, %{sent} lines sent, %{recv} received.") %
1150 :up => uptime, :plug => @plugins.length,
1151 :sent => @socket.lines_sent, :recv => @socket.lines_received
1155 # We want to respond to a hung server in a timely manner. If nothing was received
1156 # in the user-selected timeout and we haven't PINGed the server yet, we PING
1157 # the server. If the PONG is not received within the user-defined timeout, we
1158 # assume we're in ping timeout and act accordingly.
1160 act_timeout = @config['server.ping_timeout']
1161 return if act_timeout <= 0
1163 if @last_rec && now > @last_rec + act_timeout
1165 # No previous PING pending, send a new one
1167 @last_ping = Time.now
1169 diff = now - @last_ping
1170 if diff > act_timeout
1171 debug "no PONG from server in #{diff} seconds, reconnecting"
1172 # the actual reconnect is handled in the main loop:
1173 raise TimeoutError, "no PONG from server in #{diff} seconds"
1179 def stop_server_pings
1180 # cancel previous PINGs and reset time of last RECV
1187 # delegate sent messages
1188 def delegate_sent(type, where, message)
1189 args = [self, server, myself, server.user_or_channel(where.to_s), message]
1192 m = NoticeMessage.new(*args)
1194 m = PrivMessage.new(*args)
1196 m = QuitMessage.new(*args)
1198 @plugins.delegate('sent', m)