summaryrefslogtreecommitdiff
path: root/lib/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-03-14 01:19:01 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-03-14 01:19:01 +0000
commitb970f0d43f6bf69e4aec75120a9bf27b412ec331 (patch)
treef58b85145d50dd0201eb81cac089cfa3bea50f7c /lib/rbot
parent484d8fc1200f14793fbe02aa1948feafccea73ef (diff)
Socket IO filtering: rbot can now assume UTF-8 internally.
Diffstat (limited to 'lib/rbot')
-rw-r--r--lib/rbot/ircbot.rb8
-rw-r--r--lib/rbot/ircsocket.rb25
2 files changed, 27 insertions, 6 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb
index aee426b3..b58ebe2e 100644
--- a/lib/rbot/ircbot.rb
+++ b/lib/rbot/ircbot.rb
@@ -440,15 +440,15 @@ class Bot
@plugins = Plugins::pluginmanager
@plugins.bot_associate(self)
setup_plugins_path()
+
+ @socket = IrcSocket.new(@config['server.name'], @config['server.port'], @config['server.bindhost'], @config['server.sendq_delay'], @config['server.sendq_burst'], :ssl => @config['server.ssl'])
+ @client = Client.new
+
@plugins.scan
Utils.set_safe_save_dir("#{botclass}/safe_save")
@httputil = Utils::HttpUtil.new(self)
-
- @socket = IrcSocket.new(@config['server.name'], @config['server.port'], @config['server.bindhost'], @config['server.sendq_delay'], @config['server.sendq_burst'], :ssl => @config['server.ssl'])
- @client = Client.new
-
# Channels where we are quiet
# Array of channels names where the bot should be quiet
# '*' means all channels
diff --git a/lib/rbot/ircsocket.rb b/lib/rbot/ircsocket.rb
index 973ae9b8..5163e0ef 100644
--- a/lib/rbot/ircsocket.rb
+++ b/lib/rbot/ircsocket.rb
@@ -258,6 +258,26 @@ module Irc
# max lines to burst
attr_reader :sendq_burst
+ # an optional filter object. we call @filter.in(data) for
+ # all incoming data and @filter.out(data) for all outgoing data
+ attr_reader :filter
+
+ # default trivial filter class
+ class IdentityFilter
+ def in(x)
+ x
+ end
+
+ def out(x)
+ x
+ end
+ end
+
+ # set filter to identity, not to nil
+ def filter=(f)
+ @filter = f || IdentityFilter.new
+ end
+
# server:: server to connect to
# port:: IRCd port
# host:: optional local host to bind to (ruby 1.7+ required)
@@ -271,6 +291,7 @@ module Irc
@port = port.to_i
@host = host
@sock = nil
+ @filter = IdentityFilter.new
@spooler = false
@lines_sent = 0
@lines_received = 0
@@ -380,7 +401,7 @@ module Irc
return nil
end
begin
- reply = @sock.gets
+ reply = @filter.in(@sock.gets)
@lines_received += 1
reply.strip! if reply
debug "RECV: #{reply.inspect}"
@@ -483,7 +504,7 @@ module Irc
if @sock.nil?
error "SEND attempted on closed socket"
else
- @sock.puts message
+ @sock.puts(@filter.out(message))
@last_send = Time.new
@flood_send += message.irc_send_penalty if penalty
@lines_sent += 1