]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/httputil.rb
Add act method to messages; behaves like reply, but does a CTCP action
[user/henk/code/ruby/rbot.git] / lib / rbot / httputil.rb
1 module Irc
2 module Utils
3
4 require 'resolv'
5 require 'net/http'
6 require 'net/https'
7 Net::HTTP.version_1_2
8
9 # class for making http requests easier (mainly for plugins to use)
10 # this class can check the bot proxy configuration to determine if a proxy
11 # needs to be used, which includes support for per-url proxy configuration.
12 class HttpUtil
13     BotConfig.register BotConfigBooleanValue.new('http.use_proxy',
14       :default => false, :desc => "should a proxy be used for HTTP requests?")
15     BotConfig.register BotConfigStringValue.new('http.proxy_uri', :default => false,
16       :desc => "Proxy server to use for HTTP requests (URI, e.g http://proxy.host:port)")
17     BotConfig.register BotConfigStringValue.new('http.proxy_user',
18       :default => nil,
19       :desc => "User for authenticating with the http proxy (if required)")
20     BotConfig.register BotConfigStringValue.new('http.proxy_pass',
21       :default => nil,
22       :desc => "Password for authenticating with the http proxy (if required)")
23     BotConfig.register BotConfigArrayValue.new('http.proxy_include',
24       :default => [],
25       :desc => "List of regexps to check against a URI's hostname/ip to see if we should use the proxy to access this URI. All URIs are proxied by default if the proxy is set, so this is only required to re-include URIs that might have been excluded by the exclude list. e.g. exclude /.*\.foo\.com/, include bar\.foo\.com")
26     BotConfig.register BotConfigArrayValue.new('http.proxy_exclude',
27       :default => [],
28       :desc => "List of regexps to check against a URI's hostname/ip to see if we should use avoid the proxy to access this URI and access it directly")
29     BotConfig.register BotConfigIntegerValue.new('http.max_redir',
30       :default => 5,
31       :desc => "Maximum number of redirections to be used when getting a document")
32     BotConfig.register BotConfigIntegerValue.new('http.expire_time',
33       :default => 60,
34       :desc => "After how many minutes since last use a cached document is considered to be expired")
35     BotConfig.register BotConfigIntegerValue.new('http.max_cache_time',
36       :default => 60*24,
37       :desc => "After how many minutes since first use a cached document is considered to be expired")
38     BotConfig.register BotConfigIntegerValue.new('http.no_expire_cache',
39       :default => false,
40       :desc => "Set this to true if you want the bot to never expire the cached pages")
41
42   def initialize(bot)
43     @bot = bot
44     @cache = Hash.new
45     @headers = {
46       'User-Agent' => "rbot http util #{$version} (http://linuxbrit.co.uk/rbot/)",
47     }
48   end
49
50   # if http_proxy_include or http_proxy_exclude are set, then examine the
51   # uri to see if this is a proxied uri
52   # the in/excludes are a list of regexps, and each regexp is checked against
53   # the server name, and its IP addresses
54   def proxy_required(uri)
55     use_proxy = true
56     if @bot.config["http.proxy_exclude"].empty? && @bot.config["http.proxy_include"].empty?
57       return use_proxy
58     end
59
60     list = [uri.host]
61     begin
62       list.concat Resolv.getaddresses(uri.host)
63     rescue StandardError => err
64       warning "couldn't resolve host uri.host"
65     end
66
67     unless @bot.config["http.proxy_exclude"].empty?
68       re = @bot.config["http.proxy_exclude"].collect{|r| Regexp.new(r)}
69       re.each do |r|
70         list.each do |item|
71           if r.match(item)
72             use_proxy = false
73             break
74           end
75         end
76       end
77     end
78     unless @bot.config["http.proxy_include"].empty?
79       re = @bot.config["http.proxy_include"].collect{|r| Regexp.new(r)}
80       re.each do |r|
81         list.each do |item|
82           if r.match(item)
83             use_proxy = true
84             break
85           end
86         end
87       end
88     end
89     debug "using proxy for uri #{uri}?: #{use_proxy}"
90     return use_proxy
91   end
92
93   # uri:: Uri to create a proxy for
94   #
95   # return a net/http Proxy object, which is configured correctly for
96   # proxying based on the bot's proxy configuration.
97   # This will include per-url proxy configuration based on the bot config
98   # +http_proxy_include/exclude+ options.
99   def get_proxy(uri)
100     proxy = nil
101     proxy_host = nil
102     proxy_port = nil
103     proxy_user = nil
104     proxy_pass = nil
105
106     if @bot.config["http.use_proxy"]
107       if (ENV['http_proxy'])
108         proxy = URI.parse ENV['http_proxy'] rescue nil
109       end
110       if (@bot.config["http.proxy_uri"])
111         proxy = URI.parse @bot.config["http.proxy_uri"] rescue nil
112       end
113       if proxy
114         debug "proxy is set to #{proxy.host} port #{proxy.port}"
115         if proxy_required(uri)
116           proxy_host = proxy.host
117           proxy_port = proxy.port
118           proxy_user = @bot.config["http.proxy_user"]
119           proxy_pass = @bot.config["http.proxy_pass"]
120         end
121       end
122     end
123
124     h = Net::HTTP.new(uri.host, uri.port, proxy_host, proxy_port, proxy_user, proxy_port)
125     h.use_ssl = true if uri.scheme == "https"
126     return h
127   end
128
129   # uri::         uri to query (Uri object)
130   # readtimeout:: timeout for reading the response
131   # opentimeout:: timeout for opening the connection
132   #
133   # simple get request, returns (if possible) response body following redirs
134   # and caching if requested
135   # if a block is given, it yields the urls it gets redirected to
136   def get(uri, readtimeout=10, opentimeout=5, max_redir=@bot.config["http.max_redir"], cache=false)
137     proxy = get_proxy(uri)
138     proxy.open_timeout = opentimeout
139     proxy.read_timeout = readtimeout
140
141     begin
142       proxy.start() {|http|
143         yield uri.request_uri() if block_given?
144         resp = http.get(uri.request_uri(), @headers)
145         case resp
146         when Net::HTTPSuccess
147           if cache
148             k = uri.to_s
149             @cache[k] = Hash.new
150             @cache[k][:body] = resp.body
151             @cache[k][:last_mod] = Time.httpdate(resp['last-modified']) if resp.key?('last-modified')
152             if resp.key?('date')
153               @cache[k][:first_use] = Time.httpdate(resp['date'])
154               @cache[k][:last_use] = Time.httpdate(resp['date'])
155             else
156               now = Time.new
157               @cache[k][:first_use] = now
158               @cache[k][:last_use] = now
159             end
160             @cache[k][:count] = 1
161           end
162           return resp.body
163         when Net::HTTPRedirection
164           debug "Redirecting #{uri} to #{resp['location']}"
165           yield resp['location'] if block_given?
166           if max_redir > 0
167             return get( URI.parse(resp['location']), readtimeout, opentimeout, max_redir-1, cache)
168           else
169             warning "Max redirection reached, not going to #{resp['location']}"
170           end
171         else
172           debug "HttpUtil.get return code #{resp.code} #{resp.body}"
173         end
174         return nil
175       }
176     rescue StandardError, Timeout::Error => e
177       error "HttpUtil.get exception: #{e.inspect}, while trying to get #{uri}"
178       debug e.backtrace.join("\n")
179     end
180     return nil
181   end
182
183   # just like the above, but only gets the head
184   def head(uri, readtimeout=10, opentimeout=5, max_redir=@bot.config["http.max_redir"])
185     proxy = get_proxy(uri)
186     proxy.open_timeout = opentimeout
187     proxy.read_timeout = readtimeout
188
189     begin
190       proxy.start() {|http|
191         yield uri.request_uri() if block_given?
192         resp = http.head(uri.request_uri(), @headers)
193         case resp
194         when Net::HTTPSuccess
195           return resp
196         when Net::HTTPRedirection
197           debug "Redirecting #{uri} to #{resp['location']}"
198           yield resp['location'] if block_given?
199           if max_redir > 0
200             return head( URI.parse(resp['location']), readtimeout, opentimeout, max_redir-1)
201           else
202             warning "Max redirection reached, not going to #{resp['location']}"
203           end
204         else
205           debug "HttpUtil.head return code #{resp.code}"
206         end
207         return nil
208       }
209     rescue StandardError, Timeout::Error => e
210       error "HttpUtil.head exception: #{e.inspect}, while trying to get #{uri}"
211       debug e.backtrace.join("\n")
212     end
213     return nil
214   end
215
216   # gets a page from the cache if it's still (assumed to be) valid
217   # TODO remove stale cached pages, except when called with noexpire=true
218   def get_cached(uri, readtimeout=10, opentimeout=5,
219                  max_redir=@bot.config['http.max_redir'],
220                  noexpire=@bot.config['http.no_expire_cache'])
221     k = uri.to_s
222     if !@cache.key?(k)
223       remove_stale_cache unless noexpire
224       return get(uri, readtimeout, opentimeout, max_redir, true)
225     end
226     now = Time.new
227     begin
228       # See if the last-modified header can be used
229       # Assumption: the page was not modified if both the header
230       # and the cached copy have the last-modified value, and it's the same time
231       # If only one of the cached copy and the header have the value, or if the
232       # value is different, we assume that the cached copyis invalid and therefore
233       # get a new one.
234       # On our first try, we tested for last-modified in the webpage first,
235       # and then on the local cache. however, this is stupid (in general),
236       # so we only test for the remote page if the local copy had the header
237       # in the first place.
238       if @cache[k].key?(:last_mod)
239         h = head(uri, readtimeout, opentimeout, max_redir)
240         if h.key?('last-modified')
241           if Time.httpdate(h['last-modified']) == @cache[k][:last_mod]
242             if resp.key?('date')
243               @cache[k][:last_use] = Time.httpdate(resp['date'])
244             else
245               @cache[k][:last_use] = now
246             end
247             @cache[k][:count] += 1
248             return @cache[k][:body]
249           end
250           remove_stale_cache unless noexpire
251           return get(uri, readtimeout, opentimeout, max_redir, true)
252         end
253         remove_stale_cache unless noexpire
254         return get(uri, readtimeout, opentimeout, max_redir, true)
255       end
256     rescue => e
257       warning "Error #{e.inspect} getting the page #{uri}, using cache"
258       debug e.backtrace.join("\n")
259       return @cache[k][:body]
260     end
261     # If we still haven't returned, we are dealing with a non-redirected document
262     # that doesn't have the last-modified attribute
263     debug "Could not use last-modified attribute for URL #{uri}, guessing cache validity"
264     if noexpire or !expired?(@cache[k], now)
265       @cache[k][:count] += 1
266       @cache[k][:last_use] = now
267       debug "Using cache"
268       return @cache[k][:body]
269     end
270     debug "Cache expired, getting anew"
271     @cache.delete(k)
272     remove_stale_cache unless noexpire
273     return get(uri, readtimeout, opentimeout, max_redir, true)
274   end
275
276   def expired?(hash, time)
277     (time - hash[:last_use] > @bot.config['http.expire_time']*60) or
278     (time - hash[:first_use] > @bot.config['http.max_cache_time']*60)
279   end
280
281   def remove_stale_cache
282     now = Time.new
283     @cache.reject! { |k, val|
284       !val.key?(:last_modified) && expired?(val, now)
285     }
286   end
287
288 end
289 end
290 end