Class: Io::Flow::V0::HttpClient::DefaultHttpHandlerInstance
- Inherits:
-
HttpHandlerInstance
- Object
- HttpHandlerInstance
- Io::Flow::V0::HttpClient::DefaultHttpHandlerInstance
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
Instance Method Summary collapse
-
#configure_ssl ⇒ Object
Called to configure SSL if the base uri requires it.
- #execute(request) ⇒ Object
- #full_uri(path) ⇒ Object
-
#initialize(base_uri) ⇒ DefaultHttpHandlerInstance
constructor
A new instance of DefaultHttpHandlerInstance.
Constructor Details
#initialize(base_uri) ⇒ DefaultHttpHandlerInstance
Returns a new instance of DefaultHttpHandlerInstance.
55094 55095 55096 55097 55098 55099 55100 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55094 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
#client ⇒ Object (readonly)
Returns the value of attribute client.
55092 55093 55094 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55092 def client @client end |
Instance Method Details
#configure_ssl ⇒ Object
Called to configure SSL if the base uri requires it
55123 55124 55125 55126 55127 55128 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55123 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
55102 55103 55104 55105 55106 55107 55108 55109 55110 55111 55112 55113 55114 55115 55116 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55102 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., :body => body, :uri => full_uri(request.path).to_s) end end |
#full_uri(path) ⇒ Object
55118 55119 55120 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55118 def full_uri(path) path.start_with?(@base_uri.to_s) ? path : File.join(@base_uri.to_s, path) end |