aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_controller/metal/rescue.rb
blob: c4b056ebc0734865acfdfa383119f0610207f7cf (plain) (tree)
1
2
3
4
5
6
7
8
9
                                
               
                                 
                                    
 
                                      


                                                            




                                  
                                 
                    

       
           
                               

                                   
                                                                                             
                                                          
         

     
module ActionController #:nodoc:
  module Rescue
    extend ActiveSupport::Concern
    include ActiveSupport::Rescuable

    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?
      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