5 $debug = false unless $debug
6 # print +message+ if debugging is enabled
8 print "DEBUG: #{message}\n" if($debug && message)
13 require 'rbot/rbotconfig'
17 require 'rbot/rfc2812'
18 require 'rbot/keywords'
19 require 'rbot/ircsocket'
22 require 'rbot/plugins'
23 require 'rbot/channel'
24 require 'rbot/message'
25 require 'rbot/language'
27 require 'rbot/registry'
28 require 'rbot/httputil'
32 # Main bot class, which manages the various components, receives messages,
33 # handles them or passes them to plugins, and contains core functionality.
35 # the bot's current nickname
38 # the bot's IrcAuth data
41 # the bot's BotConfig data
44 # the botclass for this bot (determines configdir among other things)
47 # used to perform actions periodically (saves configuration once per minute
54 # bot's configured addressing prefixes
55 attr_reader :addressing_prefixes
57 # channel info for channels the bot is in
63 # bot's object registry, plugins get an interface to this for persistant
64 # storage (hash interface tied to a bdb file, plugins use Accessors to store
65 # and restore objects in their own namespaces.)
68 # bot's httputil help object, for fetching resources via http. Sets up
69 # proxies etc as defined by the bot configuration/environment
72 # create a new IrcBot with botclass +botclass+
73 def initialize(botclass, params = {})
74 # BotConfig for the core bot
75 BotConfig.register BotConfigStringValue.new('server.name',
76 :default => "localhost", :requires_restart => true,
77 :desc => "What server should the bot connect to?",
79 BotConfig.register BotConfigIntegerValue.new('server.port',
80 :default => 6667, :type => :integer, :requires_restart => true,
81 :desc => "What port should the bot connect to?",
82 :validate => Proc.new {|v| v > 0}, :wizard => true)
83 BotConfig.register BotConfigStringValue.new('server.password',
84 :default => false, :requires_restart => true,
85 :desc => "Password for connecting to this server (if required)",
87 BotConfig.register BotConfigStringValue.new('server.bindhost',
88 :default => false, :requires_restart => true,
89 :desc => "Specific local host or IP for the bot to bind to (if required)",
91 BotConfig.register BotConfigIntegerValue.new('server.reconnect_wait',
92 :default => 5, :validate => Proc.new{|v| v >= 0},
93 :desc => "Seconds to wait before attempting to reconnect, on disconnect")
94 BotConfig.register BotConfigStringValue.new('irc.nick', :default => "rbot",
95 :desc => "IRC nickname the bot should attempt to use", :wizard => true,
96 :on_change => Proc.new{|bot, v| bot.sendq "NICK #{v}" })
97 BotConfig.register BotConfigStringValue.new('irc.user', :default => "rbot",
98 :requires_restart => true,
99 :desc => "local user the bot should appear to be", :wizard => true)
100 BotConfig.register BotConfigArrayValue.new('irc.join_channels',
101 :default => [], :wizard => true,
102 :desc => "What channels the bot should always join at startup. List multiple channels using commas to separate. If a channel requires a password, use a space after the channel name. e.g: '#chan1, #chan2, #secretchan secritpass, #chan3'")
103 BotConfig.register BotConfigIntegerValue.new('core.save_every',
104 :default => 60, :validate => Proc.new{|v| v >= 0},
105 # TODO change timer via on_change proc
106 :desc => "How often the bot should persist all configuration to disk (in case of a server crash, for example")
107 BotConfig.register BotConfigFloatValue.new('server.sendq_delay',
108 :default => 2.0, :validate => Proc.new{|v| v >= 0},
109 :desc => "(flood prevention) the delay between sending messages to the server (in seconds)",
110 :on_change => Proc.new {|bot, v| bot.socket.sendq_delay = v })
111 BotConfig.register BotConfigIntegerValue.new('server.sendq_burst',
112 :default => 4, :validate => Proc.new{|v| v >= 0},
113 :desc => "(flood prevention) max lines to burst to the server before throttling. Most ircd's allow bursts of up 5 lines, with non-burst limits of 512 bytes/2 seconds",
114 :on_change => Proc.new {|bot, v| bot.socket.sendq_burst = v })
116 @argv = params[:argv]
118 unless FileTest.directory? Config::datadir
119 puts "data directory '#{Config::datadir}' not found, did you install.rb?"
123 botclass = "/home/#{Etc.getlogin}/.rbot" unless botclass
124 @botclass = botclass.gsub(/\/$/, "")
126 unless FileTest.directory? botclass
127 puts "no #{botclass} directory found, creating from templates.."
128 if FileTest.exist? botclass
129 puts "Error: file #{botclass} exists but isn't a directory"
132 FileUtils.cp_r Config::datadir+'/templates', botclass
135 Dir.mkdir("#{botclass}/logs") unless File.exist?("#{botclass}/logs")
137 @startup_time = Time.new
138 @config = BotConfig.new(self)
139 # TODO background self after botconfig has a chance to run wizard
140 @timer = Timer::Timer.new(1.0) # only need per-second granularity
141 @registry = BotRegistry.new self
142 @timer.add(@config['core.save_every']) { save } if @config['core.save_every']
146 @httputil = Utils::HttpUtil.new(self)
147 @lang = Language::Language.new(@config['core.language'])
148 @keywords = Keywords.new(self)
149 @auth = IrcAuth.new(self)
151 Dir.mkdir("#{botclass}/plugins") unless File.exist?("#{botclass}/plugins")
152 @plugins = Plugins::Plugins.new(self, ["#{botclass}/plugins"])
154 @socket = IrcSocket.new(@config['server.name'], @config['server.port'], @config['server.bindhost'], @config['server.sendq_delay'], @config['server.sendq_burst'])
155 @nick = @config['irc.nick']
156 if @config['core.address_prefix']
157 @addressing_prefixes = @config['core.address_prefix'].split(" ")
159 @addressing_prefixes = Array.new
162 @client = IrcClient.new
163 @client[:privmsg] = proc { |data|
164 message = PrivMessage.new(self, data[:source], data[:target], data[:message])
167 @client[:notice] = proc { |data|
168 message = NoticeMessage.new(self, data[:source], data[:target], data[:message])
169 # pass it off to plugins that want to hear everything
170 @plugins.delegate "listen", message
172 @client[:motd] = proc { |data|
173 data[:motd].each_line { |line|
174 log "MOTD: #{line}", "server"
177 @client[:nicktaken] = proc { |data|
178 nickchg "#{data[:nick]}_"
180 @client[:badnick] = proc {|data|
181 puts "WARNING, bad nick (#{data[:nick]})"
183 @client[:ping] = proc {|data|
184 # (jump the queue for pongs)
185 @socket.puts "PONG #{data[:pingid]}"
187 @client[:nick] = proc {|data|
188 sourcenick = data[:sourcenick]
190 m = NickMessage.new(self, data[:source], data[:sourcenick], data[:nick])
191 if(sourcenick == @nick)
192 debug "my nick is now #{nick}"
195 @channels.each {|k,v|
196 if(v.users.has_key?(sourcenick))
197 log "@ #{sourcenick} is now known as #{nick}", k
198 v.users[nick] = v.users[sourcenick]
199 v.users.delete(sourcenick)
202 @plugins.delegate("listen", m)
203 @plugins.delegate("nick", m)
205 @client[:quit] = proc {|data|
206 source = data[:source]
207 sourcenick = data[:sourcenick]
208 sourceurl = data[:sourceaddress]
209 message = data[:message]
210 m = QuitMessage.new(self, data[:source], data[:sourcenick], data[:message])
211 if(data[:sourcenick] =~ /#{@nick}/i)
213 @channels.each {|k,v|
214 if(v.users.has_key?(sourcenick))
215 log "@ Quit: #{sourcenick}: #{message}", k
216 v.users.delete(sourcenick)
220 @plugins.delegate("listen", m)
221 @plugins.delegate("quit", m)
223 @client[:mode] = proc {|data|
224 source = data[:source]
225 sourcenick = data[:sourcenick]
226 sourceurl = data[:sourceaddress]
227 channel = data[:channel]
228 targets = data[:targets]
229 modestring = data[:modestring]
230 log "@ Mode #{modestring} #{targets} by #{sourcenick}", channel
232 @client[:welcome] = proc {|data|
233 log "joined server #{data[:source]} as #{data[:nick]}", "server"
234 debug "I think my nick is #{@nick}, server thinks #{data[:nick]}"
235 if data[:nick] && data[:nick].length > 0
239 @plugins.delegate("connect")
241 @config['irc.join_channels'].each {|c|
242 debug "autojoining channel #{c}"
243 if(c =~ /^(\S+)\s+(\S+)$/i)
250 @client[:join] = proc {|data|
251 m = JoinMessage.new(self, data[:source], data[:channel], data[:message])
254 @client[:part] = proc {|data|
255 m = PartMessage.new(self, data[:source], data[:channel], data[:message])
258 @client[:kick] = proc {|data|
259 m = KickMessage.new(self, data[:source], data[:target],data[:channel],data[:message])
262 @client[:invite] = proc {|data|
263 if(data[:target] =~ /^#{@nick}$/i)
264 join data[:channel] if (@auth.allow?("join", data[:source], data[:sourcenick]))
267 @client[:changetopic] = proc {|data|
268 channel = data[:channel]
269 sourcenick = data[:sourcenick]
271 timestamp = data[:unixtime] || Time.now.to_i
272 if(sourcenick == @nick)
273 log "@ I set topic \"#{topic}\"", channel
275 log "@ #{sourcenick} set topic \"#{topic}\"", channel
277 m = TopicMessage.new(self, data[:source], data[:channel], timestamp, data[:topic])
280 @plugins.delegate("listen", m)
281 @plugins.delegate("topic", m)
283 @client[:topic] = @client[:topicinfo] = proc {|data|
284 channel = data[:channel]
285 m = TopicMessage.new(self, data[:source], data[:channel], data[:unixtime], data[:topic])
288 @client[:names] = proc {|data|
289 channel = data[:channel]
291 unless(@channels[channel])
292 puts "bug: got names for channel '#{channel}' I didn't think I was in\n"
295 @channels[channel].users.clear
297 @channels[channel].users[u[0].sub(/^[@&~+]/, '')] = ["mode", u[1]]
300 @client[:unknown] = proc {|data|
301 #debug "UNKNOWN: #{data[:serverstring]}"
302 log data[:serverstring], ":unknown"
306 # connect the bot to IRC
308 trap("SIGTERM") { quit }
309 trap("SIGHUP") { quit }
310 trap("SIGINT") { quit }
314 raise "failed to connect to IRC server at #{@config['server.name']} #{@config['server.port']}: " + e
316 @socket.puts "PASS " + @config['server.password'] if @config['server.password']
317 @socket.puts "NICK #{@nick}\nUSER #{@config['irc.user']} 4 #{@config['server.name']} :Ruby bot. (c) Tom Gilbert"
320 # begin event handling loop
329 break unless reply = @socket.gets
330 @client.process reply
333 rescue TimeoutError, SocketError => e
334 puts "network exception: connection closed: #{e}"
335 puts e.backtrace.join("\n")
336 @socket.close # now we reconnect
337 rescue => e # TODO be selective, only grab Network errors
338 puts "unexpected exception: connection closed: #{e}"
339 puts e.backtrace.join("\n")
347 puts "waiting to reconnect"
348 sleep @config['server.reconnect_wait']
352 # type:: message type
353 # where:: message target
354 # message:: message text
355 # send message +message+ of type +type+ to target +where+
356 # Type can be PRIVMSG, NOTICE, etc, but those you should really use the
357 # relevant say() or notice() methods. This one should be used for IRCd
358 # extensions you want to use in modules.
359 def sendmsg(type, where, message)
360 # limit it 440 chars + CRLF.. so we have to split long lines
361 left = 440 - type.length - where.length - 3
363 if(left >= message.length)
364 sendq("#{type} #{where} :#{message}")
365 log_sent(type, where, message)
368 line = message.slice!(0, left)
369 lastspace = line.rindex(/\s+/)
371 message = line.slice!(lastspace, line.length) + message
372 message.gsub!(/^\s+/, "")
374 sendq("#{type} #{where} :#{line}")
375 log_sent(type, where, line)
376 end while(message.length > 0)
379 # queue an arbitraty message for the server
380 def sendq(message="")
382 @socket.queue(message)
385 # send a notice message to channel/nick +where+
386 def notice(where, message)
387 message.each_line { |line|
389 next unless(line.length > 0)
390 sendmsg("NOTICE", where, line)
394 # say something (PRIVMSG) to channel/nick +where+
395 def say(where, message)
396 message.to_s.gsub(/[\r\n]+/, "\n").each_line { |line|
398 next unless(line.length > 0)
399 unless((where =~ /^#/) && (@channels.has_key?(where) && @channels[where].quiet))
400 sendmsg("PRIVMSG", where, line)
405 # perform a CTCP action with message +message+ to channel/nick +where+
406 def action(where, message)
407 sendq("PRIVMSG #{where} :\001ACTION #{message}\001")
409 log "* #{@nick} #{message}", where
410 elsif (where =~ /^(\S*)!.*$/)
411 log "* #{@nick}[#{where}] #{message}", $1
413 log "* #{@nick}[#{where}] #{message}", where
417 # quick way to say "okay" (or equivalent) to +where+
419 say where, @lang.get("okay")
422 # log message +message+ to a file determined by +where+. +where+ can be a
423 # channel name, or a nick for private message logging
424 def log(message, where="server")
426 stamp = Time.now.strftime("%Y/%m/%d %H:%M:%S")
427 unless(@logs.has_key?(where))
428 @logs[where] = File.new("#{@botclass}/logs/#{where}", "a")
429 @logs[where].sync = true
431 @logs[where].puts "[#{stamp}] #{message}"
432 #debug "[#{stamp}] <#{where}> #{message}"
435 # set topic of channel +where+ to +topic+
436 def topic(where, topic)
437 sendq "TOPIC #{where} :#{topic}"
440 # disconnect from the server and cleanup all plugins and modules
441 def shutdown(message = nil)
442 trap("SIGTERM", "DEFAULT")
443 trap("SIGHUP", "DEFAULT")
444 trap("SIGINT", "DEFAULT")
445 message = @lang.get("quit") if (message.nil? || message.empty?)
449 @channels.each_value {|v|
450 log "@ quit (#{message})", v.name
452 @socket.puts "QUIT :#{message}"
456 puts "rbot quit (#{message})"
459 # message:: optional IRC quit message
460 # quit IRC, shutdown the bot
461 def quit(message=nil)
466 # totally shutdown and respawn the bot
468 shutdown("restarting, back in #{@config['server.reconnect_wait']}...")
469 sleep @config['server.reconnect_wait']
474 # call the save method for bot's config, keywords, auth and all plugins
483 # call the rescan method for the bot's lang, keywords and all plugins
490 # channel:: channel to join
491 # key:: optional channel key if channel is +s
493 def join(channel, key=nil)
495 sendq "JOIN #{channel} :#{key}"
497 sendq "JOIN #{channel}"
502 def part(channel, message="")
503 sendq "PART #{channel} :#{message}"
506 # attempt to change bot's nick to +name+
508 # if rbot is already taken, this happens:
509 # <giblet> rbot_, nick rbot
510 # --- rbot_ is now known as rbot__
511 # he should of course just keep his existing nick and report the error :P
517 def mode(channel, mode, target)
518 sendq "MODE #{channel} #{mode} #{target}"
521 # m:: message asking for help
522 # topic:: optional topic help is requested for
523 # respond to online help requests
525 topic = nil if topic == ""
528 helpstr = "help topics: core, auth, keywords"
529 helpstr += @plugins.helptopics
530 helpstr += " (help <topic> for more info)"
533 when /^core\s+(.+)$/i
534 helpstr = corehelp $1
537 when /^auth\s+(.+)$/i
538 helpstr = @auth.help $1
540 helpstr = @keywords.help
541 when /^keywords\s+(.+)$/i
542 helpstr = @keywords.help $1
544 unless(helpstr = @plugins.help(topic))
545 helpstr = "no help for topic #{topic}"
551 # returns a string describing the current status of the bot (uptime etc)
553 secs_up = Time.new - @startup_time
554 uptime = Utils.secs_to_string secs_up
555 return "Uptime #{uptime}, #{@plugins.length} plugins active, #{@registry.length} items stored in registry, #{@socket.lines_sent} lines sent, #{@socket.lines_received} received."
561 # handle help requests for "core" topics
562 def corehelp(topic="")
565 return "quit [<message>] => quit IRC with message <message>"
567 return "restart => completely stop and restart the bot (including reconnect)"
569 return "join <channel> [<key>] => join channel <channel> with secret key <key> if specified. #{@nick} also responds to invites if you have the required access level"
571 return "part <channel> => part channel <channel>"
573 return "hide => part all channels"
575 return "save => save current dynamic data and configuration"
577 return "rescan => reload modules and static facts"
579 return "nick <nick> => attempt to change nick to <nick>"
581 return "say <channel>|<nick> <message> => say <message> to <channel> or in private message to <nick>"
583 return "action <channel>|<nick> <message> => does a /me <message> to <channel> or in private message to <nick>"
585 return "topic <channel> <message> => set topic of <channel> to <message>"
587 return "quiet [in here|<channel>] => with no arguments, stop speaking in all channels, if \"in here\", stop speaking in this channel, or stop speaking in <channel>"
589 return "talk [in here|<channel>] => with no arguments, resume speaking in all channels, if \"in here\", resume speaking in this channel, or resume speaking in <channel>"
591 return "version => describes software version"
593 return "botsnack => reward #{@nick} for being good"
595 return "hello|hi|hey|yo [#{@nick}] => greet the bot"
597 return "Core help topics: quit, restart, config, join, part, hide, save, rescan, nick, say, action, topic, quiet, talk, version, botsnack, hello"
601 # handle incoming IRC PRIVMSG +m+
606 log "* [#{m.sourcenick}(#{m.sourceaddress})] #{m.message}", m.sourcenick
608 log "* #{m.sourcenick} #{m.message}", m.target
612 log "<#{m.sourcenick}> #{m.message}", m.target
614 log "[#{m.sourcenick}(#{m.sourceaddress})] #{m.message}", m.sourcenick
618 # pass it off to plugins that want to hear everything
619 @plugins.delegate "listen", m
621 if(m.private? && m.message =~ /^\001PING\s+(.+)\001/)
622 notice m.sourcenick, "\001PING #$1\001"
623 log "@ #{m.sourcenick} pinged me"
629 when (/^join\s+(\S+)\s+(\S+)$/i)
630 join $1, $2 if(@auth.allow?("join", m.source, m.replyto))
631 when (/^join\s+(\S+)$/i)
632 join $1 if(@auth.allow?("join", m.source, m.replyto))
634 part m.target if(m.public? && @auth.allow?("join", m.source, m.replyto))
635 when (/^part\s+(\S+)$/i)
636 part $1 if(@auth.allow?("join", m.source, m.replyto))
637 when (/^quit(?:\s+(.*))?$/i)
638 quit $1 if(@auth.allow?("quit", m.source, m.replyto))
640 restart if(@auth.allow?("quit", m.source, m.replyto))
642 join 0 if(@auth.allow?("join", m.source, m.replyto))
644 if(@auth.allow?("config", m.source, m.replyto))
648 when (/^nick\s+(\S+)$/i)
649 nickchg($1) if(@auth.allow?("nick", m.source, m.replyto))
650 when (/^say\s+(\S+)\s+(.*)$/i)
651 say $1, $2 if(@auth.allow?("say", m.source, m.replyto))
652 when (/^action\s+(\S+)\s+(.*)$/i)
653 action $1, $2 if(@auth.allow?("say", m.source, m.replyto))
654 when (/^topic\s+(\S+)\s+(.*)$/i)
655 topic $1, $2 if(@auth.allow?("topic", m.source, m.replyto))
656 when (/^mode\s+(\S+)\s+(\S+)\s+(.*)$/i)
657 mode $1, $2, $3 if(@auth.allow?("mode", m.source, m.replyto))
659 say m.replyto, "pong"
661 if(@auth.allow?("config", m.source, m.replyto))
666 if(auth.allow?("talk", m.source, m.replyto))
668 @channels.each_value {|c| c.quiet = true }
670 when (/^quiet in (\S+)$/i)
672 if(auth.allow?("talk", m.source, m.replyto))
674 where.gsub!(/^here$/, m.target) if m.public?
675 @channels[where].quiet = true if(@channels.has_key?(where))
678 if(auth.allow?("talk", m.source, m.replyto))
679 @channels.each_value {|c| c.quiet = false }
682 when (/^talk in (\S+)$/i)
684 if(auth.allow?("talk", m.source, m.replyto))
685 where.gsub!(/^here$/, m.target) if m.public?
686 @channels[where].quiet = false if(@channels.has_key?(where))
689 when (/^status\??$/i)
690 m.reply status if auth.allow?("status", m.source, m.replyto)
691 when (/^registry stats$/i)
692 if auth.allow?("config", m.source, m.replyto)
693 m.reply @registry.stat.inspect
695 when (/^(help\s+)?config(\s+|$)/)
697 when (/^(version)|(introduce yourself)$/i)
698 say m.replyto, "I'm a v. #{$version} rubybot, (c) Tom Gilbert - http://linuxbrit.co.uk/rbot/"
699 when (/^help(?:\s+(.*))?$/i)
700 say m.replyto, help($1)
701 #TODO move these to a "chatback" plugin
702 when (/^(botsnack|ciggie)$/i)
703 say m.replyto, @lang.get("thanks_X") % m.sourcenick if(m.public?)
704 say m.replyto, @lang.get("thanks") if(m.private?)
705 when (/^(hello|howdy|hola|salut|bonjour|sup|niihau|hey|hi(\W|$)|yo(\W|$)).*/i)
706 say m.replyto, @lang.get("hello_X") % m.sourcenick if(m.public?)
707 say m.replyto, @lang.get("hello") if(m.private?)
712 # stuff to handle when not addressed
714 when (/^\s*(hello|howdy|hola|salut|bonjour|sup|niihau|hey|hi(\W|$)|yo(\W|$))[\s,-.]+#{@nick}$/i)
715 say m.replyto, @lang.get("hello_X") % m.sourcenick
716 when (/^#{@nick}!*$/)
717 say m.replyto, @lang.get("hello_X") % m.sourcenick
724 # log a message. Internal use only.
725 def log_sent(type, where, message)
729 log "-=#{@nick}=- #{message}", where
730 elsif (where =~ /(\S*)!.*/)
731 log "[-=#{where}=-] #{message}", $1
733 log "[-=#{where}=-] #{message}"
737 log "<#{@nick}> #{message}", where
738 elsif (where =~ /^(\S*)!.*$/)
739 log "[msg(#{where})] #{message}", $1
741 log "[msg(#{where})] #{message}", where
747 @channels[m.channel] = IRCChannel.new(m.channel) unless(@channels.has_key?(m.channel))
749 debug "joined channel #{m.channel}"
750 log "@ Joined channel #{m.channel}", m.channel
752 log "@ #{m.sourcenick} joined channel #{m.channel}", m.channel
753 @channels[m.channel].users[m.sourcenick] = Hash.new
754 @channels[m.channel].users[m.sourcenick]["mode"] = ""
757 @plugins.delegate("listen", m)
758 @plugins.delegate("join", m)
763 debug "left channel #{m.channel}"
764 log "@ Left channel #{m.channel} (#{m.message})", m.channel
765 @channels.delete(m.channel)
767 log "@ #{m.sourcenick} left channel #{m.channel} (#{m.message})", m.channel
768 @channels[m.channel].users.delete(m.sourcenick)
771 # delegate to plugins
772 @plugins.delegate("listen", m)
773 @plugins.delegate("part", m)
776 # respond to being kicked from a channel
779 debug "kicked from channel #{m.channel}"
780 @channels.delete(m.channel)
781 log "@ You have been kicked from #{m.channel} by #{m.sourcenick} (#{m.message})", m.channel
783 @channels[m.channel].users.delete(m.sourcenick)
784 log "@ #{m.target} has been kicked from #{m.channel} by #{m.sourcenick} (#{m.message})", m.channel
787 @plugins.delegate("listen", m)
788 @plugins.delegate("kick", m)
792 @channels[m.channel] = IRCChannel.new(m.channel) unless(@channels.has_key?(m.channel))
793 @channels[m.channel].topic = m.topic if !m.topic.nil?
794 @channels[m.channel].topic.timestamp = m.timestamp if !m.timestamp.nil?
795 @channels[m.channel].topic.by = m.source if !m.source.nil?
797 debug "topic of channel #{m.channel} is now #{@channels[m.channel].topic}"
800 # delegate a privmsg to auth, keyword or plugin handlers
801 def delegate_privmsg(message)
802 [@auth, @plugins, @keywords].each {|m|
803 break if m.privmsg(message)