]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/ircbot.rb
5cb9c5d84e0af15135041d38e44f479cb4694cac
[user/henk/code/ruby/rbot.git] / lib / rbot / ircbot.rb
1 require 'thread'
2
3 require 'etc'
4 require 'fileutils'
5 require 'logger'
6
7 $debug = false unless $debug
8 $daemonize = false unless $daemonize
9
10 $dateformat = "%Y/%m/%d %H:%M:%S"
11 $logger = Logger.new($stderr)
12 $logger.datetime_format = $dateformat
13 $logger.level = $cl_loglevel if $cl_loglevel
14 $logger.level = 0 if $debug
15
16 def rawlog(level, message=nil, who_pos=1)
17   call_stack = caller
18   if call_stack.length > who_pos
19     who = call_stack[who_pos].sub(%r{(?:.+)/([^/]+):(\d+)(:in .*)?}) { "#{$1}:#{$2}#{$3}" }
20   else
21     who = "(unknown)"
22   end
23   # Output each line. To distinguish between separate messages and multi-line
24   # messages originating at the same time, we blank #{who} after the first message
25   # is output.
26   message.to_s.each_line { |l|
27     $logger.add(level, l.chomp, who)
28     who.gsub!(/./," ")
29   }
30 end
31
32 def log_session_start
33   $logger << "\n\n=== #{botclass} session started on #{Time.now.strftime($dateformat)} ===\n\n"
34 end
35
36 def log_session_end
37   $logger << "\n\n=== #{botclass} session ended on #{Time.now.strftime($dateformat)} ===\n\n"
38 end
39
40 def debug(message=nil, who_pos=1)
41   rawlog(Logger::Severity::DEBUG, message, who_pos)
42 end
43
44 def log(message=nil, who_pos=1)
45   rawlog(Logger::Severity::INFO, message, who_pos)
46 end
47
48 def warning(message=nil, who_pos=1)
49   rawlog(Logger::Severity::WARN, message, who_pos)
50 end
51
52 def error(message=nil, who_pos=1)
53   rawlog(Logger::Severity::ERROR, message, who_pos)
54 end
55
56 def fatal(message=nil, who_pos=1)
57   rawlog(Logger::Severity::FATAL, message, who_pos)
58 end
59
60 debug "debug test"
61 log "log test"
62 warning "warning test"
63 error "error test"
64 fatal "fatal test"
65
66 # The following global is used for the improved signal handling.
67 $interrupted = 0
68
69 # these first
70 require 'rbot/rbotconfig'
71 require 'rbot/config'
72 require 'rbot/utils'
73
74 require 'rbot/irc'
75 require 'rbot/rfc2812'
76 require 'rbot/ircsocket'
77 require 'rbot/botuser'
78 require 'rbot/timer'
79 require 'rbot/plugins'
80 # require 'rbot/channel'
81 require 'rbot/message'
82 require 'rbot/language'
83 require 'rbot/dbhash'
84 require 'rbot/registry'
85 require 'rbot/httputil'
86
87 module Irc
88
89 # Main bot class, which manages the various components, receives messages,
90 # handles them or passes them to plugins, and contains core functionality.
91 class IrcBot
92   # the bot's IrcAuth data
93   attr_reader :auth
94
95   # the bot's BotConfig data
96   attr_reader :config
97
98   # the botclass for this bot (determines configdir among other things)
99   attr_reader :botclass
100
101   # used to perform actions periodically (saves configuration once per minute
102   # by default)
103   attr_reader :timer
104
105   # synchronize with this mutex while touching permanent data files:
106   # saving, flushing, cleaning up ...
107   attr_reader :save_mutex
108
109   # bot's Language data
110   attr_reader :lang
111
112   # bot's irc socket
113   # TODO multiserver
114   attr_reader :socket
115
116   # bot's object registry, plugins get an interface to this for persistant
117   # storage (hash interface tied to a bdb file, plugins use Accessors to store
118   # and restore objects in their own namespaces.)
119   attr_reader :registry
120
121   # bot's plugins. This is an instance of class Plugins
122   attr_reader :plugins
123
124   # bot's httputil help object, for fetching resources via http. Sets up
125   # proxies etc as defined by the bot configuration/environment
126   attr_reader :httputil
127
128   # server we are connected to
129   # TODO multiserver
130   def server
131     @client.server
132   end
133
134   # bot User in the client/server connection
135   # TODO multiserver
136   def myself
137     @client.client
138   end
139
140   # bot User in the client/server connection
141   def nick
142     myself.nick
143   end
144
145   # create a new IrcBot with botclass +botclass+
146   def initialize(botclass, params = {})
147     # BotConfig for the core bot
148     # TODO should we split socket stuff into ircsocket, etc?
149     BotConfig.register BotConfigStringValue.new('server.name',
150       :default => "localhost", :requires_restart => true,
151       :desc => "What server should the bot connect to?",
152       :wizard => true)
153     BotConfig.register BotConfigIntegerValue.new('server.port',
154       :default => 6667, :type => :integer, :requires_restart => true,
155       :desc => "What port should the bot connect to?",
156       :validate => Proc.new {|v| v > 0}, :wizard => true)
157     BotConfig.register BotConfigBooleanValue.new('server.ssl',
158       :default => false, :requires_restart => true, :wizard => true,
159       :desc => "Use SSL to connect to this server?")
160     BotConfig.register BotConfigStringValue.new('server.password',
161       :default => false, :requires_restart => true,
162       :desc => "Password for connecting to this server (if required)",
163       :wizard => true)
164     BotConfig.register BotConfigStringValue.new('server.bindhost',
165       :default => false, :requires_restart => true,
166       :desc => "Specific local host or IP for the bot to bind to (if required)",
167       :wizard => true)
168     BotConfig.register BotConfigIntegerValue.new('server.reconnect_wait',
169       :default => 5, :validate => Proc.new{|v| v >= 0},
170       :desc => "Seconds to wait before attempting to reconnect, on disconnect")
171     BotConfig.register BotConfigFloatValue.new('server.sendq_delay',
172       :default => 2.0, :validate => Proc.new{|v| v >= 0},
173       :desc => "(flood prevention) the delay between sending messages to the server (in seconds)",
174       :on_change => Proc.new {|bot, v| bot.socket.sendq_delay = v })
175     BotConfig.register BotConfigIntegerValue.new('server.sendq_burst',
176       :default => 4, :validate => Proc.new{|v| v >= 0},
177       :desc => "(flood prevention) max lines to burst to the server before throttling. Most ircd's allow bursts of up 5 lines",
178       :on_change => Proc.new {|bot, v| bot.socket.sendq_burst = v })
179     BotConfig.register BotConfigIntegerValue.new('server.ping_timeout',
180       :default => 30, :validate => Proc.new{|v| v >= 0},
181       :desc => "reconnect if server doesn't respond to PING within this many seconds (set to 0 to disable)")
182
183     BotConfig.register BotConfigStringValue.new('irc.nick', :default => "rbot",
184       :desc => "IRC nickname the bot should attempt to use", :wizard => true,
185       :on_change => Proc.new{|bot, v| bot.sendq "NICK #{v}" })
186     BotConfig.register BotConfigStringValue.new('irc.user', :default => "rbot",
187       :requires_restart => true,
188       :desc => "local user the bot should appear to be", :wizard => true)
189     BotConfig.register BotConfigArrayValue.new('irc.join_channels',
190       :default => [], :wizard => true,
191       :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'")
192     BotConfig.register BotConfigArrayValue.new('irc.ignore_users',
193       :default => [], 
194       :desc => "Which users to ignore input from. This is mainly to avoid bot-wars triggered by creative people")
195
196     BotConfig.register BotConfigIntegerValue.new('core.save_every',
197       :default => 60, :validate => Proc.new{|v| v >= 0},
198       :on_change => Proc.new { |bot, v|
199         if @save_timer
200           if v > 0
201             @timer.reschedule(@save_timer, v)
202             @timer.unblock(@save_timer)
203           else
204             @timer.block(@save_timer)
205           end
206         else
207           if v > 0
208             @save_timer = @timer.add(v) { bot.save }
209           end
210           # Nothing to do when v == 0
211         end
212       },
213       :desc => "How often the bot should persist all configuration to disk (in case of a server crash, for example)")
214
215     BotConfig.register BotConfigBooleanValue.new('core.run_as_daemon',
216       :default => false, :requires_restart => true,
217       :desc => "Should the bot run as a daemon?")
218
219     BotConfig.register BotConfigStringValue.new('log.file',
220       :default => false, :requires_restart => true,
221       :desc => "Name of the logfile to which console messages will be redirected when the bot is run as a daemon")
222     BotConfig.register BotConfigIntegerValue.new('log.level',
223       :default => 1, :requires_restart => false,
224       :validate => Proc.new { |v| (0..5).include?(v) },
225       :on_change => Proc.new { |bot, v|
226         $logger.level = v
227       },
228       :desc => "The minimum logging level (0=DEBUG,1=INFO,2=WARN,3=ERROR,4=FATAL) for console messages")
229     BotConfig.register BotConfigIntegerValue.new('log.keep',
230       :default => 1, :requires_restart => true,
231       :validate => Proc.new { |v| v >= 0 },
232       :desc => "How many old console messages logfiles to keep")
233     BotConfig.register BotConfigIntegerValue.new('log.max_size',
234       :default => 10, :requires_restart => true,
235       :validate => Proc.new { |v| v > 0 },
236       :desc => "Maximum console messages logfile size (in megabytes)")
237
238     @argv = params[:argv]
239
240     unless FileTest.directory? Config::coredir
241       error "core directory '#{Config::coredir}' not found, did you setup.rb?"
242       exit 2
243     end
244
245     unless FileTest.directory? Config::datadir
246       error "data directory '#{Config::datadir}' not found, did you setup.rb?"
247       exit 2
248     end
249
250     unless botclass and not botclass.empty?
251       # We want to find a sensible default.
252       #  * On POSIX systems we prefer ~/.rbot for the effective uid of the process
253       #  * On Windows (at least the NT versions) we want to put our stuff in the
254       #    Application Data folder.
255       # We don't use any particular O/S detection magic, exploiting the fact that
256       # Etc.getpwuid is nil on Windows
257       if Etc.getpwuid(Process::Sys.geteuid)
258         botclass = Etc.getpwuid(Process::Sys.geteuid)[:dir].dup
259       else
260         if ENV.has_key?('APPDATA')
261           botclass = ENV['APPDATA'].dup
262           botclass.gsub!("\\","/")
263         end
264       end
265       botclass += "/.rbot"
266     end
267     botclass = File.expand_path(botclass)
268     @botclass = botclass.gsub(/\/$/, "")
269
270     unless FileTest.directory? botclass
271       log "no #{botclass} directory found, creating from templates.."
272       if FileTest.exist? botclass
273         error "file #{botclass} exists but isn't a directory"
274         exit 2
275       end
276       FileUtils.cp_r Config::datadir+'/templates', botclass
277     end
278
279     Dir.mkdir("#{botclass}/logs") unless File.exist?("#{botclass}/logs")
280     Dir.mkdir("#{botclass}/registry") unless File.exist?("#{botclass}/registry")
281     Dir.mkdir("#{botclass}/safe_save") unless File.exist?("#{botclass}/safe_save")
282     Utils.set_safe_save_dir("#{botclass}/safe_save")
283
284     # Time at which the last PING was sent
285     @last_ping = nil
286     # Time at which the last line was RECV'd from the server
287     @last_rec = nil
288
289     @startup_time = Time.new
290
291     begin
292       @config = BotConfig.configmanager
293       @config.bot_associate(self)
294     rescue => e
295       fatal e.inspect
296       fatal e.backtrace.join("\n")
297       log_session_end
298       exit 2
299     end
300
301     if @config['core.run_as_daemon']
302       $daemonize = true
303     end
304
305     @logfile = @config['log.file']
306     if @logfile.class!=String || @logfile.empty?
307       @logfile = "#{botclass}/#{File.basename(botclass).gsub(/^\.+/,'')}.log"
308     end
309
310     # See http://blog.humlab.umu.se/samuel/archives/000107.html
311     # for the backgrounding code 
312     if $daemonize
313       begin
314         exit if fork
315         Process.setsid
316         exit if fork
317       rescue NotImplementedError
318         warning "Could not background, fork not supported"
319       rescue => e
320         warning "Could not background. #{e.inspect}"
321       end
322       Dir.chdir botclass
323       # File.umask 0000                # Ensure sensible umask. Adjust as needed.
324       log "Redirecting standard input/output/error"
325       begin
326         STDIN.reopen "/dev/null"
327       rescue Errno::ENOENT
328         # On Windows, there's not such thing as /dev/null
329         STDIN.reopen "NUL"
330       end
331       def STDOUT.write(str=nil)
332         log str, 2
333         return str.to_s.length
334       end
335       def STDERR.write(str=nil)
336         if str.to_s.match(/:\d+: warning:/)
337           warning str, 2
338         else
339           error str, 2
340         end
341         return str.to_s.length
342       end
343     end
344
345     # Set the new logfile and loglevel. This must be done after the daemonizing
346     $logger = Logger.new(@logfile, @config['log.keep'], @config['log.max_size']*1024*1024)
347     $logger.datetime_format= $dateformat
348     $logger.level = @config['log.level']
349     $logger.level = $cl_loglevel if $cl_loglevel
350     $logger.level = 0 if $debug
351
352     log_session_start
353
354     @registry = BotRegistry.new self
355
356     @timer = Timer::Timer.new(1.0) # only need per-second granularity
357     @save_mutex = Mutex.new
358     if @config['core.save_every'] > 0
359       @save_timer = @timer.add(@config['core.save_every']) { save }
360     else
361       @save_timer = nil
362     end
363     @quit_mutex = Mutex.new
364
365     @logs = Hash.new
366
367     @httputil = Utils::HttpUtil.new(self)
368
369     @plugins = nil
370     @lang = Language::Language.new(self, @config['core.language'])
371
372     begin
373       @auth = Auth::authmanager
374       @auth.bot_associate(self)
375       # @auth.load("#{botclass}/botusers.yaml")
376     rescue => e
377       fatal e.inspect
378       fatal e.backtrace.join("\n")
379       log_session_end
380       exit 2
381     end
382     @auth.everyone.set_default_permission("*", true)
383     @auth.botowner.password= @config['auth.password']
384
385     Dir.mkdir("#{botclass}/plugins") unless File.exist?("#{botclass}/plugins")
386     @plugins = Plugins::pluginmanager
387     @plugins.bot_associate(self)
388     @plugins.add_botmodule_dir(Config::coredir)
389     @plugins.add_botmodule_dir("#{botclass}/plugins")
390     @plugins.add_botmodule_dir(Config::datadir + "/plugins")
391     @plugins.scan
392
393     @socket = IrcSocket.new(@config['server.name'], @config['server.port'], @config['server.bindhost'], @config['server.sendq_delay'], @config['server.sendq_burst'], :ssl => @config['server.ssl'])
394     @client = IrcClient.new
395     myself.nick = @config['irc.nick']
396
397     # Channels where we are quiet
398     # It's nil when we are not quiet, an empty list when we are quiet
399     # in all channels, a list of channels otherwise
400     @quiet = nil
401
402     @client[:welcome] = proc {|data|
403       irclog "joined server #{@client.server} as #{myself}", "server"
404
405       @plugins.delegate("connect")
406
407       @config['irc.join_channels'].each { |c|
408         debug "autojoining channel #{c}"
409         if(c =~ /^(\S+)\s+(\S+)$/i)
410           join $1, $2
411         else
412           join c if(c)
413         end
414       }
415     }
416
417     # TODO the next two @client should go into rfc2812.rb, probably
418     # Since capabs are two-steps processes, server.supports[:capab]
419     # should be a three-state: nil, [], [....]
420     asked_for = { :"identify-msg" => false }
421     @client[:isupport] = proc { |data|
422       if server.supports[:capab] and !asked_for[:"identify-msg"]
423         sendq "CAPAB IDENTIFY-MSG"
424         asked_for[:"identify-msg"] = true
425       end
426     }
427     @client[:datastr] = proc { |data|
428       if data[:text] == "IDENTIFY-MSG"
429         server.capabilities[:"identify-msg"] = true
430       else
431         debug "Not handling RPL_DATASTR #{data[:servermessage]}"
432       end
433     }
434
435     @client[:privmsg] = proc { |data|
436       m = PrivMessage.new(self, server, data[:source], data[:target], data[:message])
437       # debug "Message source is #{data[:source].inspect}"
438       # debug "Message target is #{data[:target].inspect}"
439       # debug "Bot is #{myself.inspect}"
440
441       ignored = false
442       @config['irc.ignore_users'].each { |mask|
443         if m.source.matches?(server.new_netmask(mask))
444           ignored = true
445           break
446         end
447       }
448
449       irclogprivmsg(m)
450
451       unless ignored
452         @plugins.delegate "listen", m
453         @plugins.privmsg(m) if m.address?
454       end
455     }
456     @client[:notice] = proc { |data|
457       message = NoticeMessage.new(self, server, data[:source], data[:target], data[:message])
458       # pass it off to plugins that want to hear everything
459       @plugins.delegate "listen", message
460     }
461     @client[:motd] = proc { |data|
462       data[:motd].each_line { |line|
463         irclog "MOTD: #{line}", "server"
464       }
465     }
466     @client[:nicktaken] = proc { |data|
467       nickchg "#{data[:nick]}_"
468       @plugins.delegate "nicktaken", data[:nick]
469     }
470     @client[:badnick] = proc {|data|
471       warning "bad nick (#{data[:nick]})"
472     }
473     @client[:ping] = proc {|data|
474       sendq "PONG #{data[:pingid]}"
475     }
476     @client[:pong] = proc {|data|
477       @last_ping = nil
478     }
479     @client[:nick] = proc {|data|
480       source = data[:source]
481       old = data[:oldnick]
482       new = data[:newnick]
483       m = NickMessage.new(self, server, source, old, new)
484       if source == myself
485         debug "my nick is now #{new}"
486       end
487       data[:is_on].each { |ch|
488         irclog "@ #{old} is now known as #{new}", ch
489       }
490       @plugins.delegate("listen", m)
491       @plugins.delegate("nick", m)
492     }
493     @client[:quit] = proc {|data|
494       source = data[:source]
495       message = data[:message]
496       m = QuitMessage.new(self, server, source, source, message)
497       data[:was_on].each { |ch|
498         irclog "@ Quit: #{source}: #{message}", ch
499       }
500       @plugins.delegate("listen", m)
501       @plugins.delegate("quit", m)
502     }
503     @client[:mode] = proc {|data|
504       irclog "@ Mode #{data[:modestring]} by #{data[:source]}", data[:channel]
505     }
506     @client[:join] = proc {|data|
507       m = JoinMessage.new(self, server, data[:source], data[:channel], data[:message])
508       irclogjoin(m)
509
510       @plugins.delegate("listen", m)
511       @plugins.delegate("join", m)
512     }
513     @client[:part] = proc {|data|
514       m = PartMessage.new(self, server, data[:source], data[:channel], data[:message])
515       irclogpart(m)
516
517       @plugins.delegate("listen", m)
518       @plugins.delegate("part", m)
519     }
520     @client[:kick] = proc {|data|
521       m = KickMessage.new(self, server, data[:source], data[:target], data[:channel],data[:message])
522       irclogkick(m)
523
524       @plugins.delegate("listen", m)
525       @plugins.delegate("kick", m)
526     }
527     @client[:invite] = proc {|data|
528       if data[:target] == myself
529         join data[:channel] if @auth.allow?("join", data[:source], data[:source].nick)
530       end
531     }
532     @client[:changetopic] = proc {|data|
533       m = TopicMessage.new(self, server, data[:source], data[:channel], data[:topic])
534       irclogtopic(m)
535
536       @plugins.delegate("listen", m)
537       @plugins.delegate("topic", m)
538     }
539     @client[:topic] = proc { |data|
540       irclog "@ Topic is \"#{data[:topic]}\"", data[:channel]
541     }
542     @client[:topicinfo] = proc { |data|
543       channel = data[:channel]
544       topic = channel.topic
545       irclog "@ Topic set by #{topic.set_by} on #{topic.set_on}", channel
546       m = TopicMessage.new(self, server, data[:source], channel, topic)
547
548       @plugins.delegate("listen", m)
549       @plugins.delegate("topic", m)
550     }
551     @client[:names] = proc { |data|
552       @plugins.delegate "names", data[:channel], data[:users]
553     }
554     @client[:unknown] = proc { |data|
555       #debug "UNKNOWN: #{data[:serverstring]}"
556       irclog data[:serverstring], ".unknown"
557     }
558   end
559
560   # checks if we should be quiet on a channel
561   def quiet_on?(channel)
562     return false unless @quiet
563     return true if @quiet.empty?
564     return @quiet.include?(channel.to_s)
565   end
566
567   def set_quiet(channel=nil)
568     if channel
569       @quiet << channel.to_s unless @quiet.include?(channel.to_s)
570     else
571       @quiet = []
572     end
573   end
574
575   def reset_quiet(channel=nil)
576     if channel
577       @quiet.delete_if { |x| x == channel.to_s }
578     else
579       @quiet = nil
580     end
581   end
582
583   # things to do when we receive a signal
584   def got_sig(sig)
585     debug "received #{sig}, queueing quit"
586     $interrupted += 1
587     quit unless @quit_mutex.locked?
588     debug "interrupted #{$interrupted} times"
589     if $interrupted >= 3
590       debug "drastic!"
591       log_session_end
592       exit 2
593     end
594   end
595
596   # connect the bot to IRC
597   def connect
598     begin
599       trap("SIGINT") { got_sig("SIGINT") }
600       trap("SIGTERM") { got_sig("SIGTERM") }
601       trap("SIGHUP") { got_sig("SIGHUP") }
602     rescue ArgumentError => e
603       debug "failed to trap signals (#{e.inspect}): running on Windows?"
604     rescue => e
605       debug "failed to trap signals: #{e.inspect}"
606     end
607     begin
608       quit if $interrupted > 0
609       @socket.connect
610     rescue => e
611       raise e.class, "failed to connect to IRC server at #{@config['server.name']} #{@config['server.port']}: " + e
612     end
613     quit if $interrupted > 0
614     @socket.emergency_puts "PASS " + @config['server.password'] if @config['server.password']
615     @socket.emergency_puts "NICK #{@config['irc.nick']}\nUSER #{@config['irc.user']} 4 #{@config['server.name']} :Ruby bot. (c) Tom Gilbert"
616     quit if $interrupted > 0
617   end
618
619   # begin event handling loop
620   def mainloop
621     while true
622       begin
623         quit if $interrupted > 0
624         connect
625         @timer.start
626
627         while @socket.connected?
628           quit if $interrupted > 0
629
630           # Wait for messages and process them as they arrive. If nothing is
631           # received, we call the ping_server() method that will PING the
632           # server if appropriate, or raise a TimeoutError if no PONG has been
633           # received in the user-chosen timeout since the last PING sent.
634           if @socket.select(1)
635             break unless reply = @socket.gets
636             @last_rec = Time.now
637             @client.process reply
638           else
639             ping_server
640           end
641         end
642
643       # I despair of this. Some of my users get "connection reset by peer"
644       # exceptions that ARENT SocketError's. How am I supposed to handle
645       # that?
646       rescue SystemExit
647         log_session_end
648         exit 0
649       rescue Errno::ETIMEDOUT, Errno::ECONNABORTED, TimeoutError, SocketError => e
650         error "network exception: #{e.class}: #{e}"
651         debug e.backtrace.join("\n")
652       rescue BDB::Fatal => e
653         fatal "fatal bdb error: #{e.class}: #{e}"
654         fatal e.backtrace.join("\n")
655         DBTree.stats
656         # Why restart? DB problems are serious stuff ...
657         # restart("Oops, we seem to have registry problems ...")
658         log_session_end
659         exit 2
660       rescue Exception => e
661         error "non-net exception: #{e.class}: #{e}"
662         error e.backtrace.join("\n")
663       rescue => e
664         fatal "unexpected exception: #{e.class}: #{e}"
665         fatal e.backtrace.join("\n")
666         log_session_end
667         exit 2
668       end
669
670       stop_server_pings
671       server.clear
672       if @socket.connected?
673         @socket.clearq
674         @socket.shutdown
675       end
676
677       log "disconnected"
678
679       quit if $interrupted > 0
680
681       log "waiting to reconnect"
682       sleep @config['server.reconnect_wait']
683     end
684   end
685
686   # type:: message type
687   # where:: message target
688   # message:: message text
689   # send message +message+ of type +type+ to target +where+
690   # Type can be PRIVMSG, NOTICE, etc, but those you should really use the
691   # relevant say() or notice() methods. This one should be used for IRCd
692   # extensions you want to use in modules.
693   def sendmsg(type, where, message, chan=nil, ring=0)
694     # The IRC protocol requires that each raw message must be not longer
695     # than 512 characters. From this length with have to subtract the EOL
696     # terminators (CR+LF) and the length of ":botnick!botuser@bothost "
697     # that will be prepended by the server to all of our messages.
698
699     # The maximum raw message length we can send is therefore 512 - 2 - 2
700     # minus the length of our hostmask.
701
702     max_len = 508 - myself.fullform.length
703
704     # On servers that support IDENTIFY-MSG, we have to subtract 1, because messages
705     # will have a + or - prepended
706     if server.capabilities[:"identify-msg"]
707       max_len -= 1
708     end
709
710     # When splitting the message, we'll be prefixing the following string:
711     # (e.g. "PRIVMSG #rbot :")
712     fixed = "#{type} #{where} :"
713
714     # And this is what's left
715     left = max_len - fixed.length
716     begin
717       if(left >= message.length)
718         sendq "#{fixed}#{message}", chan, ring
719         log_sent(type, where, message)
720         return
721       end
722       line = message.slice!(0, left)
723       lastspace = line.rindex(/\s+/)
724       if(lastspace)
725         message = line.slice!(lastspace, line.length) + message
726         message.gsub!(/^\s+/, "")
727       end
728       sendq "#{fixed}#{line}", chan, ring
729       log_sent(type, where, line)
730     end while(message.length > 0)
731   end
732
733   # queue an arbitraty message for the server
734   def sendq(message="", chan=nil, ring=0)
735     # temporary
736     @socket.queue(message, chan, ring)
737   end
738
739   # send a notice message to channel/nick +where+
740   def notice(where, message, mchan="", mring=-1)
741     if mchan == ""
742       chan = where
743     else
744       chan = mchan
745     end
746     if mring < 0
747       case where
748       when User
749         ring = 1
750       else
751         ring = 2
752       end
753     else
754       ring = mring
755     end
756     message.each_line { |line|
757       line.chomp!
758       next unless(line.length > 0)
759       sendmsg "NOTICE", where, line, chan, ring
760     }
761   end
762
763   # say something (PRIVMSG) to channel/nick +where+
764   def say(where, message, mchan="", mring=-1)
765     if mchan == ""
766       chan = where
767     else
768       chan = mchan
769     end
770     if mring < 0
771       case where
772       when User
773         ring = 1
774       else
775         ring = 2
776       end
777     else
778       ring = mring
779     end
780     message.to_s.gsub(/[\r\n]+/, "\n").each_line { |line|
781       line.chomp!
782       next unless(line.length > 0)
783       unless quiet_on?(where)
784         sendmsg "PRIVMSG", where, line, chan, ring 
785       end
786     }
787   end
788
789   # perform a CTCP action with message +message+ to channel/nick +where+
790   def action(where, message, mchan="", mring=-1)
791     if mchan == ""
792       chan = where
793     else
794       chan = mchan
795     end
796     if mring < 0
797       case where
798       when Channel
799         ring = 2
800       else
801         ring = 1
802       end
803     else
804       ring = mring
805     end
806     sendq "PRIVMSG #{where} :\001ACTION #{message}\001", chan, ring
807     case where
808     when Channel
809       irclog "* #{myself} #{message}", where
810     else
811       irclog "* #{myself}[#{where}] #{message}", where
812     end
813   end
814
815   # quick way to say "okay" (or equivalent) to +where+
816   def okay(where)
817     say where, @lang.get("okay")
818   end
819
820   # log IRC-related message +message+ to a file determined by +where+.
821   # +where+ can be a channel name, or a nick for private message logging
822   def irclog(message, where="server")
823     message = message.chomp
824     stamp = Time.now.strftime("%Y/%m/%d %H:%M:%S")
825     where = where.downcase.gsub(/[:!?$*()\/\\<>|"']/, "_")
826     unless(@logs.has_key?(where))
827       @logs[where] = File.new("#{@botclass}/logs/#{where}", "a")
828       @logs[where].sync = true
829     end
830     @logs[where].puts "[#{stamp}] #{message}"
831     #debug "[#{stamp}] <#{where}> #{message}"
832   end
833
834   # set topic of channel +where+ to +topic+
835   def topic(where, topic)
836     sendq "TOPIC #{where} :#{topic}", where, 2
837   end
838
839   # disconnect from the server and cleanup all plugins and modules
840   def shutdown(message = nil)
841     @quit_mutex.synchronize do
842       debug "Shutting down ..."
843       ## No we don't restore them ... let everything run through
844       # begin
845       #   trap("SIGINT", "DEFAULT")
846       #   trap("SIGTERM", "DEFAULT")
847       #   trap("SIGHUP", "DEFAULT")
848       # rescue => e
849       #   debug "failed to restore signals: #{e.inspect}\nProbably running on windows?"
850       # end
851       message = @lang.get("quit") if (message.nil? || message.empty?)
852       if @socket.connected?
853         debug "Clearing socket"
854         @socket.clearq
855         debug "Sending quit message"
856         @socket.emergency_puts "QUIT :#{message}"
857         debug "Flushing socket"
858         @socket.flush
859         debug "Shutting down socket"
860         @socket.shutdown
861       end
862       debug "Logging quits"
863       server.channels.each { |ch|
864         irclog "@ quit (#{message})", ch
865       }
866       debug "Saving"
867       save
868       debug "Cleaning up"
869       @save_mutex.synchronize do
870         @plugins.cleanup
871       end
872       # debug "Closing registries"
873       # @registry.close
874       debug "Cleaning up the db environment"
875       DBTree.cleanup_env
876       log "rbot quit (#{message})"
877     end
878   end
879
880   # message:: optional IRC quit message
881   # quit IRC, shutdown the bot
882   def quit(message=nil)
883     begin
884       shutdown(message)
885     ensure
886       exit 0
887     end
888   end
889
890   # totally shutdown and respawn the bot
891   def restart(message = false)
892     msg = message ? message : "restarting, back in #{@config['server.reconnect_wait']}..."
893     shutdown(msg)
894     sleep @config['server.reconnect_wait']
895     # now we re-exec
896     # Note, this fails on Windows
897     exec($0, *@argv)
898   end
899
900   # call the save method for all of the botmodules
901   def save
902     @save_mutex.synchronize do
903       @plugins.save
904       DBTree.cleanup_logs
905     end
906   end
907
908   # call the rescan method for all of the botmodules
909   def rescan
910     @save_mutex.synchronize do
911       @lang.rescan
912       @plugins.rescan
913     end
914   end
915
916   # channel:: channel to join
917   # key::     optional channel key if channel is +s
918   # join a channel
919   def join(channel, key=nil)
920     if(key)
921       sendq "JOIN #{channel} :#{key}", channel, 2
922     else
923       sendq "JOIN #{channel}", channel, 2
924     end
925   end
926
927   # part a channel
928   def part(channel, message="")
929     sendq "PART #{channel} :#{message}", channel, 2
930   end
931
932   # attempt to change bot's nick to +name+
933   def nickchg(name)
934     sendq "NICK #{name}"
935   end
936
937   # changing mode
938   def mode(channel, mode, target)
939     sendq "MODE #{channel} #{mode} #{target}", channel, 2
940   end
941
942   # kicking a user
943   def kick(channel, user, msg)
944     sendq "KICK #{channel} #{user} :#{msg}", channel, 2
945   end
946
947   # m::     message asking for help
948   # topic:: optional topic help is requested for
949   # respond to online help requests
950   def help(topic=nil)
951     topic = nil if topic == ""
952     case topic
953     when nil
954       helpstr = "help topics: "
955       helpstr += @plugins.helptopics
956       helpstr += " (help <topic> for more info)"
957     else
958       unless(helpstr = @plugins.help(topic))
959         helpstr = "no help for topic #{topic}"
960       end
961     end
962     return helpstr
963   end
964
965   # returns a string describing the current status of the bot (uptime etc)
966   def status
967     secs_up = Time.new - @startup_time
968     uptime = Utils.secs_to_string secs_up
969     # return "Uptime #{uptime}, #{@plugins.length} plugins active, #{@registry.length} items stored in registry, #{@socket.lines_sent} lines sent, #{@socket.lines_received} received."
970     return "Uptime #{uptime}, #{@plugins.length} plugins active, #{@socket.lines_sent} lines sent, #{@socket.lines_received} received."
971   end
972
973   # We want to respond to a hung server in a timely manner. If nothing was received
974   # in the user-selected timeout and we haven't PINGed the server yet, we PING
975   # the server. If the PONG is not received within the user-defined timeout, we
976   # assume we're in ping timeout and act accordingly.
977   def ping_server
978     act_timeout = @config['server.ping_timeout']
979     return if act_timeout <= 0
980     now = Time.now
981     if @last_rec && now > @last_rec + act_timeout
982       if @last_ping.nil?
983         # No previous PING pending, send a new one
984         sendq "PING :rbot"
985         @last_ping = Time.now
986       else
987         diff = now - @last_ping
988         if diff > act_timeout
989           debug "no PONG from server in #{diff} seconds, reconnecting"
990           # the actual reconnect is handled in the main loop:
991           raise TimeoutError, "no PONG from server in #{diff} seconds"
992         end
993       end
994     end
995   end
996
997   def stop_server_pings
998     # cancel previous PINGs and reset time of last RECV
999     @last_ping = nil
1000     @last_rec = nil
1001   end
1002
1003   private
1004
1005   def irclogprivmsg(m)
1006     if(m.action?)
1007       if(m.private?)
1008         irclog "* [#{m.sourcenick}(#{m.sourceaddress})] #{m.message}", m.sourcenick
1009       else
1010         irclog "* #{m.sourcenick} #{m.message}", m.target
1011       end
1012     else
1013       if(m.public?)
1014         irclog "<#{m.sourcenick}> #{m.message}", m.target
1015       else
1016         irclog "[#{m.sourcenick}(#{m.sourceaddress})] #{m.message}", m.sourcenick
1017       end
1018     end
1019   end
1020
1021   # log a message. Internal use only.
1022   def log_sent(type, where, message)
1023     case type
1024       when "NOTICE"
1025         case where
1026         when Channel
1027           irclog "-=#{myself}=- #{message}", where
1028         else
1029           irclog "[-=#{where}=-] #{message}", where
1030         end
1031       when "PRIVMSG"
1032         case where
1033         when Channel
1034           irclog "<#{myself}> #{message}", where
1035         else
1036           irclog "[msg(#{where})] #{message}", where
1037         end
1038     end
1039   end
1040
1041   def irclogjoin(m)
1042     if m.address?
1043       debug "joined channel #{m.channel}"
1044       irclog "@ Joined channel #{m.channel}", m.channel
1045     else
1046       irclog "@ #{m.sourcenick} joined channel #{m.channel}", m.channel
1047     end
1048   end
1049
1050   def irclogpart(m)
1051     if(m.address?)
1052       debug "left channel #{m.channel}"
1053       irclog "@ Left channel #{m.channel} (#{m.message})", m.channel
1054     else
1055       irclog "@ #{m.sourcenick} left channel #{m.channel} (#{m.message})", m.channel
1056     end
1057   end
1058
1059   def irclogkick(m)
1060     if(m.address?)
1061       debug "kicked from channel #{m.channel}"
1062       irclog "@ You have been kicked from #{m.channel} by #{m.sourcenick} (#{m.message})", m.channel
1063     else
1064       irclog "@ #{m.target} has been kicked from #{m.channel} by #{m.sourcenick} (#{m.message})", m.channel
1065     end
1066   end
1067
1068   def irclogtopic(m)
1069     if m.source == myself
1070       irclog "@ I set topic \"#{m.topic}\"", m.channel
1071     else
1072       irclog "@ #{m.source} set topic \"#{m.topic}\"", m.channel
1073     end
1074   end
1075
1076 end
1077
1078 end