aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/rescue.rb
blob: 736ff5b31c65b0d6383d7c1266a339cf91472d76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module ActionController #:nodoc:
  module Rescue
    extend ActiveSupport::Concern
    include ActiveSupport::Rescuable

    included do
      config_accessor :consider_all_requests_local
      self.consider_all_requests_local = false if consider_all_requests_local.nil?
    end

    def rescue_with_handler(exception)
      if (exception.respond_to?(:original_exception) &&
          (orig_exception = exception.original_exception) &&
          handler_for_rescue(orig_exception))
        exception = orig_exception
      end
      super(exception)
    end

    def show_detailed_exceptions?
      consider_all_requests_local || request.local?
    end

    private
      def process_action(*args)
        super
      rescue Exception => exception
        request.env['action_dispatch.show_detailed_exceptions'] = show_detailed_exceptions?
        rescue_with_handler(exception) || raise(exception)
      end
  end
end