]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/core/utils/extends.rb
* (httputil) transparent charset support in HTTP::Response
[user/henk/code/ruby/rbot.git] / lib / rbot / core / utils / extends.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: Standard classes extensions
5 #
6 # Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
7 # Copyright:: (C) 2006,2007 Giuseppe Bilotta
8 # License:: GPL v2
9 #
10 # This file collects extensions to standard Ruby classes and to some core rbot
11 # classes to be used by the various plugins
12 #
13 # Please note that global symbols have to be prefixed by :: because this plugin
14 # will be read into an anonymous module
15
16
17 # Extensions to the Array class
18 #
19 class ::Array
20
21   # This method returns a random element from the array, or nil if the array is
22   # empty
23   #
24   def pick_one
25     return nil if self.empty?
26     self[rand(self.length)]
27   end
28 end
29
30 # Extensions to the String class
31 #
32 # TODO make ircify_html() accept an Hash of options, and make riphtml() just
33 # call ircify_html() with stronger purify options.
34 #
35 class ::String
36
37   # This method will return a purified version of the receiver, with all HTML
38   # stripped off and some of it converted to IRC formatting
39   #
40   def ircify_html
41     txt = self
42
43     # remove scripts
44     txt.gsub!(/<script(?:\s+[^>]*)?>.*?<\/script>/im, "")
45
46     # remove styles
47     txt.gsub!(/<style(?:\s+[^>]*)?>.*?<\/style>/im, "")
48
49     # bold and strong -> bold
50     txt.gsub!(/<\/?(?:b|strong)(?:\s+[^>]*)?>/im, "#{Bold}")
51
52     # italic, emphasis and underline -> underline
53     txt.gsub!(/<\/?(?:i|em|u)(?:\s+[^>]*)?>/im, "#{Underline}")
54
55     ## This would be a nice addition, but the results are horrible
56     ## Maybe make it configurable?
57     # txt.gsub!(/<\/?a( [^>]*)?>/, "#{Reverse}")
58
59     # Paragraph and br tags are converted to whitespace
60     txt.gsub!(/<\/?(p|br)(?:\s+[^>]*)?\s*\/?\s*>/, ' ')
61     txt.gsub!("\n", ' ')
62     txt.gsub!("\r", ' ')
63
64     # All other tags are just removed
65     txt.gsub!(/<[^>]+>/, '')
66
67     # Convert HTML entities. We do it now to be able to handle stuff
68     # such as &nbsp;
69     txt = Utils.decode_html_entities(txt)
70
71     # Remove double formatting options, since they only waste bytes
72     txt.gsub!(/#{Bold}(\s*)#{Bold}/, '\1')
73     txt.gsub!(/#{Underline}(\s*)#{Underline}/, '\1')
74
75     # Simplify whitespace that appears on both sides of a formatting option
76     txt.gsub!(/\s+(#{Bold}|#{Underline})\s+/, ' \1')
77     txt.sub!(/\s+(#{Bold}|#{Underline})\z/, '\1')
78     txt.sub!(/\A(#{Bold}|#{Underline})\s+/, '\1')
79
80     # And finally whitespace is squeezed
81     txt.gsub!(/\s+/, ' ')
82
83     # Decode entities and strip whitespace
84     return txt.strip
85   end
86
87   # This method will strip all HTML crud from the receiver
88   #
89   def riphtml
90     self.gsub(/<[^>]+>/, '').gsub(/&amp;/,'&').gsub(/&quot;/,'"').gsub(/&lt;/,'<').gsub(/&gt;/,'>').gsub(/&ellip;/,'...').gsub(/&apos;/, "'").gsub("\n",'')
91   end
92 end
93
94
95 # Extensions to the Regexp class, with some common and/or complex regular
96 # expressions.
97 #
98 class ::Regexp
99
100   # A method to build a regexp that matches a list of something separated by
101   # optional commas and/or the word "and", an optionally repeated prefix,
102   # and whitespace.
103   def Regexp.new_list(reg, pfx = "")
104     if pfx.kind_of?(String) and pfx.empty?
105       return %r(#{reg}(?:,?(?:\s+and)?\s+#{reg})*)
106     else
107       return %r(#{reg}(?:,?(?:\s+and)?(?:\s+#{pfx})?\s+#{reg})*)
108     end
109   end
110
111   IN_ON = /in|on/
112
113   module Irc
114     # Match a list of channel anmes separated by optional commas, whitespace
115     # and optionally the word "and"
116     CHAN_LIST = Regexp.new_list(GEN_CHAN)
117
118     # Match "in #channel" or "on #channel" and/or "in private" (optionally
119     # shortened to "in pvt"), returning the channel name or the word 'private'
120     # or 'pvt' as capture
121     IN_CHAN = /#{IN_ON}\s+(#{GEN_CHAN})|(here)|/
122     IN_CHAN_PVT = /#{IN_CHAN}|in\s+(private|pvt)/
123
124     # As above, but with channel lists
125     IN_CHAN_LIST_SFX = Regexp.new_list(/#{GEN_CHAN}|here/, IN_ON)
126     IN_CHAN_LIST = /#{IN_ON}\s+#{IN_CHAN_LIST_SFX}|anywhere|everywhere/
127     IN_CHAN_LIST_PVT_SFX = Regexp.new_list(/#{GEN_CHAN}|here|private|pvt/, IN_ON)
128     IN_CHAN_LIST_PVT = /#{IN_ON}\s+#{IN_CHAN_LIST_PVT_SFX}|anywhere|everywhere/
129
130     # Match a list of nicknames separated by optional commas, whitespace and
131     # optionally the word "and"
132     NICK_LIST = Regexp.new_list(GEN_NICK)
133
134   end
135
136 end
137
138
139 module ::Irc
140
141
142   class BasicUserMessage
143
144     # We extend the BasicUserMessage class with a method that parses a string
145     # which is a channel list as matched by IN_CHAN(_LIST) and co. The method
146     # returns an array of channel names, where 'private' or 'pvt' is replaced
147     # by the Symbol :"?", 'here' is replaced by the channel of the message or
148     # by :"?" (depending on whether the message target is the bot or a
149     # Channel), and 'anywhere' and 'everywhere' are replaced by Symbol :*
150     #
151     def parse_channel_list(string)
152       return [:*] if [:anywhere, :everywhere].include? string.to_sym
153       string.scan(
154       /(?:^|,?(?:\s+and)?\s+)(?:in|on\s+)?(#{Regexp::Irc::GEN_CHAN}|here|private|pvt)/
155                  ).map { |chan_ar|
156         chan = chan_ar.first
157         case chan.to_sym
158         when :private, :pvt
159           :"?"
160         when :here
161           case self.target
162           when Channel
163             self.target.name
164           else
165             :"?"
166           end
167         else
168           chan
169         end
170       }.uniq
171     end
172   end
173 end