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.



33014
33015
33016
33017
33018
33019
33020
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33014

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.



33012
33013
33014
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33012

def client
  @client
end

Instance Method Details

#configure_sslObject

Called to configure SSL if the base uri requires it



33043
33044
33045
33046
33047
33048
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33043

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



33022
33023
33024
33025
33026
33027
33028
33029
33030
33031
33032
33033
33034
33035
33036
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33022

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



33038
33039
33040
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33038

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