class Restforce::Middleware::JsonRequest

rubocop:disable Style/ClassAndModuleChildren
Doesn’t try to encode bodies that already are in string form.
to JSON MIME-type.
If a request doesn’t have a type but has a body, it sets the Content-type
Processes only requests with matching Content-type or those without a type.
Request middleware that encodes the body as JSON.

def body?(env)

def body?(env)
  (body = env[:body]) && !(body.respond_to?(:to_str) && body.empty?)
end

def call(env)


Licensed under the MIT License.
Copyright (c) 2009-2022 Rick Olson, Zack Hobson

In Faraday versions before v1.2.0, `#call` is missing.

variable rather than expecting an `attr_reader` to exist.
with a tiny adaptation to refer to the `@app` instance
gem (),
Taken from `lib/faraday/middleware.rb` in the `faraday`
def call(env)
  on_request(env) if respond_to?(:on_request)
  @app.call(env).on_complete do |environment|
    on_complete(environment) if respond_to?(:on_complete)
  end
end

def encode(data)

def encode(data)
  ::JSON.generate(data)
end

def match_content_type(env)

def match_content_type(env)
  return unless process_request?(env)
  env[:request_headers][CONTENT_TYPE] ||= MIME_TYPE
  yield env[:body] unless env[:body].respond_to?(:to_str)
end

def on_request(env)

def on_request(env)
  match_content_type(env) do |data|
    env[:body] = encode(data)
  end
end

def process_request?(env)

def process_request?(env)
  type = request_type(env)
  body?(env) && (type.empty? || type.match?(MIME_TYPE_REGEX))
end

def request_type(env)

def request_type(env)
  type = env[:request_headers][CONTENT_TYPE].to_s
  type = type.split(';', 2).first if type.index(';')
  type
end