class ElastomerClient::Middleware::EncodeJson
Request middleware that encodes the body as JSON.
Processes only requests with matching Content-type or those without a type. If a request doesn’t have a type but has a body, it sets the Content-type to JSON MIME-type.
Doesn’t try to encode bodies that already are in string form.
Constants
- CONTENT_TYPE
- MIME_TYPE
Public Instance Methods
Source
# File lib/elastomer_client/middleware/encode_json.rb, line 49 def add_content_type!(env) method = env[:method] if method == :put || method == :post || has_body?(env) env[:request_headers][CONTENT_TYPE] ||= MIME_TYPE end end
Source
# File lib/elastomer_client/middleware/encode_json.rb, line 16 def call(env) match_content_type(env) do |data| env[:body] = encode data end @app.call env end
Source
# File lib/elastomer_client/middleware/encode_json.rb, line 23 def encode(data) MultiJson.dump data end
Source
# File lib/elastomer_client/middleware/encode_json.rb, line 39 def has_body?(env) (body = env[:body]) && !(body.respond_to?(:to_str) && body.empty?) end
Source
# File lib/elastomer_client/middleware/encode_json.rb, line 27 def match_content_type(env) add_content_type!(env) if process_request?(env) yield env[:body] unless env[:body].respond_to?(:to_str) end end
Source
# File lib/elastomer_client/middleware/encode_json.rb, line 34 def process_request?(env) type = request_type(env) has_body?(env) && (type.empty? || type == MIME_TYPE) end
Source
# File lib/elastomer_client/middleware/encode_json.rb, line 43 def request_type(env) type = env[:request_headers][CONTENT_TYPE].to_s type = type.split(";", 2).first if type.index(";") type end