summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-08-17 13:57:40 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-08-17 13:57:40 +0000
commit65a0f65101a02248d90d09432bf68f2e48187f07 (patch)
treeee91b23de23f454941e93f6f1ace999f7c1c0ff3
parent570d8535619cf3a9d20ca3d72e5176db2c4c8223 (diff)
Adapt topic plugin to new IRC framework
-rw-r--r--ChangeLog1
-rwxr-xr-xdata/rbot/plugins/topic.rb52
-rw-r--r--lib/rbot/irc.rb4
3 files changed, 34 insertions, 23 deletions
diff --git a/ChangeLog b/ChangeLog
index 269c051d..5de091d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@
* New Auth Framework: forgot to create the InvalidPassword exception.
It's a RuntimeError now.
* Fix help: this time for real (or so I hope).
+ * New IRC Framework: topic plugin now works correctly.
2006-08-12 Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
diff --git a/data/rbot/plugins/topic.rb b/data/rbot/plugins/topic.rb
index a3d32524..0b266851 100755
--- a/data/rbot/plugins/topic.rb
+++ b/data/rbot/plugins/topic.rb
@@ -42,18 +42,14 @@ class TopicPlugin < Plugin
def handletopic(m, param)
return unless m.kind_of?(PrivMessage)
if m.public?
- ch = m.channel.downcase
+ ch = m.channel
else
- ch = param[:channel].downcase
+ ch = m.server.get_channel(param[:channel])
+ return m.reply "I am not in channel #{ch}" unless ch
end
cmd = param[:command]
txt = param[:text].join(" ")
- unless @bot.channels.has_key?(ch)
- m.reply "I am not in channel #{ch}"
- return
- end
-
case cmd
when /^a(dd|ppend)$/
topicappend(m, ch, txt)
@@ -105,14 +101,18 @@ class TopicPlugin < Plugin
end
def setsep(ch, sep)
- if @registry.has_key?(ch)
- data = @registry[ch]
+ raise unless ch.class <= Irc::Channel
+ # TODO multiserver
+ k = ch.downcase
+
+ if @registry.has_key?(k)
+ data = @registry[k]
else
data = Hash.new
end
oldsep = getsep(ch)
- topic = @bot.channels[ch].topic.to_s
+ topic = ch.topic.text
topicarray = topic.split(/\s+#{Regexp.escape(oldsep)}\s*/)
if sep != oldsep and topicarray.length > 0
@@ -121,13 +121,17 @@ class TopicPlugin < Plugin
end
data[:separator] = sep
- @registry[ch] = data
+ @registry[k] = data
end
def getsep(ch)
- if @registry.has_key?(ch)
- if @registry[ch].has_key?(:separator)
- return @registry[ch][:separator]
+ raise unless ch.class <= Irc::Channel
+ # TODO multiserver
+ k = ch.downcase
+
+ if @registry.has_key?(k)
+ if @registry[k].has_key?(:separator)
+ return @registry[k][:separator]
end
end
return @separator
@@ -135,7 +139,7 @@ class TopicPlugin < Plugin
def topicaddat(m, channel, num, txt)
sep = getsep(channel)
- topic = @bot.channels[channel].topic.to_s
+ topic = channel.topic.to_s
topicarray = topic.split(/\s+#{Regexp.escape(sep)}\s*/)
topicarray.insert(num, txt)
newtopic = topicarray.join(" #{sep} ")
@@ -152,7 +156,7 @@ class TopicPlugin < Plugin
def topicdel(m, channel, num)
sep = getsep(channel)
- topic = @bot.channels[channel].topic.to_s
+ topic = channel.topic.to_s
topicarray = topic.split(/\s+#{Regexp.escape(sep)}\s*/)
topicarray.delete_at(num)
newtopic = topicarray.join(" #{sep} ")
@@ -161,14 +165,15 @@ class TopicPlugin < Plugin
def learntopic(m, channel)
return if !@bot.auth.allow?("learntopic", m.source, m.replyto)
- topic = @bot.channels[channel].topic.to_s
- if @registry.has_key?(channel)
- data = @registry[channel]
+ topic = channel.topic.to_s
+ k = channel.downcase
+ if @registry.has_key?(k)
+ data = @registry[k]
else
data = Hash.new
end
data[:topic] = topic
- @registry[channel] = data
+ @registry[k] = data
m.okay
end
@@ -181,11 +186,12 @@ class TopicPlugin < Plugin
newtopic = topicarray.join(" #{sep} ")
@bot.topic channel, newtopic
end
-
+
def restoretopic(m, channel)
return if !@bot.auth.allow?("restoretopic", m.source, m.replyto)
- if @registry.has_key?(channel) && @registry[channel].has_key?(:topic)
- topic = @registry[channel][:topic]
+ k = channel.downcase
+ if @registry.has_key?(k) && @registry[k].has_key?(:topic)
+ topic = @registry[k][:topic]
@bot.topic channel, topic
else
m.reply "I don't remember any topic for this channel"
diff --git a/lib/rbot/irc.rb b/lib/rbot/irc.rb
index 8ef55712..0cb3c472 100644
--- a/lib/rbot/irc.rb
+++ b/lib/rbot/irc.rb
@@ -1020,6 +1020,10 @@ module Irc
attr_reader :name, :topic, :mode, :users
alias :to_s :name
+ def downcase
+ self.to_s.irc_downcase(self.casemap)
+ end
+
def inspect
str = "<#{self.class}:#{'0x%x' % self.object_id}:"
str << " on server #{server}" if server