Class: Io::Flow::V0::HttpClient::DefaultHttpHandlerInstance

Inherits:
HttpHandlerInstance show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base_uri) ⇒ DefaultHttpHandlerInstance

Returns a new instance of DefaultHttpHandlerInstance.



26469
26470
26471
26472
26473
26474
26475
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26469

def initialize(base_uri)
  @base_uri = Preconditions.assert_class('base_uri', base_uri, URI)
  @client = Net::HTTP.new(@base_uri.host, @base_uri.port)
  if @base_uri.scheme == "https"
    configure_ssl
  end
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



26467
26468
26469
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26467

def client
  @client
end

Instance Method Details

#configure_sslObject

Called to configure SSL if the base uri requires it



26498
26499
26500
26501
26502
26503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26498

def configure_ssl
  @client.use_ssl = true
  @client.verify_mode = OpenSSL::SSL::VERIFY_PEER
  @client.cert_store = OpenSSL::X509::Store.new
  @client.cert_store.set_default_paths
end

#execute(request) ⇒ Object



26477
26478
26479
26480
26481
26482
26483
26484
26485
26486
26487
26488
26489
26490
26491
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26477

def execute(request)
  response = begin
               @client.request(request)
             rescue SocketError => e
               raise StandardError.new("Error accessing uri[#{full_uri(request.path)}]: #{e}")
             end

  case response
  when Net::HTTPSuccess
    response.body
  else
    body = response.body rescue nil
    raise HttpClient::ServerError.new(response.code.to_i, response.message, :body => body, :uri => full_uri(request.path).to_s)
  end
end

#full_uri(path) ⇒ Object



26493
26494
26495
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26493

def full_uri(path)
  File.join(@base_uri.to_s, path)
end