]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - lib/rbot/irc.rb
New Irc Framework: fix bug in debug message causing failures
[user/henk/code/ruby/rbot.git] / lib / rbot / irc.rb
index 6ef84eb0d64e1ed8e0603b9ee1d6a7d8e16cbcae..a4bd725ab22e41ff8142f4da9324458accfad42e 100644 (file)
@@ -3,7 +3,11 @@
 # * do we want to handle a Channel list for each User telling which\r
 #   Channels is the User on (of those the client is on too)?\r
 #   We may want this so that when a User leaves all Channels and he hasn't\r
-#   sent us privmsgs, we know remove him from the Server @users list\r
+#   sent us privmsgs, we know we can remove him from the Server @users list\r
+# * Maybe ChannelList and UserList should be HashesOf instead of ArrayOf?\r
+#   See items marked as TODO Ho.\r
+#   The framework to do this is now in place, thanks to the new [] method\r
+#   for NetmaskList, which allows retrieval by Netmask or String\r
 #++\r
 # :title: IRC module\r
 #\r
 \r
 require 'singleton'\r
 \r
+class Object\r
+\r
+  # We extend the Object class with a method that\r
+  # checks if the receiver is nil or empty\r
+  def nil_or_empty?\r
+    return true unless self\r
+    return true if self.respond_to? :empty and self.empty?\r
+    return false\r
+  end\r
+end\r
 \r
 # The Irc module is used to keep all IRC-related classes\r
 # in the same namespace\r
@@ -84,11 +98,18 @@ module Irc
       @key.to_s\r
     end\r
 \r
+    # Two Casemaps are equal if they have the same upper and lower ranges\r
+    #\r
+    def ==(arg)\r
+      other = arg.to_irc_casemap\r
+      return self.upper == other.upper && self.lower == other.lower\r
+    end\r
+\r
     # Raise an error if _arg_ and self are not the same Casemap\r
     #\r
     def must_be(arg)\r
       other = arg.to_irc_casemap\r
-      raise "Casemap mismatch (#{self} != #{other})" unless self == other\r
+      raise "Casemap mismatch (#{self.inspect} != #{other.inspect})" unless self == other\r
       return true\r
     end\r
 \r
@@ -176,14 +197,18 @@ module Irc
     # @server (if possible) or at the @casemap otherwise\r
     #\r
     def casemap\r
-      @server.casemap rescue @casemap\r
+      return @server.casemap if defined?(@server) and @server\r
+      return @casemap\r
     end\r
 \r
     # Returns a hash with the current @server and @casemap as values of\r
     # :server and :casemap\r
     #\r
     def server_and_casemap\r
-      {:server => @server, :casemap => @casemap}\r
+      h = {}\r
+      h[:server] = @server if defined?(@server) and @server\r
+      h[:casemap] = @casemap if defined?(@casemap) and @casemap\r
+      return h\r
     end\r
 \r
     # We allow up/downcasing with a different casemap\r
@@ -436,6 +461,13 @@ class ArrayOf < Array
     }\r
   end\r
 \r
+  # We introduce the 'downcase' method, which maps downcase() to all the Array\r
+  # elements, properly failing when the elements don't have a downcase method\r
+  #\r
+  def downcase\r
+    self.map { |el| el.downcase }\r
+  end\r
+\r
   # Modifying methods which we don't handle yet are made private\r
   #\r
   private :[]=, :collect!, :map!, :fill, :flatten!\r
@@ -515,7 +547,7 @@ module Irc
       if self.class == Netmask\r
         return self if fits_with_server_and_casemap?(opts)\r
       end\r
-      return self.fullform.to_irc_netmask(server_and_casemap.merge(opts))\r
+      return self.downcase.to_irc_netmask(opts)\r
     end\r
 \r
     # Converts the receiver into a User with the given (optional)\r
@@ -531,7 +563,7 @@ module Irc
     #\r
     def inspect\r
       str = "<#{self.class}:#{'0x%x' % self.object_id}:"\r
