7 $debug = false unless $debug
8 $daemonize = false unless $daemonize
10 $dateformat = "%Y/%m/%d %H:%M:%S"
11 $logger = Logger.new($stderr)
12 $logger.datetime_format = $dateformat
13 $logger.level = $cl_loglevel if defined? $cl_loglevel
14 $logger.level = 0 if $debug
18 unless Kernel.instance_methods.include?("pretty_inspect")
22 public :pretty_inspect
27 q.group(1, "#<%s: %s" % [self.class, self.message], ">") {
28 q.seplist(self.backtrace, lambda { "\n" }) { |v| v } if self.backtrace
33 def rawlog(level, message=nil, who_pos=1)
35 if call_stack.length > who_pos
36 who = call_stack[who_pos].sub(%r{(?:.+)/([^/]+):(\d+)(:in .*)?}) { "#{$1}:#{$2}#{$3}" }
40 # Output each line. To distinguish between separate messages and multi-line
41 # messages originating at the same time, we blank #{who} after the first message
43 # Also, we output strings as-is but for other objects we use pretty_inspect
48 str = message.pretty_inspect
51 $logger.add(level, l.chomp, who)
57 $logger << "\n\n=== #{botclass} session started on #{Time.now.strftime($dateformat)} ===\n\n"
61 $logger << "\n\n=== #{botclass} session ended on #{Time.now.strftime($dateformat)} ===\n\n"
64 def debug(message=nil, who_pos=1)
65 rawlog(Logger::Severity::DEBUG, message, who_pos)
68 def log(message=nil, who_pos=1)
69 rawlog(Logger::Severity::INFO, message, who_pos)
72 def warning(message=nil, who_pos=1)
73 rawlog(Logger::Severity::WARN, message, who_pos)
76 def error(message=nil, who_pos=1)
77 rawlog(Logger::Severity::ERROR, message, who_pos)
80 def fatal(message=nil, who_pos=1)
81 rawlog(Logger::Severity::FATAL, message, who_pos)
86 warning "warning test"
90 # The following global is used for the improved signal handling.
94 require 'rbot/rbotconfig'
95 require 'rbot/load-gettext'
97 # require 'rbot/utils'
100 require 'rbot/rfc2812'
101 require 'rbot/ircsocket'
102 require 'rbot/botuser'
104 require 'rbot/plugins'
105 # require 'rbot/channel'
106 require 'rbot/message'
107 require 'rbot/language'
108 require 'rbot/dbhash'
109 require 'rbot/registry'
110 # require 'rbot/httputil'
114 # Main bot class, which manages the various components, receives messages,
115 # handles them or passes them to plugins, and contains core functionality.
117 COPYRIGHT_NOTICE = "(c) Tom Gilbert and the rbot development team"
118 # the bot's Auth data
121 # the bot's BotConfig data
124 # the botclass for this bot (determines configdir among other things)
125 attr_reader :botclass
127 # used to perform actions periodically (saves configuration once per minute
131 # synchronize with this mutex while touching permanent data files:
132 # saving, flushing, cleaning up ...
133 attr_reader :save_mutex
135 # bot's Language data
142 # bot's object registry, plugins get an interface to this for persistant
143 # storage (hash interface tied to a bdb file, plugins use Accessors to store
144 # and restore objects in their own namespaces.)
145 attr_reader :registry
147 # bot's plugins. This is an instance of class Plugins
150 # bot's httputil help object, for fetching resources via http. Sets up
151 # proxies etc as defined by the bot configuration/environment
152 attr_accessor :httputil
154 # server we are connected to
160 # bot User in the client/server connection
166 # bot User in the client/server connection
171 # create a new Bot with botclass +botclass+
172 def initialize(botclass, params = {})
173 # BotConfig for the core bot
174 # TODO should we split socket stuff into ircsocket, etc?
175 BotConfig.register BotConfigArrayValue.new('server.list',
176 :default => ['irc://localhost'], :wizard => true,
177 :requires_restart => true,
178 :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.")
179 BotConfig.register BotConfigBooleanValue.new('server.ssl',
180 :default => false, :requires_restart => true, :wizard => true,
181 :desc => "Use SSL to connect to this server?")
182 BotConfig.register BotConfigStringValue.new('server.password',
183 :default => false, :requires_restart => true,
184 :desc => "Password for connecting to this server (if required)",
186 BotConfig.register BotConfigStringValue.new('server.bindhost',
187 :default => false, :requires_restart => true,
188 :desc => "Specific local host or IP for the bot to bind to (if required)",
190 BotConfig.register BotConfigIntegerValue.new('server.reconnect_wait',
191 :default => 5, :validate => Proc.new{|v| v >= 0},
192 :desc => "Seconds to wait before attempting to reconnect, on disconnect")
193 BotConfig.register BotConfigFloatValue.new('server.sendq_delay',
194 :default => 2.0, :validate => Proc.new{|v| v >= 0},
195 :desc => "(flood prevention) the delay between sending messages to the server (in seconds)",
196 :on_change => Proc.new {|bot, v| bot.socket.sendq_delay = v })
197 BotConfig.register BotConfigIntegerValue.new('server.sendq_burst',
198 :default => 4, :validate => Proc.new{|v| v >= 0},
199 :desc => "(flood prevention) max lines to burst to the server before throttling. Most ircd's allow bursts of up 5 lines",
200 :on_change => Proc.new {|bot, v| bot.socket.sendq_burst = v })
201 BotConfig.register BotConfigIntegerValue.new('server.ping_timeout',
202 :default => 30, :validate => Proc.new{|v| v >= 0},
203 :desc => "reconnect if server doesn't respond to PING within this many seconds (set to 0 to disable)")
205 BotConfig.register BotConfigStringValue.new('irc.nick', :default => "rbot",
206 :desc => "IRC nickname the bot should attempt to use", :wizard => true,
207 :on_change => Proc.new{|bot, v| bot.sendq "NICK #{v}" })
208 BotConfig.register BotConfigStringValue.new('irc.name',
209 :default => "Ruby bot", :requires_restart => true,
210 :desc => "IRC realname the bot should use")
211 BotConfig.register BotConfigBooleanValue.new('irc.name_copyright',
212 :default => true, :requires_restart => true,
213 :desc => "Append copyright notice to bot realname? (please don't disable unless it's really necessary)")
214 BotConfig.register BotConfigStringValue.new('irc.user', :default => "rbot",
215 :requires_restart => true,
216 :desc => "local user the bot should appear to be", :wizard => true)
217 BotConfig.register BotConfigArrayValue.new('irc.join_channels',
218 :default => [], :wizard => true,
219 :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'")
220 BotConfig.register BotConfigArrayValue.new('irc.ignore_users',
222 :desc => "Which users to ignore input from. This is mainly to avoid bot-wars triggered by creative people")
224 BotConfig.register BotConfigIntegerValue.new('core.save_every',
225 :default => 60, :validate => Proc.new{|v| v >= 0},
226 :on_change => Proc.new { |bot, v|
229 @timer.reschedule(@save_timer, v)
230 @timer.unblock(@save_timer)
232 @timer.block(@save_timer)
236 @save_timer = @timer.add(v) { bot.save }
238 # Nothing to do when v == 0
241 :desc => "How often the bot should persist all configuration to disk (in case of a server crash, for example)")
243 BotConfig.register BotConfigBooleanValue.new('core.run_as_daemon',
244 :default => false, :requires_restart => true,
245 :desc => "Should the bot run as a daemon?")
247 BotConfig.register BotConfigStringValue.new('log.file',
248 :default => false, :requires_restart => true,
249 :desc => "Name of the logfile to which console messages will be redirected when the bot is run as a daemon")
250 BotConfig.register BotConfigIntegerValue.new('log.level',
251 :default => 1, :requires_restart => false,
252 :validate => Proc.new { |v| (0..5).include?(v) },
253 :on_change => Proc.new { |bot, v|
256 :desc => "The minimum logging level (0=DEBUG,1=INFO,2=WARN,3=ERROR,4=FATAL) for console messages")
257 BotConfig.register BotConfigIntegerValue.new('log.keep',
258 :default => 1, :requires_restart => true,
259 :validate => Proc.new { |v| v >= 0 },
260 :desc => "How many old console messages logfiles to keep")
261 BotConfig.register BotConfigIntegerValue.new('log.max_size',
262 :default => 10, :requires_restart => true,
263 :validate => Proc.new { |v| v > 0 },
264 :desc => "Maximum console messages logfile size (in megabytes)")
266 BotConfig.register BotConfigArrayValue.new('plugins.path',
267 :wizard => true, :default => ['(default)', '(default)/games', '(default)/contrib'],
268 :requires_restart => false,
269 :on_change => Proc.new { |bot, v| bot.setup_plugins_path },
270 :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")
272 BotConfig.register BotConfigEnumValue.new('send.newlines',
273 :values => ['split', 'join'], :default => 'split',
274 :on_change => Proc.new { |bot, v|
275 bot.set_default_send_options :newlines => v.to_sym
277 :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")
278 BotConfig.register BotConfigStringValue.new('send.join_with',
280 :on_change => Proc.new { |bot, v|
281 bot.set_default_send_options :join_with => v.dup
283 :desc => "String used to replace newlines when send.newlines is set to join")
284 BotConfig.register BotConfigIntegerValue.new('send.max_lines',
286 :validate => Proc.new { |v| v >= 0 },
287 :on_change => Proc.new { |bot, v|
288 bot.set_default_send_options :max_lines => v
290 :desc => "Maximum number of IRC lines to send for each message (set to 0 for no limit)")
291 BotConfig.register BotConfigEnumValue.new('send.overlong',
292 :values => ['split', 'truncate'], :default => 'split',
293 :on_change => Proc.new { |bot, v|
294 bot.set_default_send_options :overlong => v.to_sym
296 :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")
297 BotConfig.register BotConfigStringValue.new('send.split_at',
299 :on_change => Proc.new { |bot, v|
300 bot.set_default_send_options :split_at => Regexp.new(v)
302 :desc => "A regular expression that should match the split points for overlong messages (see send.overlong)")
303 BotConfig.register BotConfigBooleanValue.new('send.purge_split',
305 :on_change => Proc.new { |bot, v|
306 bot.set_default_send_options :purge_split => v
308 :desc => "Set to true if the splitting boundary (set in send.split_at) should be removed when splitting overlong messages (see send.overlong)")
309 BotConfig.register BotConfigStringValue.new('send.truncate_text',
310 :default => "#{Reverse}...#{Reverse}",
311 :on_change => Proc.new { |bot, v|
312 bot.set_default_send_options :truncate_text => v.dup
314 :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")
316 @argv = params[:argv]
317 @run_dir = params[:run_dir] || Dir.pwd
319 unless FileTest.directory? Config::coredir
320 error "core directory '#{Config::coredir}' not found, did you setup.rb?"
324 unless FileTest.directory? Config::datadir
325 error "data directory '#{Config::datadir}' not found, did you setup.rb?"
329 unless botclass and not botclass.empty?
330 # We want to find a sensible default.
331 # * On POSIX systems we prefer ~/.rbot for the effective uid of the process
332 # * On Windows (at least the NT versions) we want to put our stuff in the
333 # Application Data folder.
334 # We don't use any particular O/S detection magic, exploiting the fact that
335 # Etc.getpwuid is nil on Windows
336 if Etc.getpwuid(Process::Sys.geteuid)
337 botclass = Etc.getpwuid(Process::Sys.geteuid)[:dir].dup
339 if ENV.has_key?('APPDATA')
340 botclass = ENV['APPDATA'].dup
341 botclass.gsub!("\\","/")
346 botclass = File.expand_path(botclass)
347 @botclass = botclass.gsub(/\/$/, "")
349 unless FileTest.directory? botclass
350 log "no #{botclass} directory found, creating from templates.."
351 if FileTest.exist? botclass
352 error "file #{botclass} exists but isn't a directory"
355 FileUtils.cp_r Config::datadir+'/templates', botclass
358 Dir.mkdir("#{botclass}/logs") unless File.exist?("#{botclass}/logs")
359 Dir.mkdir("#{botclass}/registry") unless File.exist?("#{botclass}/registry")
360 Dir.mkdir("#{botclass}/safe_save") unless File.exist?("#{botclass}/safe_save")
362 # Time at which the last PING was sent
364 # Time at which the last line was RECV'd from the server
367 @startup_time = Time.new
370 @config = BotConfig.configmanager
371 @config.bot_associate(self)
372 rescue Exception => e
378 if @config['core.run_as_daemon']
382 @logfile = @config['log.file']
383 if @logfile.class!=String || @logfile.empty?
384 @logfile = "#{botclass}/#{File.basename(botclass).gsub(/^\.+/,'')}.log"
387 # See http://blog.humlab.umu.se/samuel/archives/000107.html
388 # for the backgrounding code
394 rescue NotImplementedError
395 warning "Could not background, fork not supported"
398 rescue Exception => e
399 warning "Could not background. #{e.pretty_inspect}"
402 # File.umask 0000 # Ensure sensible umask. Adjust as needed.
403 log "Redirecting standard input/output/error"
405 STDIN.reopen "/dev/null"
407 # On Windows, there's not such thing as /dev/null
410 def STDOUT.write(str=nil)
414 def STDERR.write(str=nil)
415 if str.to_s.match(/:\d+: warning:/)
424 # Set the new logfile and loglevel. This must be done after the daemonizing
425 $logger = Logger.new(@logfile, @config['log.keep'], @config['log.max_size']*1024*1024)
426 $logger.datetime_format= $dateformat
427 $logger.level = @config['log.level']
428 $logger.level = $cl_loglevel if defined? $cl_loglevel
429 $logger.level = 0 if $debug
433 File.open($opts['pidfile'] || "#{@botclass}/rbot.pid", 'w') do |pf|
437 @registry = BotRegistry.new self
440 @save_mutex = Mutex.new
441 if @config['core.save_every'] > 0
442 @save_timer = @timer.add(@config['core.save_every']) { save }
446 @quit_mutex = Mutex.new
451 @lang = Language.new(self, @config['core.language'])
454 @auth = Auth::authmanager
455 @auth.bot_associate(self)
456 # @auth.load("#{botclass}/botusers.yaml")
457 rescue Exception => e
462 @auth.everyone.set_default_permission("*", true)
463 @auth.botowner.password= @config['auth.password']
465 Dir.mkdir("#{botclass}/plugins") unless File.exist?("#{botclass}/plugins")
466 @plugins = Plugins::manager
467 @plugins.bot_associate(self)
470 if @config['server.name']
471 debug "upgrading configuration (server.name => server.list)"
472 srv_uri = 'irc://' + @config['server.name']
473 srv_uri += ":#{@config['server.port']}" if @config['server.port']
474 @config.items['server.list'.to_sym].set_string(srv_uri)
475 @config.delete('server.name'.to_sym)
476 @config.delete('server.port'.to_sym)
477 debug "server.list is now #{@config['server.list'].inspect}"
480 @socket = IrcSocket.new(@config['server.list'], @config['server.bindhost'], @config['server.sendq_delay'], @config['server.sendq_burst'], :ssl => @config['server.ssl'])
485 # Channels where we are quiet
486 # Array of channels names where the bot should be quiet
487 # '*' means all channels
491 @client[:welcome] = proc {|data|
492 irclog "joined server #{@client.server} as #{myself}", "server"
494 @plugins.delegate("connect")
496 @config['irc.join_channels'].each { |c|
497 debug "autojoining channel #{c}"
498 if(c =~ /^(\S+)\s+(\S+)$/i)
506 # TODO the next two @client should go into rfc2812.rb, probably
507 # Since capabs are two-steps processes, server.supports[:capab]
508 # should be a three-state: nil, [], [....]
509 asked_for = { :"identify-msg" => false }
510 @client[:isupport] = proc { |data|
511 if server.supports[:capab] and !asked_for[:"identify-msg"]
512 sendq "CAPAB IDENTIFY-MSG"
513 asked_for[:"identify-msg"] = true
516 @client[:datastr] = proc { |data|
517 if data[:text] == "IDENTIFY-MSG"
518 server.capabilities[:"identify-msg"] = true
520 debug "Not handling RPL_DATASTR #{data[:servermessage]}"
524 @client[:privmsg] = proc { |data|
525 m = PrivMessage.new(self, server, data[:source], data[:target], data[:message])
526 # debug "Message source is #{data[:source].inspect}"
527 # debug "Message target is #{data[:target].inspect}"
528 # debug "Bot is #{myself.inspect}"
531 @config['irc.ignore_users'].each { |mask|
532 if m.source.matches?(server.new_netmask(mask))
541 @plugins.delegate "listen", m
542 @plugins.privmsg(m) if m.address?
544 @plugins.delegate "unreplied", m
548 @client[:notice] = proc { |data|
549 message = NoticeMessage.new(self, server, data[:source], data[:target], data[:message])
550 # pass it off to plugins that want to hear everything
551 @plugins.delegate "listen", message
553 @client[:motd] = proc { |data|
554 data[:motd].each_line { |line|
555 irclog "MOTD: #{line}", "server"
558 @client[:nicktaken] = proc { |data|
559 new = "#{data[:nick]}_"
561 # If we're setting our nick at connection because our choice was taken,
562 # we have to fix our nick manually, because there will be no NICK message
563 # to inform us that our nick has been changed.
564 if data[:target] == '*'
565 debug "setting my connection nick to #{new}"
568 @plugins.delegate "nicktaken", data[:nick]
570 @client[:badnick] = proc {|data|
571 warning "bad nick (#{data[:nick]})"
573 @client[:ping] = proc {|data|
574 sendq "PONG #{data[:pingid]}"
576 @client[:pong] = proc {|data|
579 @client[:nick] = proc {|data|
580 # debug "Message source is #{data[:source].inspect}"
581 # debug "Bot is #{myself.inspect}"
582 source = data[:source]
585 m = NickMessage.new(self, server, source, old, new)
587 debug "my nick is now #{new}"
589 data[:is_on].each { |ch|
590 irclog "@ #{old} is now known as #{new}", ch
592 @plugins.delegate("listen", m)
593 @plugins.delegate("nick", m)
595 @client[:quit] = proc {|data|
596 source = data[:source]
597 message = data[:message]
598 m = QuitMessage.new(self, server, source, source, message)
599 data[:was_on].each { |ch|
600 irclog "@ Quit: #{source}: #{message}", ch
602 @plugins.delegate("listen", m)
603 @plugins.delegate("quit", m)
605 @client[:mode] = proc {|data|
606 irclog "@ Mode #{data[:modestring]} by #{data[:source]}", data[:channel]
608 @client[:join] = proc {|data|
609 m = JoinMessage.new(self, server, data[:source], data[:channel], data[:message])
612 @plugins.delegate("listen", m)
613 @plugins.delegate("join", m)
614 sendq "WHO #{data[:channel]}", data[:channel], 2
616 @client[:part] = proc {|data|
617 m = PartMessage.new(self, server, data[:source], data[:channel], data[:message])
620 @plugins.delegate("listen", m)
621 @plugins.delegate("part", m)
623 @client[:kick] = proc {|data|
624 m = KickMessage.new(self, server, data[:source], data[:target], data[:channel],data[:message])
627 @plugins.delegate("listen", m)
628 @plugins.delegate("kick", m)
630 @client[:invite] = proc {|data|
631 if data[:target] == myself
632 join data[:channel] if @auth.allow?("join", data[:source], data[:source].nick)
635 @client[:changetopic] = proc {|data|
636 m = TopicMessage.new(self, server, data[:source], data[:channel], data[:topic])
639 @plugins.delegate("listen", m)
640 @plugins.delegate("topic", m)
642 @client[:topic] = proc { |data|
643 irclog "@ Topic is \"#{data[:topic]}\"", data[:channel]
645 @client[:topicinfo] = proc { |data|
646 channel = data[:channel]
647 topic = channel.topic
648 irclog "@ Topic set by #{topic.set_by} on #{topic.set_on}", channel
649 m = TopicMessage.new(self, server, data[:source], channel, topic)
651 @plugins.delegate("listen", m)
652 @plugins.delegate("topic", m)
654 @client[:names] = proc { |data|
655 @plugins.delegate "names", data[:channel], data[:users]
657 @client[:unknown] = proc { |data|
658 #debug "UNKNOWN: #{data[:serverstring]}"
659 irclog data[:serverstring], ".unknown"
662 set_default_send_options :newlines => @config['send.newlines'].to_sym,
663 :join_with => @config['send.join_with'].dup,
664 :max_lines => @config['send.max_lines'],
665 :overlong => @config['send.overlong'].to_sym,
666 :split_at => Regexp.new(@config['send.split_at']),
667 :purge_split => @config['send.purge_split'],
668 :truncate_text => @config['send.truncate_text'].dup
671 def setup_plugins_path
672 @plugins.clear_botmodule_dirs
673 @plugins.add_botmodule_dir(Config::coredir + "/utils")
674 @plugins.add_botmodule_dir(Config::coredir)
675 @plugins.add_botmodule_dir("#{botclass}/plugins")
677 @config['plugins.path'].each do |_|
678 path = _.sub(/^\(default\)/, Config::datadir + '/plugins')
679 @plugins.add_botmodule_dir(path)
683 def set_default_send_options(opts={})
684 # Default send options for NOTICE and PRIVMSG
685 unless defined? @default_send_options
686 @default_send_options = {
687 :queue_channel => nil, # use default queue channel
688 :queue_ring => nil, # use default queue ring
689 :newlines => :split, # or :join
690 :join_with => ' ', # by default, use a single space
691 :max_lines => 0, # maximum number of lines to send with a single command
692 :overlong => :split, # or :truncate
693 # TODO an array of splitpoints would be preferrable for this option:
694 :split_at => /\s+/, # by default, split overlong lines at whitespace
695 :purge_split => true, # should the split string be removed?
696 :truncate_text => "#{Reverse}...#{Reverse}" # text to be appened when truncating
699 @default_send_options.update opts unless opts.empty?
702 # checks if we should be quiet on a channel
703 def quiet_on?(channel)
704 return @quiet.include?('*') || @quiet.include?(channel.downcase)
707 def set_quiet(channel)
709 ch = channel.downcase.dup
710 @quiet << ch unless @quiet.include?(ch)
717 def reset_quiet(channel)
719 @quiet.delete channel.downcase
725 # things to do when we receive a signal
727 debug "received #{sig}, queueing quit"
729 quit unless @quit_mutex.locked?
730 debug "interrupted #{$interrupted} times"
738 # connect the bot to IRC
741 trap("SIGINT") { got_sig("SIGINT") }
742 trap("SIGTERM") { got_sig("SIGTERM") }
743 trap("SIGHUP") { got_sig("SIGHUP") }
744 rescue ArgumentError => e
745 debug "failed to trap signals (#{e.pretty_inspect}): running on Windows?"
746 rescue Exception => e
747 debug "failed to trap signals: #{e.pretty_inspect}"
750 quit if $interrupted > 0
753 raise e.class, "failed to connect to IRC server at #{@socket.server_uri}: " + e
755 quit if $interrupted > 0
757 realname = @config['irc.name'].clone || 'Ruby bot'
758 realname << ' ' + COPYRIGHT_NOTICE if @config['irc.name_copyright']
760 @socket.emergency_puts "PASS " + @config['server.password'] if @config['server.password']
761 @socket.emergency_puts "NICK #{@config['irc.nick']}\nUSER #{@config['irc.user']} 4 #{@socket.server_uri.host} :#{realname}"
762 quit if $interrupted > 0
763 myself.nick = @config['irc.nick']
764 myself.user = @config['irc.user']
767 # begin event handling loop
771 quit if $interrupted > 0
775 while @socket.connected?
776 quit if $interrupted > 0
778 # Wait for messages and process them as they arrive. If nothing is
779 # received, we call the ping_server() method that will PING the
780 # server if appropriate, or raise a TimeoutError if no PONG has been
781 # received in the user-chosen timeout since the last PING sent.
783 break unless reply = @socket.gets
785 @client.process reply
791 # I despair of this. Some of my users get "connection reset by peer"
792 # exceptions that ARENT SocketError's. How am I supposed to handle
797 rescue Errno::ETIMEDOUT, Errno::ECONNABORTED, TimeoutError, SocketError => e
798 error "network exception: #{e.pretty_inspect}"
800 rescue BDB::Fatal => e
801 fatal "fatal bdb error: #{e.pretty_inspect}"
803 # Why restart? DB problems are serious stuff ...
804 # restart("Oops, we seem to have registry problems ...")
807 rescue Exception => e
808 error "non-net exception: #{e.pretty_inspect}"
811 fatal "unexpected exception: #{e.pretty_inspect}"
818 log "\n\nDisconnected\n\n"
820 quit if $interrupted > 0
822 log "\n\nWaiting to reconnect\n\n"
823 sleep @config['server.reconnect_wait']
827 # type:: message type
828 # where:: message target
829 # message:: message text
830 # send message +message+ of type +type+ to target +where+
831 # Type can be PRIVMSG, NOTICE, etc, but those you should really use the
832 # relevant say() or notice() methods. This one should be used for IRCd
833 # extensions you want to use in modules.
834 def sendmsg(type, where, original_message, options={})
835 opts = @default_send_options.merge(options)
837 # For starters, set up appropriate queue channels and rings
838 mchan = opts[:queue_channel]
839 mring = opts[:queue_ring]
856 multi_line = original_message.to_s.gsub(/[\r\n]+/, "\n")
860 messages << [multi_line.gsub("\n", opts[:join_with])]
862 multi_line.each_line { |line|
864 next unless(line.size > 0)
868 raise "Unknown :newlines option #{opts[:newlines]} while sending #{original_message.inspect}"
871 # The IRC protocol requires that each raw message must be not longer
872 # than 512 characters. From this length with have to subtract the EOL
873 # terminators (CR+LF) and the length of ":botnick!botuser@bothost "
874 # that will be prepended by the server to all of our messages.
876 # The maximum raw message length we can send is therefore 512 - 2 - 2
877 # minus the length of our hostmask.
879 max_len = 508 - myself.fullform.size
881 # On servers that support IDENTIFY-MSG, we have to subtract 1, because messages
882 # will have a + or - prepended
883 if server.capabilities[:"identify-msg"]
887 # When splitting the message, we'll be prefixing the following string:
888 # (e.g. "PRIVMSG #rbot :")
889 fixed = "#{type} #{where} :"
891 # And this is what's left
892 left = max_len - fixed.size
894 truncate = opts[:truncate_text]
895 truncate = @default_send_options[:truncate_text] if truncate.size > left
896 truncate = "" if truncate.size > left
898 all_lines = messages.map { |line|
905 sub_lines = Array.new
907 sub_lines << msg.slice!(0, left)
909 lastspace = sub_lines.last.rindex(opts[:split_at])
911 msg.replace sub_lines.last.slice!(lastspace, sub_lines.last.size) + msg
912 msg.gsub!(/^#{opts[:split_at]}/, "") if opts[:purge_split]
917 line.slice(0, left - truncate.size) << truncate
919 raise "Unknown :overlong option #{opts[:overlong]} while sending #{original_message.inspect}"
924 if opts[:max_lines] > 0 and all_lines.length > opts[:max_lines]
925 lines = all_lines[0...opts[:max_lines]]
926 new_last = lines.last.slice(0, left - truncate.size) << truncate
927 lines.last.replace(new_last)
933 sendq "#{fixed}#{line}", chan, ring
934 log_sent(type, where, line)
938 # queue an arbitraty message for the server
939 def sendq(message="", chan=nil, ring=0)
941 @socket.queue(message, chan, ring)
944 # send a notice message to channel/nick +where+
945 def notice(where, message, options={})
946 return if where.kind_of?(Channel) and quiet_on?(where)
947 sendmsg "NOTICE", where, message, options
950 # say something (PRIVMSG) to channel/nick +where+
951 def say(where, message, options={})
952 return if where.kind_of?(Channel) and quiet_on?(where)
953 sendmsg "PRIVMSG", where, message, options
956 # perform a CTCP action with message +message+ to channel/nick +where+
957 def action(where, message, options={})
958 return if where.kind_of?(Channel) and quiet_on?(where)
959 mchan = options.fetch(:queue_channel, nil)
960 mring = options.fetch(:queue_ring, nil)
976 # FIXME doesn't check message length. Can we make this exploit sendmsg?
977 sendq "PRIVMSG #{where} :\001ACTION #{message}\001", chan, ring
980 irclog "* #{myself} #{message}", where
982 irclog "* #{myself}[#{where}] #{message}", where
986 # quick way to say "okay" (or equivalent) to +where+
988 say where, @lang.get("okay")
991 # log IRC-related message +message+ to a file determined by +where+.
992 # +where+ can be a channel name, or a nick for private message logging
993 def irclog(message, where="server")
994 message = message.chomp
995 stamp = Time.now.strftime("%Y/%m/%d %H:%M:%S")
996 if where.class <= Server
999 where_str = where.downcase.gsub(/[:!?$*()\/\\<>|"']/, "_")
1001 unless(@logs.has_key?(where_str))
1002 @logs[where_str] = File.new("#{@botclass}/logs/#{where_str}", "a")
1003 @logs[where_str].sync = true
1005 @logs[where_str].puts "[#{stamp}] #{message}"
1006 #debug "[#{stamp}] <#{where}> #{message}"
1009 # set topic of channel +where+ to +topic+
1010 def topic(where, topic)
1011 sendq "TOPIC #{where} :#{topic}", where, 2
1014 def disconnect(message=nil)
1015 message = @lang.get("quit") if (!message || message.empty?)
1016 if @socket.connected?
1017 debug "Clearing socket"
1019 debug "Sending quit message"
1020 @socket.emergency_puts "QUIT :#{message}"
1021 debug "Flushing socket"
1023 debug "Shutting down socket"
1026 debug "Logging quits"
1027 server.channels.each { |ch|
1028 irclog "@ quit (#{message})", ch
1034 # disconnect from the server and cleanup all plugins and modules
1035 def shutdown(message=nil)
1036 @quit_mutex.synchronize do
1037 debug "Shutting down: #{message}"
1038 ## No we don't restore them ... let everything run through
1040 # trap("SIGINT", "DEFAULT")
1041 # trap("SIGTERM", "DEFAULT")
1042 # trap("SIGHUP", "DEFAULT")
1044 # debug "failed to restore signals: #{e.inspect}\nProbably running on windows?"
1046 debug "\tdisconnecting..."
1048 debug "\tstopping timer..."
1050 debug "\tsaving ..."
1052 debug "\tcleaning up ..."
1053 @save_mutex.synchronize do
1056 # debug "\tstopping timers ..."
1058 # debug "Closing registries"
1060 debug "\t\tcleaning up the db environment ..."
1062 log "rbot quit (#{message})"
1066 # message:: optional IRC quit message
1067 # quit IRC, shutdown the bot
1068 def quit(message=nil)
1076 # totally shutdown and respawn the bot
1077 def restart(message=nil)
1078 message = "restarting, back in #{@config['server.reconnect_wait']}..." if (!message || message.empty?)
1080 sleep @config['server.reconnect_wait']
1083 # Note, this fails on Windows
1084 debug "going to exec #{$0} #{@argv.inspect} from #{@run_dir}"
1087 rescue Errno::ENOENT
1088 exec("ruby", *(@argv.unshift $0))
1089 rescue Exception => e
1095 # call the save method for all of the botmodules
1097 @save_mutex.synchronize do
1103 # call the rescan method for all of the botmodules
1105 debug "\tstopping timer..."
1107 @save_mutex.synchronize do
1114 # channel:: channel to join
1115 # key:: optional channel key if channel is +s
1117 def join(channel, key=nil)
1119 sendq "JOIN #{channel} :#{key}", channel, 2
1121 sendq "JOIN #{channel}", channel, 2
1126 def part(channel, message="")
1127 sendq "PART #{channel} :#{message}", channel, 2
1130 # attempt to change bot's nick to +name+
1132 sendq "NICK #{name}"
1136 def mode(channel, mode, target)
1137 sendq "MODE #{channel} #{mode} #{target}", channel, 2
1141 def kick(channel, user, msg)
1142 sendq "KICK #{channel} #{user} :#{msg}", channel, 2
1145 # m:: message asking for help
1146 # topic:: optional topic help is requested for
1147 # respond to online help requests
1149 topic = nil if topic == ""
1152 helpstr = _("help topics: ")
1153 helpstr += @plugins.helptopics
1154 helpstr += _(" (help <topic> for more info)")
1156 unless(helpstr = @plugins.help(topic))
1157 helpstr = _("no help for topic %{topic}") % { :topic => topic }
1163 # returns a string describing the current status of the bot (uptime etc)
1165 secs_up = Time.new - @startup_time
1166 uptime = Utils.secs_to_string secs_up
1167 # return "Uptime #{uptime}, #{@plugins.length} plugins active, #{@registry.length} items stored in registry, #{@socket.lines_sent} lines sent, #{@socket.lines_received} received."
1168 return (_("Uptime %{up}, %{plug} plugins active, %{sent} lines sent, %{recv} received.") %
1170 :up => uptime, :plug => @plugins.length,
1171 :sent => @socket.lines_sent, :recv => @socket.lines_received
1175 # We want to respond to a hung server in a timely manner. If nothing was received
1176 # in the user-selected timeout and we haven't PINGed the server yet, we PING
1177 # the server. If the PONG is not received within the user-defined timeout, we
1178 # assume we're in ping timeout and act accordingly.
1180 act_timeout = @config['server.ping_timeout']
1181 return if act_timeout <= 0
1183 if @last_rec && now > @last_rec + act_timeout
1185 # No previous PING pending, send a new one
1187 @last_ping = Time.now
1189 diff = now - @last_ping
1190 if diff > act_timeout
1191 debug "no PONG from server in #{diff} seconds, reconnecting"
1192 # the actual reconnect is handled in the main loop:
1193 raise TimeoutError, "no PONG from server in #{diff} seconds"
1199 def stop_server_pings
1200 # cancel previous PINGs and reset time of last RECV
1207 def irclogprivmsg(m)
1210 irclog "* [#{m.source}(#{m.sourceaddress})] #{m.message}", m.source
1212 irclog "* #{m.source} #{m.message}", m.target
1216 irclog "<#{m.source}> #{m.message}", m.target
1218 irclog "[#{m.source}(#{m.sourceaddress})] #{m.message}", m.source
1223 # log a message. Internal use only.
1224 def log_sent(type, where, message)
1229 irclog "-=#{myself}=- #{message}", where
1231 irclog "[-=#{where}=-] #{message}", where
1236 irclog "<#{myself}> #{message}", where
1238 irclog "[msg(#{where})] #{message}", where
1245 debug "joined channel #{m.channel}"
1246 irclog "@ Joined channel #{m.channel}", m.channel
1248 irclog "@ #{m.source} joined channel #{m.channel}", m.channel
1254 debug "left channel #{m.channel}"
1255 irclog "@ Left channel #{m.channel} (#{m.message})", m.channel
1257 irclog "@ #{m.source} left channel #{m.channel} (#{m.message})", m.channel
1263 debug "kicked from channel #{m.channel}"
1264 irclog "@ You have been kicked from #{m.channel} by #{m.source} (#{m.message})", m.channel
1266 irclog "@ #{m.target} has been kicked from #{m.channel} by #{m.source} (#{m.message})", m.channel
1271 if m.source == myself
1272 irclog "@ I set topic \"#{m.topic}\"", m.channel
1274 irclog "@ #{m.source} set topic \"#{m.topic}\"", m.channel