Class: Typhoeus::Response
- Inherits:
-
Object
- Object
- Typhoeus::Response
- Includes:
- CurlHelper
- Defined in:
- lib/labclient/http.rb
Overview
Add Data : OJ Parsing
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
- #data ⇒ Object
- #friendly_error ⇒ Object
- #inspect ⇒ Object
- #process_body ⇒ Object
-
#response ⇒ Object
Shim for CurlHelper.
Methods included from CurlHelper
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
72 73 74 |
# File 'lib/labclient/http.rb', line 72 def client @client end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
72 73 74 |
# File 'lib/labclient/http.rb', line 72 def path @path end |
Instance Method Details
#data ⇒ Object
74 75 76 77 78 |
# File 'lib/labclient/http.rb', line 74 def data return @data if @data @data = process_body end |
#friendly_error ⇒ Object
97 98 99 100 101 102 103 104 |
# File 'lib/labclient/http.rb', line 97 def friendly_error = if data data[:message] || data[:error] || data else end "#{code} - #{}" end |
#inspect ⇒ Object
68 69 70 |
# File 'lib/labclient/http.rb', line 68 def inspect "#<TyphoeusResponse code: #{code}>" end |
#process_body ⇒ Object
85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/labclient/http.rb', line 85 def process_body if body.empty? nil elsif headers['content-type']&.include? 'text/plain' body else result = Oj.load(body, mode: :compat, object_class: LabClient::LabStruct) result.instance_variable_set(:@response, self) if result.instance_of?(LabClient::LabStruct) result end end |
#response ⇒ Object
Shim for CurlHelper
81 82 83 |
# File 'lib/labclient/http.rb', line 81 def response self end |