Class: Handsoap::Http::Drivers::NetHttpDriver

Inherits:
AbstractDriver show all
Defined in:
lib/handsoap/http/drivers/net_http_driver.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractDriver

#initialize, #parse_headers, #parse_http_part, #parse_multipart, #parse_multipart_boundary

Constructor Details

This class inherits a constructor from Handsoap::Http::Drivers::AbstractDriver

Class Method Details

.load!Object



7
8
9
10
# File 'lib/handsoap/http/drivers/net_http_driver.rb', line 7

def self.load!
  require 'net/http'
  require 'uri'
end

Instance Method Details

#send_http_request(request) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/handsoap/http/drivers/net_http_driver.rb', line 12

def send_http_request(request)
  url = request.url
  unless url.kind_of? ::URI::Generic
    url = ::URI.parse(url)
  end
  ::URI::Generic.send(:public, :path_query) # hackety hack
  path = url.path_query
  http_request = case request.http_method
                 when :get
                   Net::HTTP::Get.new(path)
                 when :post
                   Net::HTTP::Post.new(path)
                 when :put
                   Net::HTTP::Put.new(path)
                 when :delete
                   Net::HTTP::Delete.new(path)
                 else
                   raise "Unsupported request method #{request.http_method}"
                 end
                 
  http_client = Net::HTTP.new(url.host, url.port)
  
  #http_client.read_timeout = 120
  http_client.open_timeout = Handsoap.timeout
  http_client.read_timeout = Handsoap.timeout
  
  http_client.use_ssl = true if url.scheme == 'https'
  
  if request.username && request.password
    # TODO: http://codesnippets.joyent.com/posts/show/1075
    http_request.basic_auth request.username, request.password
  end
  request.headers.each do |k, values|
    values.each do |v|
      http_request.add_field(k, v)
    end
  end
  http_request.body = request.body
  # require 'stringio'
  # debug_output = StringIO.new
  # http_client.set_debug_output debug_output
  http_response = http_client.start do |client|
    client.request(http_request)
  end
  # puts debug_output.string
  # hacky-wacky
  def http_response.get_headers
    @header.inject({}) do |h, (k, v)|
      h[k.downcase] = v
      h
    end
  end
  # net/http only supports basic auth. We raise a warning if the server requires something else.
  if http_response.code == 401 && http_response.get_headers['www-authenticate']
    auth_type = http_response.get_headers['www-authenticate'].chomp.match(/\w+/)[0].downcase
    if auth_type != "basic"
      raise "Authentication type #{auth_type} is unsupported by net/http"
    end
  end
  parse_http_part(http_response.get_headers, http_response.body, http_response.code)
end