class Faraday::Request::UrlEncoded
Middleware for supporting urlencoded requests.
def call(env)
-
env
(Faraday::Env
) --
def call(env) match_content_type(env) do |data| params = Faraday::Utils::ParamsHash[data] env.body = params.to_query(env.params_encoder) end @app.call env end
def match_content_type(env)
- Yield: - Body of the request
Parameters:
-
env
(Faraday::Env
) --
def match_content_type(env) return unless process_request?(env) env.request_headers[CONTENT_TYPE] ||= self.class.mime_type return if env.body.respond_to?(:to_str) || env.body.respond_to?(:read) yield(env.body) end
def process_request?(env)
-
(Boolean)
- True if the request has a body and its Content-Type is
Parameters:
-
env
(Faraday::Env
) --
def process_request?(env) type = request_type(env) env.body && (type.empty? || (type == self.class.mime_type)) end
def request_type(env)
-
(String)
-
Parameters:
-
env
(Faraday::Env
) --
def request_type(env) type = env.request_headers[CONTENT_TYPE].to_s type = type.split(';', 2).first if type.index(';') type end