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 13 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 21 def encode_body(env) if MultiJson.respond_to?(:dump) MultiJson.dump env[:body] else MultiJson.encode env[:body] end end
has_body?(env)
click to toggle source
Don't encode bodies in string form
# File lib/bitbucket_rest_api/request/jsonize.rb, line 35 def has_body?(env) body = env[:body] and !(body.respond_to?(:to_str) and body.empty?) end
request_type(env)
click to toggle source
# File lib/bitbucket_rest_api/request/jsonize.rb, line 39 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 29 def request_with_body?(env) type = request_type(env) has_body?(env) and (type.empty? or type == MIME_TYPE) end