Class: ActionDispatch::Callbacks

Inherits:
Object
  • Object
show all
Includes:
ActiveSupport::Callbacks
Defined in:
actionpack/lib/action_dispatch/middleware/callbacks.rb

Overview

Provide callbacks to be executed before and after the request dispatch.

Constant Summary

Constants included from ActiveSupport::Callbacks

ActiveSupport::Callbacks::CALLBACK_FILTER_TYPES

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ActiveSupport::Callbacks

#run_callbacks

Methods included from ActiveSupport::Concern

#append_features, extended, #included

Constructor Details

#initialize(app) ⇒ Callbacks

Returns a new instance of Callbacks.



21
22
23
# File 'actionpack/lib/action_dispatch/middleware/callbacks.rb', line 21

def initialize(app)
  @app = app
end

Class Method Details

.after(*args, &block) ⇒ Object



16
17
18
# File 'actionpack/lib/action_dispatch/middleware/callbacks.rb', line 16

def after(*args, &block)
  set_callback(:call, :after, *args, &block)
end

.before(*args, &block) ⇒ Object



12
13
14
# File 'actionpack/lib/action_dispatch/middleware/callbacks.rb', line 12

def before(*args, &block)
  set_callback(:call, :before, *args, &block)
end

Instance Method Details

#call(env) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
# File 'actionpack/lib/action_dispatch/middleware/callbacks.rb', line 25

def call(env)
  error = nil
  result = run_callbacks :call do
    begin
      @app.call(env)
    rescue => error
    end
  end
  raise error if error
  result
end