2002-12-16 22:06:36 +03:00
|
|
|
#= open-uri.rb
|
|
|
|
#
|
|
|
|
#open-uri.rb is easy-to-use wrapper for net/http and net/ftp.
|
|
|
|
#
|
|
|
|
#== Example
|
|
|
|
#
|
|
|
|
#It is possible to open http/ftp URL as usual a file:
|
|
|
|
#
|
|
|
|
# open("http://www.ruby-lang.org/") {|f|
|
|
|
|
# f.each_line {|line| p line}
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
#The opened file has several methods for meta information as follows since
|
|
|
|
#it is extended by OpenURI::Meta.
|
|
|
|
#
|
|
|
|
# open("http://www.ruby-lang.org/en") {|f|
|
|
|
|
# f.each_line {|line| p line}
|
|
|
|
# p f.base_uri # <URI::HTTP:0x40e6ef2 URL:http://www.ruby-lang.org/en/>
|
|
|
|
# p f.content_type # "text/html"
|
|
|
|
# p f.charset # "iso-8859-1"
|
|
|
|
# p f.content_encoding # []
|
|
|
|
# p f.last_modified # Thu Dec 05 02:45:02 UTC 2002
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
#Additional header fields can be specified by an optional hash argument.
|
|
|
|
#
|
|
|
|
# open("http://www.ruby-lang.org/en/",
|
|
|
|
# "User-Agent" => "Ruby/#{RUBY_VERSION}",
|
|
|
|
# "From" => "foo@bar.invalid",
|
|
|
|
# "Referer" => "http://www.ruby-lang.org/") {|f|
|
|
|
|
# ...
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
#The environment variables such as http_proxy and ftp_proxy are in effect by
|
|
|
|
#default. :proxy => nil disables proxy.
|
|
|
|
#
|
|
|
|
# open("http://www.ruby-lang.org/en/raa.html",
|
|
|
|
# :proxy => nil) {|f|
|
|
|
|
# ...
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
#URI objects can be opened in similar way.
|
|
|
|
#
|
|
|
|
# uri = URI.parse("http://www.ruby-lang.org/en/")
|
|
|
|
# uri.open {|f|
|
|
|
|
# ...
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
#URI objects can be read directly.
|
|
|
|
#The returned string is also extended by OpenURI::Meta.
|
|
|
|
#
|
|
|
|
# str = uri.read
|
|
|
|
# p str.base_uri
|
|
|
|
#
|
|
|
|
#Author:: Tanaka Akira <akr@m17n.org>
|
|
|
|
|
|
|
|
require 'uri'
|
|
|
|
require 'stringio'
|
|
|
|
require 'time'
|
|
|
|
|
2003-02-05 13:44:05 +03:00
|
|
|
module Kernel
|
|
|
|
private
|
|
|
|
alias open_uri_original_open open # :nodoc:
|
|
|
|
|
2003-11-13 14:39:16 +03:00
|
|
|
# makes possible to open various resources including URIs.
|
|
|
|
# If the first argument respond to `open' method,
|
|
|
|
# the method is called with the rest arguments.
|
|
|
|
#
|
|
|
|
# If the first argument is a string and begins with xxx://,
|
|
|
|
# it is parsed by URI.parse. If the parsed object respond to `open' method,
|
|
|
|
# the method is called with the rest arguments.
|
|
|
|
#
|
|
|
|
# Otherwise original open is called.
|
|
|
|
#
|
|
|
|
# Since open-uri.rb provides URI::HTTP#open and URI::FTP#open,
|
|
|
|
# Kernel[#.]open can accepts such URIs and strings which begins with
|
|
|
|
# http:// and ftp://. In this http and ftp case, the opened file object
|
|
|
|
# is extended by OpenURI::Meta.
|
2003-02-05 13:44:05 +03:00
|
|
|
def open(name, *rest, &block)
|
2003-11-13 14:54:31 +03:00
|
|
|
if name.respond_to?(:open)
|
2003-02-05 13:44:05 +03:00
|
|
|
name.open(*rest, &block)
|
2003-11-13 14:39:16 +03:00
|
|
|
elsif name.respond_to?("to_str") &&
|
|
|
|
%r{\A[A-Za-z][A-Za-z0-9+\-\.]*://} =~ name &&
|
|
|
|
(uri = URI.parse(name)).respond_to?(:open)
|
|
|
|
uri.open(*rest, &block)
|
2003-02-05 13:44:05 +03:00
|
|
|
else
|
|
|
|
open_uri_original_open(name, *rest, &block)
|
|
|
|
end
|
2002-12-16 22:06:36 +03:00
|
|
|
end
|
2003-02-26 11:39:05 +03:00
|
|
|
module_function :open
|
2003-02-05 13:44:05 +03:00
|
|
|
end
|
2002-12-16 22:06:36 +03:00
|
|
|
|
2003-02-05 13:44:05 +03:00
|
|
|
module OpenURI
|
2003-11-24 11:02:36 +03:00
|
|
|
Options = {
|
|
|
|
:proxy => true,
|
|
|
|
:progress_proc => true,
|
|
|
|
:content_length_proc => true,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def OpenURI.check_options(options) # :nodoc:
|
|
|
|
options.each {|k, v|
|
|
|
|
next unless Symbol === k
|
|
|
|
unless Options.include? k
|
|
|
|
raise ArgumentError, "unrecognized option: #{k}"
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2003-02-05 13:44:05 +03:00
|
|
|
def OpenURI.scan_open_optional_arguments(*rest) # :nodoc:
|
2002-12-16 22:06:36 +03:00
|
|
|
if !rest.empty? && (String === rest.first || Integer === rest.first)
|
|
|
|
mode = rest.shift
|
|
|
|
if !rest.empty? && Integer === rest.first
|
|
|
|
perm = rest.shift
|
|
|
|
end
|
|
|
|
end
|
2003-02-05 13:44:05 +03:00
|
|
|
return mode, perm, rest
|
|
|
|
end
|
|
|
|
|
|
|
|
def OpenURI.open_uri(name, *rest) # :nodoc:
|
|
|
|
uri = URI::Generic === name ? name : URI.parse(name)
|
|
|
|
mode, perm, rest = OpenURI.scan_open_optional_arguments(*rest)
|
|
|
|
options = rest.shift if !rest.empty? && Hash === rest.first
|
|
|
|
raise ArgumentError.new("extra arguments") if !rest.empty?
|
2003-11-24 11:02:36 +03:00
|
|
|
options ||= {}
|
|
|
|
OpenURI.check_options(options)
|
2002-12-16 22:06:36 +03:00
|
|
|
|
|
|
|
unless mode == nil ||
|
2002-12-18 22:22:46 +03:00
|
|
|
mode == 'r' || mode == 'rb' ||
|
2003-11-13 11:58:20 +03:00
|
|
|
mode == File::RDONLY
|
2002-12-16 22:06:36 +03:00
|
|
|
raise ArgumentError.new("invalid access mode #{mode} (#{uri.class} resource is read only.)")
|
|
|
|
end
|
|
|
|
|
2003-11-24 11:02:36 +03:00
|
|
|
io = open_loop(uri, options)
|
2002-12-16 22:06:36 +03:00
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield io
|
|
|
|
ensure
|
|
|
|
io.close
|
|
|
|
end
|
|
|
|
else
|
|
|
|
io
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-02-05 13:44:05 +03:00
|
|
|
def OpenURI.open_loop(uri, options) # :nodoc:
|
2002-12-16 22:06:36 +03:00
|
|
|
case opt_proxy = options.fetch(:proxy, true)
|
|
|
|
when true
|
|
|
|
find_proxy = lambda {|u| u.find_proxy}
|
|
|
|
when nil, false
|
|
|
|
find_proxy = lambda {|u| nil}
|
|
|
|
when String
|
|
|
|
opt_proxy = URI.parse(opt_proxy)
|
|
|
|
find_proxy = lambda {|u| opt_proxy}
|
|
|
|
when URI::Generic
|
|
|
|
find_proxy = lambda {|u| opt_proxy}
|
|
|
|
else
|
|
|
|
raise ArgumentError.new("Invalid proxy option: #{opt_proxy}")
|
|
|
|
end
|
|
|
|
|
|
|
|
uri_set = {}
|
2003-11-24 17:36:18 +03:00
|
|
|
buf = nil
|
|
|
|
while true
|
|
|
|
redirect = catch(:open_uri_redirect) {
|
|
|
|
buf = Buffer.new
|
|
|
|
if proxy_uri = find_proxy.call(uri)
|
|
|
|
proxy_uri.proxy_open(buf, uri, options)
|
|
|
|
else
|
|
|
|
uri.direct_open(buf, options)
|
|
|
|
end
|
|
|
|
nil
|
|
|
|
}
|
|
|
|
if redirect
|
|
|
|
if redirect.relative?
|
|
|
|
# Although it violates RFC 2616, Location: field may have relative
|
|
|
|
# URI. It is converted to absolute URI using uri.
|
|
|
|
redirect = uri + redirect
|
|
|
|
end
|
|
|
|
unless OpenURI.redirectable?(uri, redirect)
|
|
|
|
raise "redirection forbidden: #{uri} -> #{redirect}"
|
|
|
|
end
|
|
|
|
uri = redirect
|
|
|
|
raise "HTTP redirection loop: #{uri}" if uri_set.include? uri.to_s
|
|
|
|
uri_set[uri.to_s] = true
|
2002-12-16 22:06:36 +03:00
|
|
|
else
|
2003-11-24 17:36:18 +03:00
|
|
|
break
|
2003-02-05 12:58:18 +03:00
|
|
|
end
|
2002-12-16 22:06:36 +03:00
|
|
|
end
|
|
|
|
io = buf.io
|
|
|
|
io.base_uri = uri
|
|
|
|
io
|
|
|
|
end
|
|
|
|
|
2003-11-24 17:36:18 +03:00
|
|
|
def OpenURI.redirectable?(uri1, uri2) # :nodoc:
|
|
|
|
# This test is intended to forbid a redirection from http://... to
|
|
|
|
# file:///etc/passwd.
|
|
|
|
# However this is ad hoc. It should be extensible/configurable.
|
|
|
|
uri1.scheme.downcase == uri2.scheme.downcase ||
|
|
|
|
(/\A(?:http|ftp)\z/i =~ uri1.scheme && /\A(?:http|ftp)\z/i =~ uri2.scheme)
|
2002-12-16 22:06:36 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
class HTTPError < StandardError
|
|
|
|
def initialize(message, io)
|
|
|
|
super(message)
|
|
|
|
@io = io
|
|
|
|
end
|
|
|
|
attr_reader :io
|
|
|
|
end
|
|
|
|
|
2003-02-05 13:44:05 +03:00
|
|
|
class Buffer # :nodoc:
|
2002-12-16 22:06:36 +03:00
|
|
|
def initialize
|
|
|
|
@io = StringIO.new
|
2003-11-15 04:09:21 +03:00
|
|
|
@size = 0
|
2002-12-16 22:06:36 +03:00
|
|
|
end
|
2003-11-15 04:09:21 +03:00
|
|
|
attr_reader :size
|
2002-12-16 22:06:36 +03:00
|
|
|
|
|
|
|
StringMax = 10240
|
|
|
|
def <<(str)
|
|
|
|
@io << str
|
2003-11-15 04:09:21 +03:00
|
|
|
@size += str.length
|
|
|
|
if StringIO === @io && StringMax < @size
|
2002-12-16 22:06:36 +03:00
|
|
|
require 'tempfile'
|
|
|
|
io = Tempfile.new('open-uri')
|
|
|
|
Meta.init io, @io if Meta === @io
|
|
|
|
io << @io.string
|
|
|
|
@io = io
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def io
|
|
|
|
Meta.init @io unless Meta === @io
|
|
|
|
@io
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Mixin for holding meta-information.
|
|
|
|
module Meta
|
2003-02-05 13:44:05 +03:00
|
|
|
def Meta.init(obj, src=nil) # :nodoc:
|
2002-12-16 22:06:36 +03:00
|
|
|
obj.extend Meta
|
|
|
|
obj.instance_eval {
|
|
|
|
@base_uri = nil
|
|
|
|
@meta = {}
|
|
|
|
}
|
|
|
|
if src
|
|
|
|
obj.status = src.status
|
|
|
|
obj.base_uri = src.base_uri
|
|
|
|
src.meta.each {|name, value|
|
|
|
|
obj.meta_add_field(name, value)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# returns an Array which consits status code and message.
|
|
|
|
attr_accessor :status
|
|
|
|
|
|
|
|
# returns a URI which is base of relative URIs in the data.
|
|
|
|
# It may differ from the URI supplied by a user because redirection.
|
|
|
|
attr_accessor :base_uri
|
|
|
|
|
|
|
|
# returns a Hash which represents header fields.
|
|
|
|
# The Hash keys are downcased for canonicalization.
|
|
|
|
attr_reader :meta
|
|
|
|
|
2003-02-05 13:44:05 +03:00
|
|
|
def meta_add_field(name, value) # :nodoc:
|
2002-12-16 22:06:36 +03:00
|
|
|
@meta[name.downcase] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# returns a Time which represents Last-Modified field.
|
|
|
|
def last_modified
|
|
|
|
if v = @meta['last-modified']
|
|
|
|
Time.httpdate(v)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
RE_LWS = /[\r\n\t ]+/n
|
|
|
|
RE_TOKEN = %r{[^\x00- ()<>@,;:\\"/\[\]?={}\x7f]+}n
|
|
|
|
RE_QUOTED_STRING = %r{"(?:[\r\n\t !#-\[\]-~\x80-\xff]|\\[\x00-\x7f])"}n
|
|
|
|
RE_PARAMETERS = %r{(?:;#{RE_LWS}?#{RE_TOKEN}#{RE_LWS}?=#{RE_LWS}?(?:#{RE_TOKEN}|#{RE_QUOTED_STRING})#{RE_LWS}?)*}n
|
|
|
|
|
2003-02-05 13:44:05 +03:00
|
|
|
def content_type_parse # :nodoc:
|
2002-12-16 22:06:36 +03:00
|
|
|
v = @meta['content-type']
|
|
|
|
if v && %r{\A#{RE_LWS}?(#{RE_TOKEN})#{RE_LWS}?/(#{RE_TOKEN})#{RE_LWS}?(#{RE_PARAMETERS})\z}o =~ v
|
|
|
|
type = $1.downcase
|
|
|
|
subtype = $2.downcase
|
|
|
|
parameters = []
|
|
|
|
$3.scan(/;#{RE_LWS}?(#{RE_TOKEN})#{RE_LWS}?=#{RE_LWS}?(?:(#{RE_TOKEN})|(#{RE_QUOTED_STRING}))/o) {|att, val, qval|
|
|
|
|
val = qval.gsub(/[\r\n\t !#-\[\]-~\x80-\xff]+|(\\[\x00-\x7f])/) { $1 ? $1[1,1] : $& } if qval
|
|
|
|
parameters << [att.downcase, val]
|
|
|
|
}
|
|
|
|
["#{type}/#{subtype}", *parameters]
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# returns "type/subtype" which is MIME Content-Type.
|
|
|
|
# It is downcased for canonicalization.
|
|
|
|
# Content-Type parameters are stripped.
|
|
|
|
def content_type
|
|
|
|
type, *parameters = content_type_parse
|
|
|
|
type || 'application/octet-stream'
|
|
|
|
end
|
|
|
|
|
|
|
|
# returns a charset parameter in Content-Type field.
|
|
|
|
# It is downcased for canonicalization.
|
2003-05-15 13:48:12 +04:00
|
|
|
#
|
|
|
|
# If charset parameter is not given but a block is given,
|
|
|
|
# the block is called and its result is returned.
|
|
|
|
# It can be used to guess charset.
|
|
|
|
#
|
|
|
|
# If charset parameter and block is not given,
|
|
|
|
# nil is returned except text type in HTTP.
|
|
|
|
# In that case, "iso-8859-1" is returned as defined by RFC2616 3.7.1.
|
2002-12-16 22:06:36 +03:00
|
|
|
def charset
|
|
|
|
type, *parameters = content_type_parse
|
|
|
|
if pair = parameters.assoc('charset')
|
|
|
|
pair.last.downcase
|
2003-05-15 13:48:12 +04:00
|
|
|
elsif block_given?
|
|
|
|
yield
|
2002-12-16 22:06:36 +03:00
|
|
|
elsif type && %r{\Atext/} =~ type &&
|
2003-11-24 14:01:57 +03:00
|
|
|
@base_uri && /\Ahttp\z/i =~ @base_uri.scheme
|
2002-12-16 22:06:36 +03:00
|
|
|
"iso-8859-1" # RFC2616 3.7.1
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# returns a list of encodings in Content-Encoding field
|
|
|
|
# as an Array of String.
|
|
|
|
# The encodings are downcased for canonicalization.
|
|
|
|
def content_encoding
|
|
|
|
v = @meta['content-encoding']
|
|
|
|
if v && %r{\A#{RE_LWS}?#{RE_TOKEN}#{RE_LWS}?(?:,#{RE_LWS}?#{RE_TOKEN}#{RE_LWS}?)*}o =~ v
|
|
|
|
v.scan(RE_TOKEN).map {|content_coding| content_coding.downcase}
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-11-13 14:39:16 +03:00
|
|
|
# Mixin for HTTP and FTP URIs.
|
2002-12-16 22:06:36 +03:00
|
|
|
module OpenRead
|
2003-11-24 11:02:36 +03:00
|
|
|
# OpenURI::OpenRead#open provides `open' for URI::HTTP and URI::FTP.
|
|
|
|
#
|
|
|
|
# OpenURI::OpenRead#open takes optional 3 arguments as:
|
|
|
|
# OpenURI::OpenRead#open([mode [, perm]] [, options]) [{|io| ... }]
|
|
|
|
#
|
|
|
|
# `mode', `perm' is same as Kernel#open.
|
|
|
|
#
|
|
|
|
# However, `mode' must be read mode because OpenURI::OpenRead#open doesn't
|
|
|
|
# support write mode (yet).
|
|
|
|
# Also `perm' is just ignored because it is meaningful only for file
|
|
|
|
# creation.
|
|
|
|
#
|
|
|
|
# `options' must be a hash.
|
|
|
|
#
|
|
|
|
# Each pairs which key is a string in the hash specify a extra header
|
|
|
|
# field for HTTP.
|
|
|
|
# I.e. it is ignored for FTP without HTTP proxy.
|
|
|
|
#
|
|
|
|
# The hash may include other option which key is a symbol:
|
|
|
|
#
|
|
|
|
# :proxy => "http://proxy.foo.com:8000/"
|
|
|
|
# :proxy => URI.parse("http://proxy.foo.com:8000/")
|
|
|
|
# :proxy => true
|
|
|
|
# :proxy => false
|
|
|
|
# :proxy => nil
|
|
|
|
#
|
|
|
|
# If :proxy option is specified, the value should be String, URI,
|
|
|
|
# boolean or nil.
|
|
|
|
# When String or URI is given, it is treated as proxy URI.
|
|
|
|
# When true is given or the option itself is not specified,
|
|
|
|
# environment variable `scheme_proxy'(or `SCHEME_PROXY') is examined.
|
|
|
|
# `scheme' is replaced by `http' or `ftp'.
|
|
|
|
# When false or nil is given, the environment variables are ignored and
|
|
|
|
# connection will be made to a server directly.
|
|
|
|
#
|
|
|
|
# :content_length_proc => lambda {|content_length| ... }
|
|
|
|
#
|
|
|
|
# If :content_length_proc option is specified, the option value procedure
|
|
|
|
# is called before actual transfer is started.
|
|
|
|
# It takes one argument which is expected content length in bytes.
|
|
|
|
#
|
|
|
|
# If two or more transfer is done by HTTP redirection, the procedure
|
|
|
|
# is called only one for a last transfer.
|
|
|
|
#
|
|
|
|
# When expected content length is unknown, the procedure is called with
|
|
|
|
# nil.
|
|
|
|
# It is happen when HTTP response has no Content-Length header.
|
|
|
|
#
|
|
|
|
# :progress_proc => lambda {|size| ...}
|
|
|
|
#
|
|
|
|
# If :progress_proc option is specified, the proc is called with one
|
|
|
|
# argument each time when `open' gets content fragment from network.
|
|
|
|
# The argument `size' `size' is a accumulated transfered size in bytes.
|
|
|
|
#
|
|
|
|
# If two or more transfer is done by HTTP redirection, the procedure
|
|
|
|
# is called only one for a last transfer.
|
|
|
|
#
|
|
|
|
# :progress_proc and :content_length_proc are intended to be used for
|
|
|
|
# progress bar.
|
|
|
|
# For example, it can be implemented as follows using Ruby/ProgressBar.
|
|
|
|
#
|
|
|
|
# pbar = nil
|
|
|
|
# open("http://...",
|
|
|
|
# :content_length_proc => lambda {|t|
|
|
|
|
# if t && 0 < t
|
|
|
|
# pbar = ProgressBar.new("...", t)
|
|
|
|
# pbar.file_transfer_mode
|
|
|
|
# end
|
|
|
|
# },
|
|
|
|
# :progress_proc => lambda {|s|
|
|
|
|
# pbar.set s if pbar
|
|
|
|
# }) {|f| ... }
|
|
|
|
#
|
|
|
|
# OpenURI::OpenRead#open returns an IO like object if block is not given.
|
|
|
|
# Otherwise it yields the IO object and return the value of the block.
|
|
|
|
# The IO object is extended with OpenURI::Meta.
|
2003-02-05 13:44:05 +03:00
|
|
|
def open(*rest, &block)
|
|
|
|
OpenURI.open_uri(self, *rest, &block)
|
2002-12-16 22:06:36 +03:00
|
|
|
end
|
|
|
|
|
2003-11-24 11:02:36 +03:00
|
|
|
# OpenURI::OpenRead#read([options]) reads a content referenced by self and
|
|
|
|
# returns the content as string.
|
|
|
|
# The string is extended with OpenURI::Meta.
|
|
|
|
# The argument `options' is same as OpenURI::OpenRead#open.
|
2002-12-16 22:06:36 +03:00
|
|
|
def read(options={})
|
|
|
|
self.open(options) {|f|
|
|
|
|
str = f.read
|
|
|
|
Meta.init str, f
|
|
|
|
str
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module URI
|
|
|
|
class Generic
|
|
|
|
# returns a proxy URI.
|
|
|
|
# The proxy URI is obtained from environment variables such as http_proxy,
|
|
|
|
# ftp_proxy, no_proxy, etc.
|
|
|
|
# If there is no proper proxy, nil is returned.
|
2003-11-24 14:01:57 +03:00
|
|
|
#
|
2003-11-25 11:53:42 +03:00
|
|
|
# Note that capitalized variables (HTTP_PROXY, FTP_PROXY, NO_PROXY, etc.)
|
|
|
|
# are examined too.
|
|
|
|
#
|
|
|
|
# But http_proxy and HTTP_PROXY is treated specially under CGI environment.
|
|
|
|
# It's because HTTP_PROXY may be set by Proxy: header.
|
|
|
|
# So HTTP_PROXY is not used.
|
|
|
|
# http_proxy is not used too if the variable is case insentitive.
|
|
|
|
# CGI_HTTP_PROXY can be used instead.
|
2002-12-16 22:06:36 +03:00
|
|
|
def find_proxy
|
2003-11-24 14:01:57 +03:00
|
|
|
name = self.scheme.downcase + '_proxy'
|
2003-11-25 11:53:42 +03:00
|
|
|
proxy_uri = nil
|
|
|
|
if name == 'http_proxy' && ENV.include?('REQUEST_METHOD') # CGI?
|
|
|
|
# HTTP_PROXY conflicts with *_proxy for proxy settings and
|
|
|
|
# HTTP_* for header informatin in CGI.
|
|
|
|
# So it should be careful to use it.
|
|
|
|
case_sentsitive = /djgpp|bccwin32|mingw|mswin32|mswince|emx/ !~ RUBY_PLATFORM
|
|
|
|
if case_sentsitive
|
|
|
|
# http_proxy is safe to use.
|
|
|
|
proxy_uri = ENV[name]
|
|
|
|
end
|
|
|
|
if !proxy_uri
|
|
|
|
# Use CGI_HTTP_PROXY. cf. libwww-perl.
|
|
|
|
proxy_uri = ENV["CGI_#{name.upcase}"]
|
|
|
|
end
|
|
|
|
else
|
|
|
|
proxy_uri = ENV[name] || ENV[name.upcase]
|
2003-11-24 14:01:57 +03:00
|
|
|
end
|
2003-11-25 11:53:42 +03:00
|
|
|
|
|
|
|
if proxy_uri
|
2002-12-16 22:06:36 +03:00
|
|
|
proxy_uri = URI.parse(proxy_uri)
|
|
|
|
name = 'no_proxy'
|
|
|
|
if no_proxy = ENV[name] || ENV[name.upcase]
|
|
|
|
no_proxy.scan(/([^:,]*)(?::(\d+))?/) {|host, port|
|
2003-10-05 06:00:29 +04:00
|
|
|
if /(\A|\.)#{Regexp.quote host}\z/i =~ self.host &&
|
2002-12-16 22:06:36 +03:00
|
|
|
(!port || self.port == port.to_i)
|
|
|
|
proxy_uri = nil
|
|
|
|
break
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
proxy_uri
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class HTTP
|
2003-11-15 04:09:21 +03:00
|
|
|
def direct_open(buf, options) # :nodoc:
|
|
|
|
proxy_open(buf, request_uri, options)
|
2002-12-16 22:06:36 +03:00
|
|
|
end
|
|
|
|
|
2003-11-15 04:09:21 +03:00
|
|
|
def proxy_open(buf, uri, options) # :nodoc:
|
|
|
|
header = {}
|
|
|
|
options.each {|k, v| header[k] = v if String === k }
|
|
|
|
|
2002-12-16 22:06:36 +03:00
|
|
|
require 'net/http'
|
2003-11-24 11:02:36 +03:00
|
|
|
resp = nil
|
|
|
|
Net::HTTP.start(self.host, self.port) {|http|
|
|
|
|
http.request_get(uri.to_s, header) {|response|
|
|
|
|
resp = response
|
|
|
|
if options[:content_length_proc] && Net::HTTPSuccess === resp
|
|
|
|
if resp.key?('Content-Length')
|
|
|
|
options[:content_length_proc].call(resp['Content-Length'].to_i)
|
|
|
|
else
|
|
|
|
options[:content_length_proc].call(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
resp.read_body {|str|
|
|
|
|
buf << str
|
|
|
|
if options[:progress_proc] && Net::HTTPSuccess === resp
|
|
|
|
options[:progress_proc].call(buf.size)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-12-16 22:06:36 +03:00
|
|
|
io = buf.io
|
|
|
|
io.rewind
|
|
|
|
io.status = [resp.code, resp.message]
|
|
|
|
resp.each {|name,value| buf.io.meta_add_field name, value }
|
|
|
|
case resp
|
|
|
|
when Net::HTTPSuccess
|
|
|
|
when Net::HTTPMovedPermanently, # 301
|
|
|
|
Net::HTTPFound, # 302
|
|
|
|
Net::HTTPSeeOther, # 303
|
|
|
|
Net::HTTPTemporaryRedirect # 307
|
2003-11-24 17:36:18 +03:00
|
|
|
throw :open_uri_redirect, URI.parse(resp['location'])
|
2002-12-16 22:06:36 +03:00
|
|
|
else
|
|
|
|
raise OpenURI::HTTPError.new(io.status.join(' '), io)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
include OpenURI::OpenRead
|
|
|
|
end
|
|
|
|
|
|
|
|
class FTP
|
2003-11-15 04:09:21 +03:00
|
|
|
def direct_open(buf, options) # :nodoc:
|
2002-12-16 22:06:36 +03:00
|
|
|
require 'net/ftp'
|
|
|
|
# todo: extract user/passwd from .netrc.
|
|
|
|
user = 'anonymous'
|
|
|
|
passwd = nil
|
|
|
|
user, passwd = self.userinfo.split(/:/) if self.userinfo
|
|
|
|
|
|
|
|
ftp = Net::FTP.open(self.host)
|
|
|
|
ftp.login(user, passwd)
|
2003-11-24 11:02:36 +03:00
|
|
|
if options[:content_length_proc]
|
|
|
|
options[:content_length_proc].call(ftp.size(self.path))
|
|
|
|
end
|
2003-11-15 04:09:21 +03:00
|
|
|
ftp.getbinaryfile(self.path, '/dev/null', Net::FTP::DEFAULT_BLOCKSIZE) {|str|
|
|
|
|
buf << str
|
2003-11-24 11:02:36 +03:00
|
|
|
options[:progress_proc].call(buf.size) if options[:progress_proc]
|
2003-11-15 04:09:21 +03:00
|
|
|
}
|
2002-12-16 22:06:36 +03:00
|
|
|
ftp.close
|
|
|
|
buf.io.rewind
|
|
|
|
end
|
|
|
|
|
|
|
|
include OpenURI::OpenRead
|
|
|
|
end
|
|
|
|
end
|