]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/irc.rb
New Irc Framework: netmask generalization now takes into consideration AzzurraNet...
[user/henk/code/ruby/rbot.git] / lib / rbot / irc.rb
1 #-- vim:sw=2:et\r
2 # General TODO list\r
3 # * do we want to handle a Channel list for each User telling which\r
4 #   Channels is the User on (of those the client is on too)?\r
5 #   We may want this so that when a User leaves all Channels and he hasn't\r
6 #   sent us privmsgs, we know we can remove him from the Server @users list\r
7 # * Maybe ChannelList and UserList should be HashesOf instead of ArrayOf?\r
8 #   See items marked as TODO Ho.\r
9 #   The framework to do this is now in place, thanks to the new [] method\r
10 #   for NetmaskList, which allows retrieval by Netmask or String\r
11 #++\r
12 # :title: IRC module\r
13 #\r
14 # Basic IRC stuff\r
15 #\r
16 # This module defines the fundamental building blocks for IRC\r
17 #\r
18 # Author:: Giuseppe Bilotta (giuseppe.bilotta@gmail.com)\r
19 # Copyright:: Copyright (c) 2006 Giuseppe Bilotta\r
20 # License:: GPLv2\r
21 \r
22 require 'singleton'\r
23 \r
24 class Object\r
25 \r
26   # We extend the Object class with a method that\r
27   # checks if the receiver is nil or empty\r
28   def nil_or_empty?\r
29     return true unless self\r
30     return true if self.respond_to? :empty and self.empty?\r
31     return false\r
32   end\r
33 \r
34   # We alias the to_s method to __to_s__ to make\r
35   # it accessible in all classes\r
36   alias :__to_s__ :to_s \r
37 end\r
38 \r
39 # The Irc module is used to keep all IRC-related classes\r
40 # in the same namespace\r
41 #\r
42 module Irc\r
43 \r
44 \r
45   # Due to its Scandinavian origins, IRC has strange case mappings, which\r
46   # consider the characters <tt>{}|^</tt> as the uppercase\r
47   # equivalents of # <tt>[]\~</tt>.\r
48   #\r
49   # This is however not the same on all IRC servers: some use standard ASCII\r
50   # casemapping, other do not consider <tt>^</tt> as the uppercase of\r
51   # <tt>~</tt>\r
52   #\r
53   class Casemap\r
54     @@casemaps = {}\r
55 \r
56     # Create a new casemap with name _name_, uppercase characters _upper_ and\r
57     # lowercase characters _lower_\r
58     #\r
59     def initialize(name, upper, lower)\r
60       @key = name.to_sym\r
61       raise "Casemap #{name.inspect} already exists!" if @@casemaps.has_key?(@key)\r
62       @@casemaps[@key] = {\r
63         :upper => upper,\r
64         :lower => lower,\r
65         :casemap => self\r
66       }\r
67     end\r
68 \r
69     # Returns the Casemap with the given name\r
70     #\r
71     def Casemap.get(name)\r
72       @@casemaps[name.to_sym][:casemap]\r
73     end\r
74 \r
75     # Retrieve the 'uppercase characters' of this Casemap\r
76     #\r
77     def upper\r
78       @@casemaps[@key][:upper]\r
79     end\r
80 \r
81     # Retrieve the 'lowercase characters' of this Casemap\r
82     #\r
83     def lower\r
84       @@casemaps[@key][:lower]\r
85     end\r
86 \r
87     # Return a Casemap based on the receiver\r
88     #\r
89     def to_irc_casemap\r
90       self\r
91     end\r
92 \r
93     # A Casemap is represented by its lower/upper mappings\r
94     #\r
95     def inspect\r
96       self.__to_s__[0..-2] + " #{upper.inspect} ~(#{self})~ #{lower.inspect}>"\r
97     end\r
98 \r
99     # As a String we return our name\r
100     #\r
101     def to_s\r
102       @key.to_s\r
103     end\r
104 \r
105     # Two Casemaps are equal if they have the same upper and lower ranges\r
106     #\r
107     def ==(arg)\r
108       other = arg.to_irc_casemap\r
109       return self.upper == other.upper && self.lower == other.lower\r
110     end\r
111 \r
112     # Give a warning if _arg_ and self are not the same Casemap\r
113     #\r
114     def must_be(arg)\r
115       other = arg.to_irc_casemap\r
116       if self == other\r
117         return true\r
118       else\r
119         warn "Casemap mismatch (#{self.inspect} != #{other.inspect})"\r
120         return false\r
121       end\r
122     end\r
123 \r
124   end\r
125 \r
126   # The rfc1459 casemap\r
127   #\r
128   class RfcCasemap < Casemap\r
129     include Singleton\r
130 \r
131     def initialize\r
132       super('rfc1459', "\x41-\x5e", "\x61-\x7e")\r
133     end\r
134 \r
135   end\r
136   RfcCasemap.instance\r
137 \r
138   # The strict-rfc1459 Casemap\r
139   #\r
140   class StrictRfcCasemap < Casemap\r
141     include Singleton\r
142 \r
143     def initialize\r
144       super('strict-rfc1459', "\x41-\x5d", "\x61-\x7d")\r
145     end\r
146 \r
147   end\r
148   StrictRfcCasemap.instance\r
149 \r
150   # The ascii Casemap\r
151   #\r
152   class AsciiCasemap < Casemap\r
153     include Singleton\r
154 \r
155     def initialize\r
156       super('ascii', "\x41-\x5a", "\x61-\x7a")\r
157     end\r
158 \r
159   end\r
160   AsciiCasemap.instance\r
161 \r
162 \r
163   # This module is included by all classes that are either bound to a server\r
164   # or should have a casemap.\r
165   #\r
166   module ServerOrCasemap\r
167 \r
168     attr_reader :server\r
169 \r
170     # This method initializes the instance variables @server and @casemap\r
171     # according to the values of the hash keys :server and :casemap in _opts_\r
172     #\r
173     def init_server_or_casemap(opts={})\r
174       @server = opts.fetch(:server, nil)\r
175       raise TypeError, "#{@server} is not a valid Irc::Server" if @server and not @server.kind_of?(Server)\r
176 \r
177       @casemap = opts.fetch(:casemap, nil)\r
178       if @server\r
179         if @casemap\r
180           @server.casemap.must_be(@casemap)\r
181           @casemap = nil\r
182         end\r
183       else\r
184         @casemap = (@casemap || 'rfc1459').to_irc_casemap\r
185       end\r
186     end\r
187 \r
188     # This is an auxiliary method: it returns true if the receiver fits the\r
189     # server and casemap specified in _opts_, false otherwise.\r
190     #\r
191     def fits_with_server_and_casemap?(opts={})\r
192       srv = opts.fetch(:server, nil)\r
193       cmap = opts.fetch(:casemap, nil)\r
194       cmap = cmap.to_irc_casemap unless cmap.nil?\r
195 \r
196       if srv.nil?\r
197         return true if cmap.nil? or cmap == casemap\r
198       else\r
199         return true if srv == @server and (cmap.nil? or cmap == casemap)\r
200       end\r
201       return false\r
202     end\r
203 \r
204     # Returns the casemap of the receiver, by looking at the bound\r
205     # @server (if possible) or at the @casemap otherwise\r
206     #\r
207     def casemap\r
208       return @server.casemap if defined?(@server) and @server\r
209       return @casemap\r
210     end\r
211 \r
212     # Returns a hash with the current @server and @casemap as values of\r
213     # :server and :casemap\r
214     #\r
215     def server_and_casemap\r
216       h = {}\r
217       h[:server] = @server if defined?(@server) and @server\r
218       h[:casemap] = @casemap if defined?(@casemap) and @casemap\r
219       return h\r
220     end\r
221 \r
222     # We allow up/downcasing with a different casemap\r
223     #\r
224     def irc_downcase(cmap=casemap)\r
225       self.to_s.irc_downcase(cmap)\r
226     end\r
227 \r
228     # Up/downcasing something that includes this module returns its\r
229     # Up/downcased to_s form\r
230     #\r
231     def downcase\r
232       self.irc_downcase\r
233     end\r
234 \r
235     # We allow up/downcasing with a different casemap\r
236     #\r
237     def irc_upcase(cmap=casemap)\r
238       self.to_s.irc_upcase(cmap)\r
239     end\r
240 \r
241     # Up/downcasing something that includes this module returns its\r
242     # Up/downcased to_s form\r
243     #\r
244     def upcase\r
245       self.irc_upcase\r
246     end\r
247 \r
248   end\r
249 \r
250 end\r
251 \r
252 \r
253 # We start by extending the String class\r
254 # with some IRC-specific methods\r
255 #\r
256 class String\r
257 \r
258   # This method returns the Irc::Casemap whose name is the receiver\r
259   #\r
260   def to_irc_casemap\r
261     Irc::Casemap.get(self) rescue raise TypeError, "Unkown Irc::Casemap #{self.inspect}"\r
262   end\r
263 \r
264   # This method returns a string which is the downcased version of the\r
265   # receiver, according to the given _casemap_\r
266   #\r
267   #\r
268   def irc_downcase(casemap='rfc1459')\r
269     cmap = casemap.to_irc_casemap\r
270     self.tr(cmap.upper, cmap.lower)\r
271   end\r
272 \r
273   # This is the same as the above, except that the string is altered in place\r
274   #\r
275   # See also the discussion about irc_downcase\r
276   #\r
277   def irc_downcase!(casemap='rfc1459')\r
278     cmap = casemap.to_irc_casemap\r
279     self.tr!(cmap.upper, cmap.lower)\r
280   end\r
281 \r
282   # Upcasing functions are provided too\r
283   #\r
284   # See also the discussion about irc_downcase\r
285   #\r
286   def irc_upcase(casemap='rfc1459')\r
287     cmap = casemap.to_irc_casemap\r
288     self.tr(cmap.lower, cmap.upper)\r
289   end\r
290 \r
291   # In-place upcasing\r
292   #\r
293   # See also the discussion about irc_downcase\r
294   #\r
295   def irc_upcase!(casemap='rfc1459')\r
296     cmap = casemap.to_irc_casemap\r
297     self.tr!(cmap.lower, cmap.upper)\r
298   end\r
299 \r
300   # This method checks if the receiver contains IRC glob characters\r
301   #\r
302   # IRC has a very primitive concept of globs: a <tt>*</tt> stands for "any\r
303   # number of arbitrary characters", a <tt>?</tt> stands for "one and exactly\r
304   # one arbitrary character". These characters can be escaped by prefixing them\r
305   # with a slash (<tt>\\</tt>).\r
306   #\r
307   # A known limitation of this glob syntax is that there is no way to escape\r
308   # the escape character itself, so it's not possible to build a glob pattern\r
309   # where the escape character precedes a glob.\r
310   #\r
311   def has_irc_glob?\r
312     self =~ /^[*?]|[^\\][*?]/\r
313   end\r
314 \r
315   # This method is used to convert the receiver into a Regular Expression\r
316   # that matches according to the IRC glob syntax\r
317   #\r
318   def to_irc_regexp\r
319     regmask = Regexp.escape(self)\r
320     regmask.gsub!(/(\\\\)?\\[*?]/) { |m|\r
321       case m\r
322       when /\\(\\[*?])/\r
323         $1\r
324       when /\\\*/\r
325         '.*'\r
326       when /\\\?/\r
327         '.'\r
328       else\r
329         raise "Unexpected match #{m} when converting #{self}"\r
330       end\r
331     }\r
332     Regexp.new("^#{regmask}$")\r
333   end\r
334 \r
335 end\r
336 \r
337 \r
338 # ArrayOf is a subclass of Array whose elements are supposed to be all\r
339 # of the same class. This is not intended to be used directly, but rather\r
340 # to be subclassed as needed (see for example Irc::UserList and Irc::NetmaskList)\r
341 #\r
342 # Presently, only very few selected methods from Array are overloaded to check\r
343 # if the new elements are the correct class. An orthodox? method is provided\r
344 # to check the entire ArrayOf against the appropriate class.\r
345 #\r
346 class ArrayOf < Array\r
347 \r
348   attr_reader :element_class\r
349 \r
350   # Create a new ArrayOf whose elements are supposed to be all of type _kl_,\r
351   # optionally filling it with the elements from the Array argument.\r
352   #\r
353   def initialize(kl, ar=[])\r
354     raise TypeError, "#{kl.inspect} must be a class name" unless kl.kind_of?(Class)\r
355     super()\r
356     @element_class = kl\r
357     case ar\r
358     when Array\r
359       insert(0, *ar)\r
360     else\r
361       raise TypeError, "#{self.class} can only be initialized from an Array"\r
362     end\r
363   end\r
364 \r
365   def inspect\r
366     self.__to_s__[0..-2].sub(/:[^:]+$/,"[#{@element_class}]\\0") + " #{super}>"\r
367   end\r
368 \r
369   # Private method to check the validity of the elements passed to it\r
370   # and optionally raise an error\r
371   #\r
372   # TODO should it accept nils as valid?\r
373   #\r
374   def internal_will_accept?(raising, *els)\r
375     els.each { |el|\r
376       unless el.kind_of?(@element_class)\r
377         raise TypeError, "#{el.inspect} is not of class #{@element_class}" if raising\r
378         return false\r
379       end\r
380     }\r
381     return true\r
382   end\r
383   private :internal_will_accept?\r
384 \r
385   # This method checks if the passed arguments are acceptable for our ArrayOf\r
386   #\r
387   def will_accept?(*els)\r
388     internal_will_accept?(false, *els)\r
389   end\r
390 \r
391   # This method checks that all elements are of the appropriate class\r
392   #\r
393   def valid?\r
394     will_accept?(*self)\r
395   end\r
396 \r
397   # This method is similar to the above, except that it raises an exception\r
398   # if the receiver is not valid\r
399   #\r
400   def validate\r
401     raise TypeError unless valid?\r
402   end\r
403 \r
404   # Overloaded from Array#<<, checks for appropriate class of argument\r
405   #\r
406   def <<(el)\r
407     super(el) if internal_will_accept?(true, el)\r
408   end\r
409 \r
410   # Overloaded from Array#&, checks for appropriate class of argument elements\r
411   #\r
412   def &(ar)\r
413     r = super(ar)\r
414     ArrayOf.new(@element_class, r) if internal_will_accept?(true, *r)\r
415   end\r
416 \r
417   # Overloaded from Array#+, checks for appropriate class of argument elements\r
418   #\r
419   def +(ar)\r
420     ArrayOf.new(@element_class, super(ar)) if internal_will_accept?(true, *ar)\r
421   end\r
422 \r
423   # Overloaded from Array#-, so that an ArrayOf is returned. There is no need\r
424   # to check the validity of the elements in the argument\r
425   #\r
426   def -(ar)\r
427     ArrayOf.new(@element_class, super(ar)) # if internal_will_accept?(true, *ar)\r
428   end\r
429 \r
430   # Overloaded from Array#|, checks for appropriate class of argument elements\r
431   #\r
432   def |(ar)\r
433     ArrayOf.new(@element_class, super(ar)) if internal_will_accept?(true, *ar)\r
434   end\r
435 \r
436   # Overloaded from Array#concat, checks for appropriate class of argument\r
437   # elements\r
438   #\r
439   def concat(ar)\r
440     super(ar) if internal_will_accept?(true, *ar)\r
441   end\r
442 \r
443   # Overloaded from Array#insert, checks for appropriate class of argument\r
444   # elements\r
445   #\r
446   def insert(idx, *ar)\r
447     super(idx, *ar) if internal_will_accept?(true, *ar)\r
448   end\r
449 \r
450   # Overloaded from Array#replace, checks for appropriate class of argument\r
451   # elements\r
452   #\r
453   def replace(ar)\r
454     super(ar) if (ar.kind_of?(ArrayOf) && ar.element_class <= @element_class) or internal_will_accept?(true, *ar)\r
455   end\r
456 \r
457   # Overloaded from Array#push, checks for appropriate class of argument\r
458   # elements\r
459   #\r
460   def push(*ar)\r
461     super(*ar) if internal_will_accept?(true, *ar)\r
462   end\r
463 \r
464   # Overloaded from Array#unshift, checks for appropriate class of argument(s)\r
465   #\r
466   def unshift(*els)\r
467     els.each { |el|\r
468       super(el) if internal_will_accept?(true, *els)\r
469     }\r
470   end\r
471 \r
472   # We introduce the 'downcase' method, which maps downcase() to all the Array\r
473   # elements, properly failing when the elements don't have a downcase method\r
474   #\r
475   def downcase\r
476     self.map { |el| el.downcase }\r
477   end\r
478 \r
479   # Modifying methods which we don't handle yet are made private\r
480   #\r
481   private :[]=, :collect!, :map!, :fill, :flatten!\r
482 \r
483 end\r
484 \r
485 \r
486 # We extend the Regexp class with an Irc module which will contain some\r
487 # Irc-specific regexps\r
488 #\r
489 class Regexp\r
490 \r
491   # We start with some general-purpose ones which will be used in the\r
492   # Irc module too, but are useful regardless\r
493   DIGITS = /\d+/\r
494   HEX_DIGIT = /[0-9A-Fa-f]/\r
495   HEX_DIGITS = /#{HEX_DIGIT}+/\r
496   HEX_OCTET = /#{HEX_DIGIT}#{HEX_DIGIT}?/\r
497   DEC_OCTET = /[01]?\d?\d|2[0-4]\d|25[0-5]/\r
498   DEC_IP_ADDR = /#{DEC_OCTET}.#{DEC_OCTET}.#{DEC_OCTET}.#{DEC_OCTET}/\r
499   HEX_IP_ADDR = /#{HEX_OCTET}.#{HEX_OCTET}.#{HEX_OCTET}.#{HEX_OCTET}/\r
500   IP_ADDR = /#{DEC_IP_ADDR}|#{HEX_IP_ADDR}/\r
501 \r
502   # IPv6, from Resolv::IPv6, without the \A..\z anchors\r
503   HEX_16BIT = /#{HEX_DIGIT}{1,4}/\r
504   IP6_8Hex = /(?:#{HEX_16BIT}:){7}#{HEX_16BIT}/\r
505   IP6_CompressedHex = /((?:#{HEX_16BIT}(?::#{HEX_16BIT})*)?)::((?:#{HEX_16BIT}(?::#{HEX_16BIT})*)?)/\r
506   IP6_6Hex4Dec = /((?:#{HEX_16BIT}:){6,6})#{DEC_IP_ADDR}/\r
507   IP6_CompressedHex4Dec = /((?:#{HEX_16BIT}(?::#{HEX_16BIT})*)?)::((?:#{HEX_16BIT}:)*)#{DEC_IP_ADDR}/\r
508   IP6_ADDR = /(?:#{IP6_8Hex})|(?:#{IP6_CompressedHex})|(?:#{IP6_6Hex4Dec})|(?:#{IP6_CompressedHex4Dec})/\r
509 \r
510   # We start with some IRC related regular expressions, used to match\r
511   # Irc::User nicks and users and Irc::Channel names\r
512   #\r
513   # For each of them we define two versions of the regular expression:\r
514   # * a generic one, which should match for any server but may turn out to\r
515   #   match more than a specific server would accept\r
516   # * an RFC-compliant matcher\r
517   #\r
518   module Irc\r
519 \r
520     # Channel-name-matching regexps\r
521     CHAN_FIRST = /[#&+]/\r
522     CHAN_SAFE = /![A-Z0-9]{5}/\r
523     CHAN_ANY = /[^\x00\x07\x0A\x0D ,:]/\r
524     GEN_CHAN = /(?:#{CHAN_FIRST}|#{CHAN_SAFE})#{CHAN_ANY}+/\r
525     RFC_CHAN = /#{CHAN_FIRST}#{CHAN_ANY}{1,49}|#{CHAN_SAFE}#{CHAN_ANY}{1,44}/\r
526 \r
527     # Nick-matching regexps\r
528     SPECIAL_CHAR = /[\x5b-\x60\x7b-\x7d]/\r
529     NICK_FIRST = /#{SPECIAL_CHAR}|[[:alpha:]]/\r
530     NICK_ANY = /#{SPECIAL_CHAR}|[[:alnum:]]|-/\r
531     GEN_NICK = /#{NICK_FIRST}#{NICK_ANY}+/\r
532     RFC_NICK = /#{NICK_FIRST}#{NICK_ANY}{0,8}/\r
533 \r
534     USER_CHAR = /[^\x00\x0a\x0d @]/\r
535     GEN_USER = /#{USER_CHAR}+/\r
536 \r
537     # Host-matching regexps\r
538     HOSTNAME_COMPONENT = /[[:alnum:]](?:[[:alnum:]]|-)*[[:alnum:]]*/\r
539     HOSTNAME = /#{HOSTNAME_COMPONENT}(?:\.#{HOSTNAME_COMPONENT})*/\r
540     HOSTADDR = /#{IP_ADDR}|#{IP6_ADDR}/\r
541 \r
542     GEN_HOST = /#{HOSTNAME}|#{HOSTADDR}/\r
543 \r
544     # # FreeNode network replaces the host of affiliated users with\r
545     # # 'virtual hosts' \r
546     # # FIXME we need the true syntax to match it properly ...\r
547     # PDPC_HOST_PART = /[0-9A-Za-z.-]+/\r
548     # PDPC_HOST = /#{PDPC_HOST_PART}(?:\/#{PDPC_HOST_PART})+/\r
549 \r
550     # # NOTE: the final optional and non-greedy dot is needed because some\r
551     # # servers (e.g. FreeNode) send the hostname of the services as "services."\r
552     # # which is not RFC compliant, but sadly done.\r
553     # GEN_HOST_EXT = /#{PDPC_HOST}|#{GEN_HOST}\.??/ \r
554 \r
555     # Sadly, different networks have different, RFC-breaking ways of cloaking\r
556     # the actualy host address: see above for an example to handle FreeNode.\r
557     # Another example would be Azzurra, wich also inserts a "=" in the\r
558     # cloacked host. So let's just not care about this and go with the simplest\r
559     # thing:\r
560     GEN_HOST_EXT = /\S+/\r
561 \r
562     # User-matching Regexp\r
563     GEN_USER_ID = /(#{GEN_NICK})(?:(?:!(#{GEN_USER}))?@(#{GEN_HOST_EXT}))?/\r
564 \r
565     # Things such has the BIP proxy send invalid nicks in a complete netmask,\r
566     # so we want to match this, rather: this matches either a compliant nick\r
567     # or a a string with a very generic nick, a very generic hostname after an\r
568     # @ sign, and an optional user after a !\r
569     BANG_AT = /#{GEN_NICK}|\S+?(?:!\S+?)?@\S+?/\r
570 \r
571     # # For Netmask, we want to allow wildcards * and ? in the nick\r
572     # # (they are already allowed in the user and host part\r
573     # GEN_NICK_MASK = /(?:#{NICK_FIRST}|[?*])?(?:#{NICK_ANY}|[?*])+/\r
574 \r
575     # # Netmask-matching Regexp\r
576     # GEN_MASK = /(#{GEN_NICK_MASK})(?:(?:!(#{GEN_USER}))?@(#{GEN_HOST_EXT}))?/\r
577 \r
578   end\r
579 \r
580 end\r
581 \r
582 \r
583 module Irc\r
584 \r
585 \r
586   # A Netmask identifies each user by collecting its nick, username and\r
587   # hostname in the form <tt>nick!user@host</tt>\r
588   #\r
589   # Netmasks can also contain glob patterns in any of their components; in\r
590   # this form they are used to refer to more than a user or to a user\r
591   # appearing under different forms.\r
592   #\r
593   # Example:\r
594   # * <tt>*!*@*</tt> refers to everybody\r
595   # * <tt>*!someuser@somehost</tt> refers to user +someuser+ on host +somehost+\r
596   #   regardless of the nick used.\r
597   #\r
598   class Netmask\r
599 \r
600     # Netmasks have an associated casemap unless they are bound to a server\r
601     #\r
602     include ServerOrCasemap\r
603 \r
604     attr_reader :nick, :user, :host\r
605     alias :ident :user\r
606 \r
607     # Create a new Netmask from string _str_, which must be in the form\r
608     # _nick_!_user_@_host_\r
609     #\r
610     # It is possible to specify a server or a casemap in the optional Hash:\r
611     # these are used to associate the Netmask with the given server and to set\r
612     # its casemap: if a server is specified and a casemap is not, the server's\r
613     # casemap is used. If both a server and a casemap are specified, the\r
614     # casemap must match the server's casemap or an exception will be raised.\r
615     #\r
616     # Empty +nick+, +user+ or +host+ are converted to the generic glob pattern\r
617     #\r
618     def initialize(str="", opts={})\r
619       # First of all, check for server/casemap option\r
620       #\r
621       init_server_or_casemap(opts)\r
622 \r
623       # Now we can see if the given string _str_ is an actual Netmask\r
624       if str.respond_to?(:to_str)\r
625         case str.to_str\r
626           # We match a pretty generic string, to work around non-compliant\r
627           # servers\r
628         when /^(?:(\S+?)(?:(?:!(\S+?))?@(\S+))?)?$/\r
629           # We do assignment using our internal methods\r
630           self.nick = $1\r
631           self.user = $2\r
632           self.host = $3\r
633         else\r
634           raise ArgumentError, "#{str.to_str.inspect} does not represent a valid #{self.class}"\r
635         end\r
636       else\r
637         raise TypeError, "#{str} cannot be converted to a #{self.class}"\r
638       end\r
639     end\r
640 \r
641     # A Netmask is easily converted to a String for the usual representation.\r
642     # We skip the user or host parts if they are "*", unless we've been asked\r
643     # for the full form\r
644     #\r
645     def to_s\r
646       ret = nick.dup\r
647       ret << "!" << user unless user == "*"\r
648       ret << "@" << host unless host == "*"\r
649       return ret\r
650     end\r
651 \r
652     def fullform\r
653       "#{nick}!#{user}@#{host}"\r
654     end\r
655 \r
656     alias :to_str :fullform\r
657 \r
658     # This method downcases the fullform of the netmask. While this may not be\r
659     # significantly different from the #downcase() method provided by the\r
660     # ServerOrCasemap mixin, it's significantly different for Netmask\r
661     # subclasses such as User whose simple downcasing uses the nick only.\r
662     #\r
663     def full_irc_downcase(cmap=casemap)\r
664       self.fullform.irc_downcase(cmap)\r
665     end\r
666 \r
667     # full_downcase() will return the fullform downcased according to the\r
668     # User's own casemap\r
669     #\r
670     def full_downcase\r
671       self.full_irc_downcase\r
672     end\r
673 \r
674     # Converts the receiver into a Netmask with the given (optional)\r
675     # server/casemap association. We return self unless a conversion\r
676     # is needed (different casemap/server)\r
677     #\r
678     # Subclasses of Netmask will return a new Netmask, using full_downcase\r
679     #\r
680     def to_irc_netmask(opts={})\r
681       if self.class == Netmask\r
682         return self if fits_with_server_and_casemap?(opts)\r
683       end\r
684       return self.full_downcase.to_irc_netmask(server_and_casemap.merge(opts))\r
685     end\r
686 \r
687     # Converts the receiver into a User with the given (optional)\r
688     # server/casemap association. We return self unless a conversion\r
689     # is needed (different casemap/server)\r
690     #\r
691     def to_irc_user(opts={})\r
692       self.fullform.to_irc_user(server_and_casemap.merge(opts))\r
693     end\r
694 \r
695     # Inspection of a Netmask reveals the server it's bound to (if there is\r
696     # one), its casemap and the nick, user and host part\r
697     #\r
698     def inspect\r
699       str = self.__to_s__[0..-2]\r
700       str << " @server=#{@server}" if defined?(@server) and @server\r
701       str << " @nick=#{@nick.inspect} @user=#{@user.inspect}"\r
702       str << " @host=#{@host.inspect} casemap=#{casemap.inspect}"\r
703       str << ">"\r
704     end\r
705 \r
706     # Equality: two Netmasks are equal if they downcase to the same thing\r
707     #\r
708     # TODO we may want it to try other.to_irc_netmask\r
709     #\r
710     def ==(other)\r
711       return false unless other.kind_of?(self.class)\r
712       self.downcase == other.downcase\r
713     end\r
714 \r
715     # This method changes the nick of the Netmask, defaulting to the generic\r
716     # glob pattern if the result is the null string.\r
717     #\r
718     def nick=(newnick)\r
719       @nick = newnick.to_s\r
720       @nick = "*" if @nick.empty?\r
721     end\r
722 \r
723     # This method changes the user of the Netmask, defaulting to the generic\r
724     # glob pattern if the result is the null string.\r
725     #\r
726     def user=(newuser)\r
727       @user = newuser.to_s\r
728       @user = "*" if @user.empty?\r
729     end\r
730     alias :ident= :user=\r
731 \r
732     # This method changes the hostname of the Netmask, defaulting to the generic\r
733     # glob pattern if the result is the null string.\r
734     #\r
735     def host=(newhost)\r
736       @host = newhost.to_s\r
737       @host = "*" if @host.empty?\r
738     end\r
739 \r
740     # We can replace everything at once with data from another Netmask\r
741     #\r
742     def replace(other)\r
743       case other\r
744       when Netmask\r
745         nick = other.nick\r
746         user = other.user\r
747         host = other.host\r
748         @server = other.server\r
749         @casemap = other.casemap unless @server\r
750       else\r
751         replace(other.to_irc_netmask(server_and_casemap))\r
752       end\r
753     end\r
754 \r
755     # This method checks if a Netmask is definite or not, by seeing if\r
756     # any of its components are defined by globs\r
757     #\r
758     def has_irc_glob?\r
759       return @nick.has_irc_glob? || @user.has_irc_glob? || @host.has_irc_glob?\r
760     end\r
761 \r
762     def generalize\r
763       u = user.dup\r
764       unless u.has_irc_glob?\r
765         u.sub!(/^[in]=/, '=') or u.sub!(/^\W(\w+)/, '\1')\r
766         u = '*' + u\r
767       end\r
768 \r
769       h = host.dup\r
770       unless h.has_irc_glob?\r
771         if h.include? '/'\r
772           h.sub!(/x-\w+$/, 'x-*')\r
773         else\r
774           h.match(/^[^\.]+\.[^\.]+$/) or\r
775           h.sub!(/azzurra[=-][0-9a-f]+/i, '*') or # hello, azzurra, you suck!\r
776           h.sub!(/^(\d+\.\d+\.\d+\.)\d+$/, '\1*') or\r
777           h.sub!(/^[^\.]+\./, '*.')\r
778         end\r
779       end\r
780       return Netmask.new("*!#{u}@#{h}", server_and_casemap)\r
781     end\r
782 \r
783     # This method is used to match the current Netmask against another one\r
784     #\r
785     # The method returns true if each component of the receiver matches the\r
786     # corresponding component of the argument. By _matching_ here we mean\r
787     # that any netmask described by the receiver is also described by the\r
788     # argument.\r
789     #\r
790     # In this sense, matching is rather simple to define in the case when the\r
791     # receiver has no globs: it is just necessary to check if the argument\r
792     # describes the receiver, which can be done by matching it against the\r
793     # argument converted into an IRC Regexp (see String#to_irc_regexp).\r
794     #\r
795     # The situation is also easy when the receiver has globs and the argument\r
796     # doesn't, since in this case the result is false.\r
797     #\r
798     # The more complex case in which both the receiver and the argument have\r
799     # globs is not handled yet.\r
800     #\r
801     def matches?(arg)\r
802       cmp = arg.to_irc_netmask(:casemap => casemap)\r
803       debug "Matching #{self.fullform} against #{arg.inspect} (#{cmp.fullform})"\r
804       [:nick, :user, :host].each { |component|\r
805         us = self.send(component).irc_downcase(casemap)\r
806         them = cmp.send(component).irc_downcase(casemap)\r
807         if us.has_irc_glob? && them.has_irc_glob?\r
808           next if us == them\r
809           warn NotImplementedError\r
810           return false\r
811         end\r
812         return false if us.has_irc_glob? && !them.has_irc_glob?\r
813         return false unless us =~ them.to_irc_regexp\r
814       }\r
815       return true\r
816     end\r
817 \r
818     # Case equality. Checks if arg matches self\r
819     #\r
820     def ===(arg)\r
821       arg.to_irc_netmask(:casemap => casemap).matches?(self)\r
822     end\r
823 \r
824     # Sorting is done via the fullform\r
825     #\r
826     def <=>(arg)\r
827       case arg\r
828       when Netmask\r
829         self.fullform.irc_downcase(casemap) <=> arg.fullform.irc_downcase(casemap)\r
830       else\r
831         self.downcase <=> arg.downcase\r
832       end\r
833     end\r
834 \r
835   end\r
836 \r
837 \r
838   # A NetmaskList is an ArrayOf <code>Netmask</code>s\r
839   #\r
840   class NetmaskList < ArrayOf\r
841 \r
842     # Create a new NetmaskList, optionally filling it with the elements from\r
843     # the Array argument fed to it.\r
844     #\r
845     def initialize(ar=[])\r
846       super(Netmask, ar)\r
847     end\r
848 \r
849     # We enhance the [] method by allowing it to pick an element that matches\r
850     # a given Netmask, a String or a Regexp\r
851     # TODO take into consideration the opportunity to use select() instead of\r
852     # find(), and/or a way to let the user choose which one to take (second\r
853     # argument?)\r
854     #\r
855     def [](*args)\r
856       if args.length == 1\r
857         case args[0]\r
858         when Netmask\r
859           self.find { |mask|\r
860             mask.matches?(args[0])\r
861           }\r
862         when String\r
863           self.find { |mask|\r
864             mask.matches?(args[0].to_irc_netmask(:casemap => mask.casemap))\r
865           }\r
866         when Regexp\r
867           self.find { |mask|\r
868             mask.fullform =~ args[0]\r
869           }\r
870         else\r
871           super(*args)\r
872         end\r
873       else\r
874         super(*args)\r
875       end\r
876     end\r
877 \r
878   end\r
879 \r
880 end\r
881 \r
882 \r
883 class String\r
884 \r
885   # We keep extending String, this time adding a method that converts a\r
886   # String into an Irc::Netmask object\r
887   #\r
888   def to_irc_netmask(opts={})\r
889     Irc::Netmask.new(self, opts)\r
890   end\r
891 \r
892 end\r
893 \r
894 \r
895 module Irc\r
896 \r
897 \r
898   # An IRC User is identified by his/her Netmask (which must not have globs).\r
899   # In fact, User is just a subclass of Netmask.\r
900   #\r
901   # Ideally, the user and host information of an IRC User should never\r
902   # change, and it shouldn't contain glob patterns. However, IRC is somewhat\r
903   # idiosincratic and it may be possible to know the nick of a User much before\r
904   # its user and host are known. Moreover, some networks (namely Freenode) may\r
905   # change the hostname of a User when (s)he identifies with Nickserv.\r
906   #\r
907   # As a consequence, we must allow changes to a User host and user attributes.\r
908   # We impose a restriction, though: they may not contain glob patterns, except\r
909   # for the special case of an unknown user/host which is represented by a *.\r
910   #\r
911   # It is possible to create a totally unknown User (e.g. for initializations)\r
912   # by setting the nick to * too.\r
913   #\r
914   # TODO list:\r
915   # * see if it's worth to add the other USER data\r
916   # * see if it's worth to add NICKSERV status\r
917   #\r
918   class User < Netmask\r
919     alias :to_s :nick\r
920 \r
921     attr_accessor :real_name\r
922 \r
923     # Create a new IRC User from a given Netmask (or anything that can be converted\r
924     # into a Netmask) provided that the given Netmask does not have globs.\r
925     #\r
926     def initialize(str="", opts={})\r
927       super\r
928       raise ArgumentError, "#{str.inspect} must not have globs (unescaped * or ?)" if nick.has_irc_glob? && nick != "*"\r
929       raise ArgumentError, "#{str.inspect} must not have globs (unescaped * or ?)" if user.has_irc_glob? && user != "*"\r
930       raise ArgumentError, "#{str.inspect} must not have globs (unescaped * or ?)" if host.has_irc_glob? && host != "*"\r
931       @away = false\r
932       @real_name = String.new\r
933     end\r
934 \r
935     # The nick of a User may be changed freely, but it must not contain glob patterns.\r
936     #\r
937     def nick=(newnick)\r
938       raise "Can't change the nick to #{newnick}" if defined?(@nick) and newnick.has_irc_glob?\r
939       super\r
940     end\r
941 \r
942     # We have to allow changing the user of an Irc User due to some networks\r
943     # (e.g. Freenode) changing hostmasks on the fly. We still check if the new\r
944     # user data has glob patterns though.\r
945     #\r
946     def user=(newuser)\r
947       raise "Can't change the username to #{newuser}" if defined?(@user) and newuser.has_irc_glob?\r
948       super\r
949     end\r
950 \r
951     # We have to allow changing the host of an Irc User due to some networks\r
952     # (e.g. Freenode) changing hostmasks on the fly. We still check if the new\r
953     # host data has glob patterns though.\r
954     #\r
955     def host=(newhost)\r
956       raise "Can't change the hostname to #{newhost}" if defined?(@host) and newhost.has_irc_glob?\r
957       super\r
958     end\r
959 \r
960     # Checks if a User is well-known or not by looking at the hostname and user\r
961     #\r
962     def known?\r
963       return nick != "*" && user != "*" && host != "*"\r
964     end\r
965 \r
966     # Is the user away?\r
967     #\r
968     def away?\r
969       return @away\r
970     end\r
971 \r
972     # Set the away status of the user. Use away=(nil) or away=(false)\r
973     # to unset away\r
974     #\r
975     def away=(msg="")\r
976       if msg\r
977         @away = msg\r
978       else\r
979         @away = false\r
980       end\r
981     end\r
982 \r
983     # Since to_irc_user runs the same checks on server and channel as\r
984     # to_irc_netmask, we just try that and return self if it works.\r
985     #\r
986     # Subclasses of User will return self if possible.\r
987     #\r
988     def to_irc_user(opts={})\r
989       return self if fits_with_server_and_casemap?(opts)\r
990       return self.full_downcase.to_irc_user(opts)\r
991     end\r
992 \r
993     # We can replace everything at once with data from another User\r
994     #\r
995     def replace(other)\r
996       case other\r
997       when User\r
998         self.nick = other.nick\r
999         self.user = other.user\r
1000         self.host = other.host\r
1001         @server = other.server\r
1002         @casemap = other.casemap unless @server\r
1003         @away = other.away?\r
1004       else\r
1005         self.replace(other.to_irc_user(server_and_casemap))\r
1006       end\r
1007     end\r
1008 \r
1009     def modes_on(channel)\r
1010       case channel\r
1011       when Channel\r
1012         channel.modes_of(self)\r
1013       else\r
1014         return @server.channel(channel).modes_of(self) if @server\r
1015         raise "Can't resolve channel #{channel}"\r
1016       end\r
1017     end\r
1018 \r
1019     def is_op?(channel)\r
1020       case channel\r
1021       when Channel\r
1022         channel.has_op?(self)\r
1023       else\r
1024         return @server.channel(channel).has_op?(self) if @server\r
1025         raise "Can't resolve channel #{channel}"\r
1026       end\r
1027     end\r
1028 \r
1029     def is_voice?(channel)\r
1030       case channel\r
1031       when Channel\r
1032         channel.has_voice?(self)\r
1033       else\r
1034         return @server.channel(channel).has_voice?(self) if @server\r
1035         raise "Can't resolve channel #{channel}"\r
1036       end\r
1037     end\r
1038   end\r
1039 \r
1040 \r
1041   # A UserList is an ArrayOf <code>User</code>s\r
1042   # We derive it from NetmaskList, which allows us to inherit any special\r
1043   # NetmaskList method\r
1044   #\r
1045   class UserList < NetmaskList\r
1046 \r
1047     # Create a new UserList, optionally filling it with the elements from\r
1048     # the Array argument fed to it.\r
1049     #\r
1050     def initialize(ar=[])\r
1051       super(ar)\r
1052       @element_class = User\r
1053     end\r
1054 \r
1055     # Convenience method: convert the UserList to a list of nicks. The indices\r
1056     # are preserved\r
1057     #\r
1058     def nicks\r
1059       self.map { |user| user.nick }\r
1060     end\r
1061 \r
1062   end\r
1063 \r
1064 end\r
1065 \r
1066 class String\r
1067 \r
1068   # We keep extending String, this time adding a method that converts a\r
1069   # String into an Irc::User object\r
1070   #\r
1071   def to_irc_user(opts={})\r
1072     Irc::User.new(self, opts)\r
1073   end\r
1074 \r
1075 end\r
1076 \r
1077 module Irc\r
1078 \r
1079   # An IRC Channel is identified by its name, and it has a set of properties:\r
1080   # * a Channel::Topic\r
1081   # * a UserList\r
1082   # * a set of Channel::Modes\r
1083   #\r
1084   # The Channel::Topic and Channel::Mode classes are defined within the\r
1085   # Channel namespace because they only make sense there\r
1086   #\r
1087   class Channel\r
1088 \r
1089 \r
1090     # Mode on a Channel\r
1091     #\r
1092     class Mode\r
1093       attr_reader :channel\r
1094       def initialize(ch)\r
1095         @channel = ch\r
1096       end\r
1097 \r
1098     end\r
1099 \r
1100 \r
1101     # Channel modes of type A manipulate lists\r
1102     #\r
1103     # Example: b (banlist)\r
1104     #\r
1105     class ModeTypeA < Mode\r
1106       attr_reader :list\r
1107       def initialize(ch)\r
1108         super\r
1109         @list = NetmaskList.new\r
1110       end\r
1111 \r
1112       def set(val)\r
1113         nm = @channel.server.new_netmask(val)\r
1114         @list << nm unless @list.include?(nm)\r
1115       end\r
1116 \r
1117       def reset(val)\r
1118         nm = @channel.server.new_netmask(val)\r
1119         @list.delete(nm)\r
1120       end\r
1121 \r
1122     end\r
1123 \r
1124 \r
1125     # Channel modes of type B need an argument\r
1126     #\r
1127     # Example: k (key)\r
1128     #\r
1129     class ModeTypeB < Mode\r
1130       def initialize(ch)\r
1131         super\r
1132         @arg = nil\r
1133       end\r
1134 \r
1135       def status\r
1136         @arg\r
1137       end\r
1138       alias :value :status\r
1139 \r
1140       def set(val)\r
1141         @arg = val\r
1142       end\r
1143 \r
1144       def reset(val)\r
1145         @arg = nil if @arg == val\r
1146       end\r
1147 \r
1148     end\r
1149 \r
1150 \r
1151     # Channel modes that change the User prefixes are like\r
1152     # Channel modes of type B, except that they manipulate\r
1153     # lists of Users, so they are somewhat similar to channel\r
1154     # modes of type A\r
1155     #\r
1156     class UserMode < ModeTypeB\r
1157       attr_reader :list\r
1158       alias :users :list\r
1159       def initialize(ch)\r
1160         super\r
1161         @list = UserList.new\r
1162       end\r
1163 \r
1164       def set(val)\r
1165         u = @channel.server.user(val)\r
1166         @list << u unless @list.include?(u)\r
1167       end\r
1168 \r
1169       def reset(val)\r
1170         u = @channel.server.user(val)\r
1171         @list.delete(u)\r
1172       end\r
1173 \r
1174     end\r
1175 \r
1176 \r
1177     # Channel modes of type C need an argument when set,\r
1178     # but not when they get reset\r
1179     #\r
1180     # Example: l (limit)\r
1181     #\r
1182     class ModeTypeC < Mode\r
1183       def initialize(ch)\r
1184         super\r
1185         @arg = nil\r
1186       end\r
1187 \r
1188       def status\r
1189         @arg\r
1190       end\r
1191       alias :value :status\r
1192 \r
1193       def set(val)\r
1194         @arg = val\r
1195       end\r
1196 \r
1197       def reset\r
1198         @arg = nil\r
1199       end\r
1200 \r
1201     end\r
1202 \r
1203 \r
1204     # Channel modes of type D are basically booleans\r
1205     #\r
1206     # Example: m (moderate)\r
1207     #\r
1208     class ModeTypeD < Mode\r
1209       def initialize(ch)\r
1210         super\r
1211         @set = false\r
1212       end\r
1213 \r
1214       def set?\r
1215         return @set\r
1216       end\r
1217 \r
1218       def set\r
1219         @set = true\r
1220       end\r
1221 \r
1222       def reset\r
1223         @set = false\r
1224       end\r
1225 \r
1226     end\r
1227 \r
1228 \r
1229     # A Topic represents the topic of a channel. It consists of\r
1230     # the topic itself, who set it and when\r
1231     #\r
1232     class Topic\r
1233       attr_accessor :text, :set_by, :set_on\r
1234       alias :to_s :text\r
1235 \r
1236       # Create a new Topic setting the text, the creator and\r
1237       # the creation time\r
1238       #\r
1239       def initialize(text="", set_by="", set_on=Time.new)\r
1240         @text = text\r
1241         @set_by = set_by.to_irc_netmask\r
1242         @set_on = set_on\r
1243       end\r
1244 \r
1245       # Replace a Topic with another one\r
1246       #\r
1247       def replace(topic)\r
1248         raise TypeError, "#{topic.inspect} is not of class #{self.class}" unless topic.kind_of?(self.class)\r
1249         @text = topic.text.dup\r
1250         @set_by = topic.set_by.dup\r
1251         @set_on = topic.set_on.dup\r
1252       end\r
1253 \r
1254       # Returns self\r
1255       #\r
1256       def to_irc_channel_topic\r
1257         self\r
1258       end\r
1259 \r
1260     end\r
1261 \r
1262   end\r
1263 \r
1264 end\r
1265 \r
1266 \r
1267 class String\r
1268 \r
1269   # Returns an Irc::Channel::Topic with self as text\r
1270   #\r
1271   def to_irc_channel_topic\r
1272     Irc::Channel::Topic.new(self)\r
1273   end\r
1274 \r
1275 end\r
1276 \r
1277 \r
1278 module Irc\r
1279 \r
1280 \r
1281   # Here we start with the actual Channel class\r
1282   #\r
1283   class Channel\r
1284 \r
1285     include ServerOrCasemap\r
1286     attr_reader :name, :topic, :mode, :users\r
1287     alias :to_s :name\r
1288 \r
1289     def inspect\r
1290       str = self.__to_s__[0..-2]\r
1291       str << " on server #{server}" if server\r
1292       str << " @name=#{@name.inspect} @topic=#{@topic.text.inspect}"\r
1293       str << " @users=[#{user_nicks.sort.join(', ')}]"\r
1294       str << ">"\r
1295     end\r
1296 \r
1297     # Returns self\r
1298     #\r
1299     def to_irc_channel\r
1300       self\r
1301     end\r
1302 \r
1303     # TODO Ho\r
1304     def user_nicks\r
1305       @users.map { |u| u.downcase }\r
1306     end\r
1307 \r
1308     # Checks if the receiver already has a user with the given _nick_\r
1309     #\r
1310     def has_user?(nick)\r
1311       @users.index(nick.to_irc_user(server_and_casemap))\r
1312     end\r
1313 \r
1314     # Returns the user with nick _nick_, if available\r
1315     #\r
1316     def get_user(nick)\r
1317       idx = has_user?(nick)\r
1318       @users[idx] if idx\r
1319     end\r
1320 \r
1321     # Adds a user to the channel\r
1322     #\r
1323     def add_user(user, opts={})\r
1324       silent = opts.fetch(:silent, false) \r
1325       if has_user?(user)\r
1326         warn "Trying to add user #{user} to channel #{self} again" unless silent\r
1327       else\r
1328         @users << user.to_irc_user(server_and_casemap)\r
1329       end\r
1330     end\r
1331 \r
1332     # Creates a new channel with the given name, optionally setting the topic\r
1333     # and an initial users list.\r
1334     #\r
1335     # No additional info is created here, because the channel flags and userlists\r
1336     # allowed depend on the server.\r
1337     #\r
1338     def initialize(name, topic=nil, users=[], opts={})\r
1339       raise ArgumentError, "Channel name cannot be empty" if name.to_s.empty?\r
1340       warn "Unknown channel prefix #{name[0].chr}" if name !~ /^[&#+!]/\r
1341       raise ArgumentError, "Invalid character in #{name.inspect}" if name =~ /[ \x07,]/\r
1342 \r
1343       init_server_or_casemap(opts)\r
1344 \r
1345       @name = name\r
1346 \r
1347       @topic = topic ? topic.to_irc_channel_topic : Channel::Topic.new\r
1348 \r
1349       @users = UserList.new\r
1350 \r
1351       users.each { |u|\r
1352         add_user(u)\r
1353       }\r
1354 \r
1355       # Flags\r
1356       @mode = {}\r
1357     end\r
1358 \r
1359     # Removes a user from the channel\r
1360     #\r
1361     def delete_user(user)\r
1362       @mode.each { |sym, mode|\r
1363         mode.reset(user) if mode.kind_of?(UserMode)\r
1364       }\r
1365       @users.delete(user)\r
1366     end\r
1367 \r
1368     # The channel prefix\r
1369     #\r
1370     def prefix\r
1371       name[0].chr\r
1372     end\r
1373 \r
1374     # A channel is local to a server if it has the '&' prefix\r
1375     #\r
1376     def local?\r
1377       name[0] == 0x26\r
1378     end\r
1379 \r
1380     # A channel is modeless if it has the '+' prefix\r
1381     #\r
1382     def modeless?\r
1383       name[0] == 0x2b\r
1384     end\r
1385 \r
1386     # A channel is safe if it has the '!' prefix\r
1387     #\r
1388     def safe?\r
1389       name[0] == 0x21\r
1390     end\r
1391 \r
1392     # A channel is normal if it has the '#' prefix\r
1393     #\r
1394     def normal?\r
1395       name[0] == 0x23\r
1396     end\r
1397 \r
1398     # Create a new mode\r
1399     #\r
1400     def create_mode(sym, kl)\r
1401       @mode[sym.to_sym] = kl.new(self)\r
1402     end\r
1403 \r
1404     def modes_of(user)\r
1405       l = []\r
1406       @mode.map { |s, m|\r
1407         l << s if (m.class <= UserMode and m.list[user])\r
1408       }\r
1409       l\r
1410     end\r
1411 \r
1412     def has_op?(user)\r
1413       @mode.has_key?(:o) and @mode[:o].list[user]\r
1414     end\r
1415 \r
1416     def has_voice?(user)\r
1417       @mode.has_key?(:v) and @mode[:v].list[user]\r
1418     end\r
1419   end\r
1420 \r
1421 \r
1422   # A ChannelList is an ArrayOf <code>Channel</code>s\r
1423   #\r
1424   class ChannelList < ArrayOf\r
1425 \r
1426     # Create a new ChannelList, optionally filling it with the elements from\r
1427     # the Array argument fed to it.\r
1428     #\r
1429     def initialize(ar=[])\r
1430       super(Channel, ar)\r
1431     end\r
1432 \r
1433     # Convenience method: convert the ChannelList to a list of channel names.\r
1434     # The indices are preserved\r
1435     #\r
1436     def names\r
1437       self.map { |chan| chan.name }\r
1438     end\r
1439 \r
1440   end\r
1441 \r
1442 end\r
1443 \r
1444 \r
1445 class String\r
1446 \r
1447   # We keep extending String, this time adding a method that converts a\r
1448   # String into an Irc::Channel object\r
1449   #\r
1450   def to_irc_channel(opts={})\r
1451     Irc::Channel.new(self, opts)\r
1452   end\r
1453 \r
1454 end\r
1455 \r
1456 \r
1457 module Irc\r
1458 \r
1459 \r
1460   # An IRC Server represents the Server the client is connected to.\r
1461   #\r
1462   class Server\r
1463 \r
1464     attr_reader :hostname, :version, :usermodes, :chanmodes\r
1465     alias :to_s :hostname\r
1466     attr_reader :supports, :capabilities\r
1467 \r
1468     attr_reader :channels, :users\r
1469 \r
1470     # TODO Ho\r
1471     def channel_names\r
1472       @channels.map { |ch| ch.downcase }\r
1473     end\r
1474 \r
1475     # TODO Ho\r
1476     def user_nicks\r
1477       @users.map { |u| u.downcase }\r
1478     end\r
1479 \r
1480     def inspect\r
1481       chans, users = [@channels, @users].map {|d|\r
1482         d.sort { |a, b|\r
1483           a.downcase <=> b.downcase\r
1484         }.map { |x|\r
1485           x.inspect\r
1486         }\r
1487       }\r
1488 \r
1489       str = self.__to_s__[0..-2]\r
1490       str << " @hostname=#{hostname}"\r
1491       str << " @channels=#{chans}"\r
1492       str << " @users=#{users}"\r
1493       str << ">"\r
1494     end\r
1495 \r
1496     # Create a new Server, with all instance variables reset to nil (for\r
1497     # scalar variables), empty channel and user lists and @supports\r
1498     # initialized to the default values for all known supported features.\r
1499     #\r
1500     def initialize\r
1501       @hostname = @version = @usermodes = @chanmodes = nil\r
1502 \r
1503       @channels = ChannelList.new\r
1504 \r
1505       @users = UserList.new\r
1506 \r
1507       reset_capabilities\r
1508     end\r
1509 \r
1510     # Resets the server capabilities\r
1511     #\r
1512     def reset_capabilities\r
1513       @supports = {\r
1514         :casemapping => 'rfc1459'.to_irc_casemap,\r
1515         :chanlimit => {},\r
1516         :chanmodes => {\r
1517           :typea => nil, # Type A: address lists\r
1518           :typeb => nil, # Type B: needs a parameter\r
1519           :typec => nil, # Type C: needs a parameter when set\r
1520           :typed => nil  # Type D: must not have a parameter\r
1521         },\r
1522         :channellen => 50,\r
1523         :chantypes => "#&!+",\r
1524         :excepts => nil,\r
1525         :idchan => {},\r
1526         :invex => nil,\r
1527         :kicklen => nil,\r
1528         :maxlist => {},\r
1529         :modes => 3,\r
1530         :network => nil,\r
1531         :nicklen => 9,\r
1532         :prefix => {\r
1533           :modes => [:o, :v],\r
1534           :prefixes => [:"@", :+]\r
1535         },\r
1536         :safelist => nil,\r
1537         :statusmsg => nil,\r
1538         :std => nil,\r
1539         :targmax => {},\r
1540         :topiclen => nil\r
1541       }\r
1542       @capabilities = {}\r
1543     end\r
1544 \r
1545     # Convert a mode (o, v, h, ...) to the corresponding\r
1546     # prefix (@, +, %, ...). See also mode_for_prefix\r
1547     def prefix_for_mode(mode)\r
1548       return @supports[:prefix][:prefixes][\r
1549         @supports[:prefix][:modes].index(mode.to_sym)\r
1550       ]\r
1551     end\r
1552 \r
1553     # Convert a prefix (@, +, %, ...) to the corresponding\r
1554     # mode (o, v, h, ...). See also prefix_for_mode\r
1555     def mode_for_prefix(pfx)\r
1556       return @supports[:prefix][:modes][\r
1557         @supports[:prefix][:prefixes].index(pfx.to_sym)\r
1558       ]\r
1559     end\r
1560 \r
1561     # Resets the Channel and User list\r
1562     #\r
1563     def reset_lists\r
1564       @users.reverse_each { |u|\r
1565         delete_user(u)\r
1566       }\r
1567       @channels.reverse_each { |u|\r
1568         delete_channel(u)\r
1569       }\r
1570     end\r
1571 \r
1572     # Clears the server\r
1573     #\r
1574     def clear\r
1575       reset_lists\r
1576       reset_capabilities\r
1577       @hostname = @version = @usermodes = @chanmodes = nil\r
1578     end\r
1579 \r
1580     # This method is used to parse a 004 RPL_MY_INFO line\r
1581     #\r
1582     def parse_my_info(line)\r
1583       ar = line.split(' ')\r
1584       @hostname = ar[0]\r
1585       @version = ar[1]\r
1586       @usermodes = ar[2]\r
1587       @chanmodes = ar[3]\r
1588     end\r
1589 \r
1590     def noval_warn(key, val, &block)\r
1591       if val\r
1592         yield if block_given?\r
1593       else\r
1594         warn "No #{key.to_s.upcase} value"\r
1595       end\r
1596     end\r
1597 \r
1598     def val_warn(key, val, &block)\r
1599       if val == true or val == false or val.nil?\r
1600         yield if block_given?\r
1601       else\r
1602         warn "No #{key.to_s.upcase} value must be specified, got #{val}"\r
1603       end\r
1604     end\r
1605     private :noval_warn, :val_warn\r
1606 \r
1607     # This method is used to parse a 005 RPL_ISUPPORT line\r
1608     #\r
1609     # See the RPL_ISUPPORT draft[http://www.irc.org/tech_docs/draft-brocklesby-irc-isupport-03.txt]\r
1610     #\r
1611     def parse_isupport(line)\r
1612       debug "Parsing ISUPPORT #{line.inspect}"\r
1613       ar = line.split(' ')\r
1614       reparse = ""\r
1615       ar.each { |en|\r
1616         prekey, val = en.split('=', 2)\r
1617         if prekey =~ /^-(.*)/\r
1618           key = $1.downcase.to_sym\r
1619           val = false\r
1620         else\r
1621           key = prekey.downcase.to_sym\r
1622         end\r
1623         case key\r
1624         when :casemapping\r
1625           noval_warn(key, val) {\r
1626             @supports[key] = val.to_irc_casemap\r
1627           }\r
1628         when :chanlimit, :idchan, :maxlist, :targmax\r
1629           noval_warn(key, val) {\r
1630             groups = val.split(',')\r
1631             groups.each { |g|\r
1632               k, v = g.split(':')\r
1633               @supports[key][k] = v.to_i || 0\r
1634               if @supports[key][k] == 0\r
1635                 warn "Deleting #{key} limit of 0 for #{k}"\r
1636                 @supports[key].delete(k)\r
1637               end\r
1638             }\r
1639           }\r
1640         when :chanmodes\r
1641           noval_warn(key, val) {\r
1642             groups = val.split(',')\r
1643             @supports[key][:typea] = groups[0].scan(/./).map { |x| x.to_sym}\r
1644             @supports[key][:typeb] = groups[1].scan(/./).map { |x| x.to_sym}\r
1645             @supports[key][:typec] = groups[2].scan(/./).map { |x| x.to_sym}\r
1646             @supports[key][:typed] = groups[3].scan(/./).map { |x| x.to_sym}\r
1647           }\r
1648         when :channellen, :kicklen, :modes, :topiclen\r
1649           if val\r
1650             @supports[key] = val.to_i\r
1651           else\r
1652             @supports[key] = nil\r
1653           end\r
1654         when :chantypes\r
1655           @supports[key] = val # can also be nil\r
1656         when :excepts\r
1657           val ||= 'e'\r
1658           @supports[key] = val\r
1659         when :invex\r
1660           val ||= 'I'\r
1661           @supports[key] = val\r
1662         when :maxchannels\r
1663           noval_warn(key, val) {\r
1664             reparse += "CHANLIMIT=(chantypes):#{val} "\r
1665           }\r
1666         when :maxtargets\r
1667           noval_warn(key, val) {\r
1668             @supports[:targmax]['PRIVMSG'] = val.to_i\r
1669             @supports[:targmax]['NOTICE'] = val.to_i\r
1670           }\r
1671         when :network\r
1672           noval_warn(key, val) {\r
1673             @supports[key] = val\r
1674           }\r
1675         when :nicklen\r
1676           noval_warn(key, val) {\r
1677             @supports[key] = val.to_i\r
1678           }\r
1679         when :prefix\r
1680           if val\r
1681             val.scan(/\((.*)\)(.*)/) { |m, p|\r
1682               @supports[key][:modes] = m.scan(/./).map { |x| x.to_sym}\r
1683               @supports[key][:prefixes] = p.scan(/./).map { |x| x.to_sym}\r
1684             }\r
1685           else\r
1686             @supports[key][:modes] = nil\r
1687             @supports[key][:prefixes] = nil\r
1688           end\r
1689         when :safelist\r
1690           val_warn(key, val) {\r
1691             @supports[key] = val.nil? ? true : val\r
1692           }\r
1693         when :statusmsg\r
1694           noval_warn(key, val) {\r
1695             @supports[key] = val.scan(/./)\r
1696           }\r
1697         when :std\r
1698           noval_warn(key, val) {\r
1699             @supports[key] = val.split(',')\r
1700           }\r
1701         else\r
1702           @supports[key] =  val.nil? ? true : val\r
1703         end\r
1704       }\r
1705       reparse.gsub!("(chantypes)",@supports[:chantypes])\r
1706       parse_isupport(reparse) unless reparse.empty?\r
1707     end\r
1708 \r
1709     # Returns the casemap of the server.\r
1710     #\r
1711     def casemap\r
1712       @supports[:casemapping]\r
1713     end\r
1714 \r
1715     # Returns User or Channel depending on what _name_ can be\r
1716     # a name of\r
1717     #\r
1718     def user_or_channel?(name)\r
1719       if supports[:chantypes].include?(name[0])\r
1720         return Channel\r
1721       else\r
1722         return User\r
1723       end\r
1724     end\r
1725 \r
1726     # Returns the actual User or Channel object matching _name_\r
1727     #\r
1728     def user_or_channel(name)\r
1729       if supports[:chantypes].include?(name[0])\r
1730         return channel(name)\r
1731       else\r
1732         return user(name)\r
1733       end\r
1734     end\r
1735 \r
1736     # Checks if the receiver already has a channel with the given _name_\r
1737     #\r
1738     def has_channel?(name)\r
1739       return false if name.nil_or_empty?\r
1740       channel_names.index(name.irc_downcase(casemap))\r
1741     end\r
1742     alias :has_chan? :has_channel?\r
1743 \r
1744     # Returns the channel with name _name_, if available\r
1745     #\r
1746     def get_channel(name)\r
1747       return nil if name.nil_or_empty?\r
1748       idx = has_channel?(name)\r
1749       channels[idx] if idx\r
1750     end\r
1751     alias :get_chan :get_channel\r
1752 \r
1753     # Create a new Channel object bound to the receiver and add it to the\r
1754     # list of <code>Channel</code>s on the receiver, unless the channel was\r
1755     # present already. In this case, the default action is to raise an\r
1756     # exception, unless _fails_ is set to false.  An exception can also be\r
1757     # raised if _str_ is nil or empty, again only if _fails_ is set to true;\r
1758     # otherwise, the method just returns nil\r
1759     #\r
1760     def new_channel(name, topic=nil, users=[], fails=true)\r
1761       if name.nil_or_empty?\r
1762         raise "Tried to look for empty or nil channel name #{name.inspect}" if fails\r
1763         return nil\r
1764       end\r
1765       ex = get_chan(name)\r
1766       if ex\r
1767         raise "Channel #{name} already exists on server #{self}" if fails\r
1768         return ex\r
1769       else\r
1770 \r
1771         prefix = name[0].chr\r
1772 \r
1773         # Give a warning if the new Channel goes over some server limits.\r
1774         #\r
1775         # FIXME might need to raise an exception\r
1776         #\r
1777         warn "#{self} doesn't support channel prefix #{prefix}" unless @supports[:chantypes].include?(prefix)\r
1778         warn "#{self} doesn't support channel names this long (#{name.length} > #{@supports[:channellen]})" unless name.length <= @supports[:channellen]\r
1779 \r
1780         # Next, we check if we hit the limit for channels of type +prefix+\r
1781         # if the server supports +chanlimit+\r
1782         #\r
1783         @supports[:chanlimit].keys.each { |k|\r
1784           next unless k.include?(prefix)\r
1785           count = 0\r
1786           channel_names.each { |n|\r
1787             count += 1 if k.include?(n[0])\r
1788           }\r
1789           # raise IndexError, "Already joined #{count} channels with prefix #{k}" if count == @supports[:chanlimit][k]\r
1790           warn "Already joined #{count}/#{@supports[:chanlimit][k]} channels with prefix #{k}, we may be going over server limits" if count >= @supports[:chanlimit][k]\r
1791         }\r
1792 \r
1793         # So far, everything is fine. Now create the actual Channel\r
1794         #\r
1795         chan = Channel.new(name, topic, users, :server => self)\r
1796 \r
1797         # We wade through +prefix+ and +chanmodes+ to create appropriate\r
1798         # lists and flags for this channel\r
1799 \r
1800         @supports[:prefix][:modes].each { |mode|\r
1801           chan.create_mode(mode, Channel::UserMode)\r
1802         } if @supports[:prefix][:modes]\r
1803 \r
1804         @supports[:chanmodes].each { |k, val|\r
1805           if val\r
1806             case k\r
1807             when :typea\r
1808               val.each { |mode|\r
1809                 chan.create_mode(mode, Channel::ModeTypeA)\r
1810               }\r
1811             when :typeb\r
1812               val.each { |mode|\r
1813                 chan.create_mode(mode, Channel::ModeTypeB)\r
1814               }\r
1815             when :typec\r
1816               val.each { |mode|\r
1817                 chan.create_mode(mode, Channel::ModeTypeC)\r
1818               }\r
1819             when :typed\r
1820               val.each { |mode|\r
1821                 chan.create_mode(mode, Channel::ModeTypeD)\r
1822               }\r
1823             end\r
1824           end\r
1825         }\r
1826 \r
1827         @channels << chan\r
1828         # debug "Created channel #{chan.inspect}"\r
1829         return chan\r
1830       end\r
1831     end\r
1832 \r
1833     # Returns the Channel with the given _name_ on the server,\r
1834     # creating it if necessary. This is a short form for\r
1835     # new_channel(_str_, nil, [], +false+)\r
1836     #\r
1837     def channel(str)\r
1838       new_channel(str,nil,[],false)\r
1839     end\r
1840 \r
1841     # Remove Channel _name_ from the list of <code>Channel</code>s\r
1842     #\r
1843     def delete_channel(name)\r
1844       idx = has_channel?(name)\r
1845       raise "Tried to remove unmanaged channel #{name}" unless idx\r
1846       @channels.delete_at(idx)\r
1847     end\r
1848 \r
1849     # Checks if the receiver already has a user with the given _nick_\r
1850     #\r
1851     def has_user?(nick)\r
1852       return false if nick.nil_or_empty?\r
1853       user_nicks.index(nick.irc_downcase(casemap))\r
1854     end\r
1855 \r
1856     # Returns the user with nick _nick_, if available\r
1857     #\r
1858     def get_user(nick)\r
1859       idx = has_user?(nick)\r
1860       @users[idx] if idx\r
1861     end\r
1862 \r
1863     # Create a new User object bound to the receiver and add it to the list\r
1864     # of <code>User</code>s on the receiver, unless the User was present\r
1865     # already. In this case, the default action is to raise an exception,\r
1866     # unless _fails_ is set to false. An exception can also be raised\r
1867     # if _str_ is nil or empty, again only if _fails_ is set to true;\r
1868     # otherwise, the method just returns nil\r
1869     #\r
1870     def new_user(str, fails=true)\r
1871       if str.nil_or_empty?\r
1872         raise "Tried to look for empty or nil user name #{str.inspect}" if fails\r
1873         return nil\r
1874       end\r
1875       tmp = str.to_irc_user(:server => self)\r
1876       old = get_user(tmp.nick)\r
1877       # debug "Tmp: #{tmp.inspect}"\r
1878       # debug "Old: #{old.inspect}"\r
1879       if old\r
1880         # debug "User already existed as #{old.inspect}"\r
1881         if tmp.known?\r
1882           if old.known?\r
1883             # debug "Both were known"\r
1884             # Do not raise an error: things like Freenode change the hostname after identification\r
1885             warning "User #{tmp.nick} has inconsistent Netmasks! #{self} knows #{old.inspect} but access was tried with #{tmp.inspect}" if old != tmp\r
1886             raise "User #{tmp} already exists on server #{self}" if fails\r
1887           end\r
1888           if old.fullform.downcase != tmp.fullform.downcase\r
1889             old.replace(tmp)\r
1890             # debug "Known user now #{old.inspect}"\r
1891           end\r
1892         end\r
1893         return old\r
1894       else\r
1895         warn "#{self} doesn't support nicknames this long (#{tmp.nick.length} > #{@supports[:nicklen]})" unless tmp.nick.length <= @supports[:nicklen]\r
1896         @users << tmp\r
1897         return @users.last\r
1898       end\r
1899     end\r
1900 \r
1901     # Returns the User with the given Netmask on the server,\r
1902     # creating it if necessary. This is a short form for\r
1903     # new_user(_str_, +false+)\r
1904     #\r
1905     def user(str)\r
1906       new_user(str, false)\r
1907     end\r
1908 \r
1909     # Deletes User _user_ from Channel _channel_\r
1910     #\r
1911     def delete_user_from_channel(user, channel)\r
1912       channel.delete_user(user)\r
1913     end\r
1914 \r
1915     # Remove User _someuser_ from the list of <code>User</code>s.\r
1916     # _someuser_ must be specified with the full Netmask.\r
1917     #\r
1918     def delete_user(someuser)\r
1919       idx = has_user?(someuser)\r
1920       raise "Tried to remove unmanaged user #{user}" unless idx\r
1921       have = self.user(someuser)\r
1922       @channels.each { |ch|\r
1923         delete_user_from_channel(have, ch)\r
1924       }\r
1925       @users.delete_at(idx)\r
1926     end\r
1927 \r
1928     # Create a new Netmask object with the appropriate casemap\r
1929     #\r
1930     def new_netmask(str)\r
1931       str.to_irc_netmask(:server => self)\r
1932     end\r
1933 \r
1934     # Finds all <code>User</code>s on server whose Netmask matches _mask_\r
1935     #\r
1936     def find_users(mask)\r
1937       nm = new_netmask(mask)\r
1938       @users.inject(UserList.new) {\r
1939         |list, user|\r
1940         if user.user == "*" or user.host == "*"\r
1941           list << user if user.nick.irc_downcase(casemap) =~ nm.nick.irc_downcase(casemap).to_irc_regexp\r
1942         else\r
1943           list << user if user.matches?(nm)\r
1944         end\r
1945         list\r
1946       }\r
1947     end\r
1948 \r
1949   end\r
1950 \r
1951 end\r
1952 \r