-      str << " @server=#{@server}" if @server\r
+      str << " @server=#{@server}" if defined?(@server) and @server\r
       str << " @nick=#{@nick.inspect} @user=#{@user.inspect}"\r
       str << " @host=#{@host.inspect} casemap=#{casemap.inspect}"\r
       str << ">"\r
@@ -612,10 +644,15 @@ module Irc
     #\r
     def matches?(arg)\r
       cmp = arg.to_irc_netmask(:casemap => casemap)\r
+      debug "Matching #{self.fullform} against #{arg.inspect} (#{cmp.fullform})"\r
       [:nick, :user, :host].each { |component|\r
         us = self.send(component).irc_downcase(casemap)\r
         them = cmp.send(component).irc_downcase(casemap)\r
-        raise NotImplementedError if us.has_irc_glob? && them.has_irc_glob?\r
+        if us.has_irc_glob? && them.has_irc_glob?\r
+          next if us == them\r
+          warn NotImplementedError\r
+          return false\r
+        end\r
         return false if us.has_irc_glob? && !them.has_irc_glob?\r
         return false unless us =~ them.to_irc_regexp\r
       }\r
@@ -653,6 +690,35 @@ module Irc
       super(Netmask, ar)\r
     end\r
 \r
+    # We enhance the [] method by allowing it to pick an element that matches\r
+    # a given Netmask, a String or a Regexp\r
+    # TODO take into consideration the opportunity to use select() instead of\r
+    # find(), and/or a way to let the user choose which one to take (second\r
+    # argument?)\r
+    #\r
+    def [](*args)\r
+      if args.length == 1\r
+        case args[0]\r
+        when Netmask\r
+          self.find { |mask|\r
+            mask.matches?(args[0])\r
+          }\r
+        when String\r
+          self.find { |mask|\r
+            mask.matches?(args[0].to_irc_netmask(:casemap => mask.casemap))\r
+          }\r
+        when Regexp\r
+          self.find { |mask|\r
+            mask.fullform =~ args[0]\r
+          }\r
+        else\r
+          super(*args)\r
+        end\r
+      else\r
+        super(*args)\r
+      end\r
+    end\r
+\r
   end\r
 \r
 end\r
@@ -755,6 +821,21 @@ module Irc
       end\r
     end\r
 \r
+    # Users can be either simply downcased (their nick only)\r
+    # or fully downcased: this will return the fullform downcased\r
+    # according to the given casemap.\r
+    #\r
+    def full_irc_downcase(cmap=casemap)\r
+      self.fullform.irc_downcase(cmap)\r
+    end\r
+\r
+    # full_downcase() will return the fullform downcased according to the\r
+    # User's own casemap\r
+    #\r
+    def full_downcase\r
+      self.full_irc_downcase\r
+    end\r
+\r
     # Since to_irc_user runs the same checks on server and channel as\r
     # to_irc_netmask, we just try that and return self if it works.\r
     #\r
@@ -762,7 +843,7 @@ module Irc
     #\r
     def to_irc_user(opts={})\r
       return self if fits_with_server_and_casemap?(opts)\r
-      return self.fullform.to_irc_user(server_and_casemap(opts))\r
+      return self.full_downcase.to_irc_user(opts)\r
     end\r
 \r
     # We can replace everything at once with data from another User\r
@@ -770,14 +851,14 @@ module Irc
     def replace(other)\r
       case other\r
       when User\r
-        nick = other.nick\r
-        user = other.user\r
-        host = other.host\r
+        self.nick = other.nick\r
+        self.user = other.user\r
+        self.host = other.host\r
         @server = other.server\r
         @casemap = other.casemap unless @server\r
-        @away = other.away\r
+        @away = other.away?\r
       else\r
-        replace(other.to_irc_user(server_and_casemap))\r
+        self.replace(other.to_irc_user(server_and_casemap))\r
       end\r
     end\r
 \r
@@ -785,14 +866,24 @@ module Irc
 \r
 \r
   # A UserList is an ArrayOf <code>User</code>s\r
+  # We derive it from NetmaskList, which allows us to inherit any special\r
+  # NetmaskList method\r
   #\r
