Class: BitBucket::Request::Jsonize

Inherits:
Faraday::Middleware
  • Object
show all
Defined in:
lib/bitbucket_rest_api/request/jsonize.rb

Constant Summary collapse

CONTENT_TYPE =
'Content-Type'.freeze
MIME_TYPE =
'application/json'.freeze

Instance Method Summary collapse

Instance Method Details

#call(env) ⇒ Object



13
14
15
16
17
18
19
# 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) ⇒ Object



21
22
23
24
25
26
27
# 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) ⇒ Boolean

Don’t encode bodies in string form

Returns:

  • (Boolean)


35
36
37
# 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) ⇒ Object



39
40
41
42
43
# 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) ⇒ Boolean

Returns:

  • (Boolean)


29
30
31
32
# 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