class Sensit::HttpClient::RequestHandler

RequestHandler takes care of encoding the request body into format given by options

Public Class Methods

set_body(options) click to toggle source
# File lib/sensit/http_client/request_handler.rb, line 8
def self.set_body(options)
  type = options.has_key?(:request_type) ? options[:request_type] : "form"

  # Encoding request body into JSON format
  if type == "json"
    options[:body] = options[:body].to_json
    options[:headers]["content-type"] = "application/json"
  end

  # Encoding body into form-urlencoded format
  if type == "form"
    options[:body] = Faraday::Utils::ParamsHash[options[:body]].to_query
    options[:headers]["content-type"] = "application/x-www-form-urlencoded"
  end

  # Raw body
  if type == "raw"
    options[:body] = options[:body].is_a?(Hash) ? "" : options[:body]
    options[:headers].delete "content-type"
  end

  return options
end