class BitBucket::Request::Jsonize

Constants

CONTENT_TYPE
MIME_TYPE

Public Instance Methods

call(env) click to toggle source
# File lib/bitbucket_rest_api/request/jsonize.rb, line 11
def call(env)
  if request_with_body?(env)
    env[:request_headers][CONTENT_TYPE] ||= MIME_TYPE
    env[:body] = encode_body env unless env[:body].respond_to?(:to_str)
  end
  @app.call env
end
encode_body(env) click to toggle source
# File lib/bitbucket_rest_api/request/jsonize.rb, line 19
def encode_body(env)
  MultiJson.dump(env[:body])
end
has_body?(env) click to toggle source

Don't encode bodies in string form

# File lib/bitbucket_rest_api/request/jsonize.rb, line 29
def has_body?(env)
  (body = env[:body]) && !(body.respond_to?(:to_str) && body.empty?)
end
request_type(env) click to toggle source
# File lib/bitbucket_rest_api/request/jsonize.rb, line 33
def request_type(env)
  type = env[:request_headers][CONTENT_TYPE].to_s
  type = type.split(';', 2).first if type.index(';')
  type
end
request_with_body?(env) click to toggle source
# File lib/bitbucket_rest_api/request/jsonize.rb, line 23
def request_with_body?(env)
  type = request_type(env)
  has_body?(env) && (type.empty? || (type == MIME_TYPE))
end