Class: Grape::Middleware::Base
- Inherits:
- 
      Object
      
        - Object
- Grape::Middleware::Base
 
- Includes:
- DSL::Headers, Helpers
- Defined in:
- lib/grape/middleware/base.rb
Direct Known Subclasses
Error, Filter, Formatter, Globals, Versioner::AcceptVersionHeader, Versioner::Header, Versioner::Param, Versioner::Path
Constant Summary collapse
- TEXT_HTML =
- 'text/html'
Instance Attribute Summary collapse
- 
  
    
      #app  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute app. 
- 
  
    
      #env  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute env. 
- 
  
    
      #options  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute options. 
Instance Method Summary collapse
- 
  
    
      #after  ⇒ Response? 
    
    
  
  
  
  
  
  abstract
  
  
  
    Called after the application is called in the middleware lifecycle. 
- 
  
    
      #before  ⇒ Object 
    
    
  
  
  
  
  
  abstract
  
  
  
    Called before the application is called in the middleware lifecycle. 
- #call(env) ⇒ Object
- #call!(env) ⇒ Object
- #content_type ⇒ Object
- #content_type_for(format) ⇒ Object
- #content_types ⇒ Object
- #default_options ⇒ Object
- 
  
    
      #initialize(app, *options)  ⇒ Base 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Base. 
- #mime_types ⇒ Object
- #response ⇒ Object
Methods included from DSL::Headers
Methods included from Helpers
Constructor Details
#initialize(app, *options) ⇒ Base
Returns a new instance of Base.
| 16 17 18 19 20 | # File 'lib/grape/middleware/base.rb', line 16 def initialize(app, *) @app = app = .any? ? .merge(.shift) : @app_response = nil end | 
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
| 8 9 10 | # File 'lib/grape/middleware/base.rb', line 8 def app @app end | 
#env ⇒ Object (readonly)
Returns the value of attribute env.
| 8 9 10 | # File 'lib/grape/middleware/base.rb', line 8 def env @env end | 
#options ⇒ Object (readonly)
Returns the value of attribute options.
| 8 9 10 | # File 'lib/grape/middleware/base.rb', line 8 def end | 
Instance Method Details
#after ⇒ Response?
  This method is abstract.
  
Called after the application is called in the middleware lifecycle.
| 56 | # File 'lib/grape/middleware/base.rb', line 56 def after; end | 
#before ⇒ Object
  This method is abstract.
  
Called before the application is called in the middleware lifecycle.
| 51 | # File 'lib/grape/middleware/base.rb', line 51 def before; end | 
#call(env) ⇒ Object
| 26 27 28 | # File 'lib/grape/middleware/base.rb', line 26 def call(env) dup.call!(env).to_a end | 
#call!(env) ⇒ Object
| 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | # File 'lib/grape/middleware/base.rb', line 30 def call!(env) @env = env before begin @app_response = @app.call(@env) ensure begin after_response = after rescue StandardError => e warn "caught error of type #{e.class} in after callback inside #{self.class.name} : #{e.message}" raise e end end response = after_response || @app_response merge_headers response response end | 
#content_type ⇒ Object
| 72 73 74 | # File 'lib/grape/middleware/base.rb', line 72 def content_type content_type_for(env[Grape::Env::API_FORMAT] || [:format]) || TEXT_HTML end | 
#content_type_for(format) ⇒ Object
| 64 65 66 | # File 'lib/grape/middleware/base.rb', line 64 def content_type_for(format) HashWithIndifferentAccess.new(content_types)[format] end | 
#content_types ⇒ Object
| 68 69 70 | # File 'lib/grape/middleware/base.rb', line 68 def content_types ContentTypes.content_types_for([:content_types]) end | 
#default_options ⇒ Object
| 22 23 24 | # File 'lib/grape/middleware/base.rb', line 22 def {} end | 
#mime_types ⇒ Object
| 76 77 78 79 80 | # File 'lib/grape/middleware/base.rb', line 76 def mime_types @mime_types ||= content_types.each_pair.with_object({}) do |(k, v), types_without_params| types_without_params[v.split(';').first] = k end end | 
#response ⇒ Object
| 58 59 60 61 62 | # File 'lib/grape/middleware/base.rb', line 58 def response return @app_response if @app_response.is_a?(Rack::Response) @app_response = Rack::Response.new(@app_response[2], @app_response[0], @app_response[1]) end |