-  class UserList < ArrayOf\r
+  class UserList < NetmaskList\r
 \r
     # Create a new UserList, optionally filling it with the elements from\r
     # the Array argument fed to it.\r
     #\r
     def initialize(ar=[])\r
-      super(User, ar)\r
+      super(ar)\r
+      @element_class = User\r
+    end\r
+\r
+    # Convenience method: convert the UserList to a list of nicks. The indices\r
+    # are preserved\r
+    #\r
+    def nicks\r
+      self.map { |user| user.nick }\r
     end\r
 \r
   end\r
@@ -826,6 +917,7 @@ module Irc
     # Mode on a Channel\r
     #\r
     class Mode\r
+      attr_reader :channel\r
       def initialize(ch)\r
         @channel = ch\r
       end\r
@@ -835,7 +927,10 @@ module Irc
 \r
     # Channel modes of type A manipulate lists\r
     #\r
+    # Example: b (banlist)\r
+    #\r
     class ModeTypeA < Mode\r
+      attr_reader :list\r
       def initialize(ch)\r
         super\r
         @list = NetmaskList.new\r
@@ -856,12 +951,19 @@ module Irc
 \r
     # Channel modes of type B need an argument\r
     #\r
+    # Example: k (key)\r
+    #\r
     class ModeTypeB < Mode\r
       def initialize(ch)\r
         super\r
         @arg = nil\r
       end\r
 \r
+      def status\r
+        @arg\r
+      end\r
+      alias :value :status\r
+\r
       def set(val)\r
         @arg = val\r
       end\r
@@ -879,6 +981,8 @@ module Irc
     # modes of type A\r
     #\r
     class UserMode < ModeTypeB\r
+      attr_reader :list\r
+      alias :users :list\r
       def initialize(ch)\r
         super\r
         @list = UserList.new\r
@@ -900,22 +1004,25 @@ module Irc
     # Channel modes of type C need an argument when set,\r
     # but not when they get reset\r
     #\r
+    # Example: l (limit)\r
+    #\r
     class ModeTypeC < Mode\r
       def initialize(ch)\r
         super\r
-        @arg = false\r
+        @arg = nil\r
       end\r
 \r
       def status\r
         @arg\r
       end\r
+      alias :value :status\r
 \r
       def set(val)\r
         @arg = val\r
       end\r
 \r
       def reset\r
-        @arg = false\r
+        @arg = nil\r
       end\r
 \r
     end\r
@@ -923,6 +1030,8 @@ module Irc
 \r
     # Channel modes of type D are basically booleans\r
     #\r
+    # Example: m (moderate)\r
+    #\r
     class ModeTypeD < Mode\r
       def initialize(ch)\r
         super\r
@@ -1008,7 +1117,7 @@ module Irc
       str = "<#{self.class}:#{'0x%x' % self.object_id}:"\r
       str << " on server #{server}" if server\r
       str << " @name=#{@name.inspect} @topic=#{@topic.text.inspect}"\r
-      str << " @users=[#{@users.sort.join(', ')}]"\r
+      str << " @users=[#{user_nicks.sort.join(', ')}]"\r
       str << ">"\r
     end\r
 \r
@@ -1018,6 +1127,35 @@ module Irc
       self\r
     end\r
 \r
+    # TODO Ho\r
+    def user_nicks\r
+      @users.map { |u| u.downcase }\r
+    end\r
+\r
+    # Checks if the receiver already has a user with the given _nick_\r
+    #\r
+    def has_user?(nick)\r
+      user_nicks.index(nick.irc_downcase(casemap))\r
+    end\r
+\r
+    # Returns the user with nick _nick_, if available\r
+    #\r
+    def get_user(nick)\r
+      idx = has_user?(nick)\r
+      @users[idx] if idx\r
+    end\r
+\r
+    # Adds a user to the channel\r
+    #\r
+    def add_user(user, opts={})\r
+      silent = opts.fetch(:silent, false) \r
+      if has_user?(user) && !silent\r
+        warn "Trying to add user #{user} to channel #{self} again"\r
+      else\r
+        @users << user.to_irc_user(server_and_casemap)\r
+      end\r
+    end\r
+\r
     # Creates a new channel with the given name, optionally setting the topic\r
     # and an initial users list.\r
     #\r
