Class: Buffer::HttpClient::ResponseHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/buffer/http_client/response_handler.rb

Overview

ResponseHandler takes care of decoding the response body into suitable type

Class Method Summary collapse

Class Method Details

.get_body(response) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/buffer/http_client/response_handler.rb', line 8

def self.get_body(response)
  type = response.headers["content-type"]
  body = response.body

  # Response body is in JSON
  if type.include? "json"
    body = JSON.parse body
  end

  body
end