Class: Grape::Middleware::Formatter

Inherits:
Base
  • Object
show all
Defined in:
lib/grape/middleware/formatter.rb

Constant Summary collapse

CHUNKED =
'chunked'.freeze

Constants inherited from Base

Base::TEXT_HTML

Instance Attribute Summary

Attributes inherited from Base

#app, #env, #options

Instance Method Summary collapse

Methods inherited from Base

#call, #call!, #content_type, #content_type_for, #content_types, #initialize, #mime_types, #response

Methods included from DSL::Headers

#header

Constructor Details

This class inherits a constructor from Grape::Middleware::Base

Instance Method Details

#afterObject



21
22
23
24
25
26
27
28
29
30
# File 'lib/grape/middleware/formatter.rb', line 21

def after
  return unless @app_response
  status, headers, bodies = *@app_response

  if Rack::Utils::STATUS_WITH_NO_ENTITY_BODY.include?(status)
    @app_response
  else
    build_formatted_response(status, headers, bodies)
  end
end

#beforeObject



16
17
18
19
# File 'lib/grape/middleware/formatter.rb', line 16

def before
  negotiate_content_type
  read_body_input
end

#default_optionsObject



8
9
10
11
12
13
14
# File 'lib/grape/middleware/formatter.rb', line 8

def default_options
  {
    default_format: :txt,
    formatters: {},
    parsers: {}
  }
end