@@ -1038,7 +1176,7 @@ module Irc
       @users = UserList.new\r
 \r
       users.each { |u|\r
-        @users << u.to_irc_user(server_and_casemap)\r
+        add_user(u)\r
       }\r
 \r
       # Flags\r
@@ -1063,25 +1201,25 @@ module Irc
     # A channel is local to a server if it has the '&' prefix\r
     #\r
     def local?\r
-      name[0] = 0x26\r
+      name[0] == 0x26\r
     end\r
 \r
     # A channel is modeless if it has the '+' prefix\r
     #\r
     def modeless?\r
-      name[0] = 0x2b\r
+      name[0] == 0x2b\r
     end\r
 \r
     # A channel is safe if it has the '!' prefix\r
     #\r
     def safe?\r
-      name[0] = 0x21\r
+      name[0] == 0x21\r
     end\r
 \r
     # A channel is normal if it has the '#' prefix\r
     #\r
     def normal?\r
-      name[0] = 0x23\r
+      name[0] == 0x23\r
     end\r
 \r
     # Create a new mode\r
@@ -1104,6 +1242,13 @@ module Irc
       super(Channel, ar)\r
     end\r
 \r
+    # Convenience method: convert the ChannelList to a list of channel names.\r
+    # The indices are preserved\r
+    #\r
+    def names\r
+      self.map { |chan| chan.name }\r
+    end\r
+\r
   end\r
 \r
 end\r
@@ -1134,10 +1279,12 @@ module Irc
 \r
     attr_reader :channels, :users\r
 \r
+    # TODO Ho\r
     def channel_names\r
       @channels.map { |ch| ch.downcase }\r
     end\r
 \r
+    # TODO Ho\r
     def user_nicks\r
       @users.map { |u| u.downcase }\r
     end\r
