class Academical::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/academical/http_client/request_handler.rb, line 8
def self.set_body(options)
  type = options.fetch(:request_type, "json")

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

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

  return options
end