@@ -1176,7 +1323,7 @@ module Irc
     #\r
     def reset_capabilities\r
       @supports = {\r
-        :casemapping => 'rfc1459',\r
+        :casemapping => 'rfc1459'.to_irc_casemap,\r
         :chanlimit => {},\r
         :chanmodes => {\r
           :typea => nil, # Type A: address lists\r
@@ -1269,27 +1416,18 @@ module Irc
           key = prekey.downcase.to_sym\r
         end\r
         case key\r
-        when :casemapping, :network\r
+        when :casemapping\r
           noval_warn(key, val) {\r
-            @supports[key] = val\r
+            @supports[key] = val.to_irc_casemap\r
           }\r
         when :chanlimit, :idchan, :maxlist, :targmax\r
           noval_warn(key, val) {\r
             groups = val.split(',')\r
             groups.each { |g|\r
               k, v = g.split(':')\r
-              @supports[key][k] = v.to_i\r
+              @supports[key][k] = v.to_i || 0\r
             }\r
           }\r
-        when :maxchannels\r
-          noval_warn(key, val) {\r
-            reparse += "CHANLIMIT=(chantypes):#{val} "\r
-          }\r
-        when :maxtargets\r
-          noval_warn(key, val) {\r
-            @supports[key]['PRIVMSG'] = val.to_i\r
-            @supports[key]['NOTICE'] = val.to_i\r
-          }\r
         when :chanmodes\r
           noval_warn(key, val) {\r
             groups = val.split(',')\r
@@ -1312,6 +1450,19 @@ module Irc
         when :invex\r
           val ||= 'I'\r
           @supports[key] = val\r
+        when :maxchannels\r
+          noval_warn(key, val) {\r
+            reparse += "CHANLIMIT=(chantypes):#{val} "\r
+          }\r
+        when :maxtargets\r
+          noval_warn(key, val) {\r
+            @supports[:targmax]['PRIVMSG'] = val.to_i\r
+            @supports[:targmax]['NOTICE'] = val.to_i\r
+          }\r
+        when :network\r
+          noval_warn(key, val) {\r
+            @supports[key] = val\r
+          }\r
         when :nicklen\r
           noval_warn(key, val) {\r
             @supports[key] = val.to_i\r
@@ -1376,13 +1527,15 @@ module Irc
     # Checks if the receiver already has a channel with the given _name_\r
     #\r
     def has_channel?(name)\r
-      channel_names.index(name.downcase)\r
+      return false if name.nil_or_empty?\r
+      channel_names.index(name.irc_downcase(casemap))\r
     end\r
     alias :has_chan? :has_channel?\r
 \r
     # Returns the channel with name _name_, if available\r
     #\r
     def get_channel(name)\r
+      return nil if name.nil_or_empty?\r
       idx = has_channel?(name)\r
       channels[idx] if idx\r
     end\r
@@ -1391,9 +1544,15 @@ module Irc
     # Create a new Channel object bound to the receiver and add it to the\r
     # list of <code>Channel</code>s on the receiver, unless the channel was\r
     # present already. In this case, the default action is to raise an\r
-    # exception, unless _fails_ is set to false\r
+    # exception, unless _fails_ is set to false.  An exception can also be\r
+    # raised if _str_ is nil or empty, again only if _fails_ is set to true;\r
+    # otherwise, the method just returns nil\r
     #\r
     def new_channel(name, topic=nil, users=[], fails=true)\r
+      if name.nil_or_empty?\r
+        raise "Tried to look for empty or nil channel name #{name.inspect}" if fails\r
+        return nil\r
+      end\r
       ex = get_chan(name)\r
       if ex\r
         raise "Channel #{name} already exists on server #{self}" if fails\r
@@ -1480,7 +1639,8 @@ module Irc
     # Checks if the receiver already has a user with the given _nick_\r
     #\r
     def has_user?(nick)\r
-      user_nicks.index(nick.downcase)\r
+      return false if nick.nil_or_empty?\r
+      user_nicks.index(nick.irc_downcase(casemap))\r
     end\r
 \r
     # Returns the user with nick _nick_, if available\r
@@ -1493,22 +1653,31 @@ module Irc
     # Create a new User object bound to the receiver and add it to the list\r
     # of <code>User</code>s on the receiver, unless the User was present\r
     # already. In this case, the default action is to raise an exception,\r
-    # unless _fails_ is set to false\r
+    # unless _fails_ is set to false. An exception can also be raised\r
+    # if _str_ is nil or empty, again only if _fails_ is set to true;\r
+    # otherwise, the method just returns nil\r
     #\r
     def new_user(str, fails=true)\r
+      if str.nil_or_empty?\r
+        raise "Tried to look for empty or nil user name #{str.inspect}" if fails\r
+        return nil\r
+      end\r
       tmp = str.to_irc_user(:server => self)\r
       old = get_user(tmp.nick)\r
+      # debug "Tmp: #{tmp.inspect}"\r
+      # debug "Old: #{old.inspect}"\r
       if old\r
         # debug "User already existed as #{old.inspect}"\r
         if tmp.known?\r
           if old.known?\r
+            # debug "Both were known"\r
             # Do not raise an error: things like Freenode change the hostname after identification\r
             warning "User #{tmp.nick} has inconsistent Netmasks! #{self} knows #{old.inspect} but access was tried with #{tmp.inspect}" if old != tmp\r
             raise "User #{tmp} already exists on server #{self}" if fails\r
           end\r
-          if old != tmp\r
+          if old.fullform.downcase != tmp.fullform.downcase\r
             old.replace(tmp)\r
-            # debug "User improved to #{old.inspect}"\r
+            # debug "Known user now #{old.inspect}"\r
           end\r
         end\r
         return old\r
@@ -1559,7 +1728,7 @@ module Irc
       @users.inject(UserList.new) {\r
         |list, user|\r
         if user.user == "*" or user.host == "*"\r
-          list << user if user.nick.downcase =~ nm.nick.downcase.to_irc_regexp\r
+          list << user if user.nick.irc_downcase(casemap) =~ nm.nick.irc_downcase(casemap).to_irc_regexp\r
         else\r
           list << user if user.matches?(nm)\r
         end\r