rescue.rb 10.4 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1
module ActionController #:nodoc:
J
Jeremy Kemper 已提交
2
  # Actions that fail to perform as expected throw exceptions. These exceptions can either be rescued for the public view
D
Initial  
David Heinemeier Hansson 已提交
3
  # (with a nice user-friendly explanation) or for the developers view (with tons of debugging information). The developers view
4 5 6 7
  # is already implemented by the Action Controller, but the public view should be tailored to your specific application. 
  # 
  # The default behavior for public exceptions is to render a static html file with the name of the error code thrown.  If no such 
  # file exists, an empty response is sent with the correct status code.
D
Initial  
David Heinemeier Hansson 已提交
8
  #
9 10
  # You can override what constitutes a local request by overriding the <tt>local_request?</tt> method in your own controller.
  # Custom rescue behavior is achieved by overriding the <tt>rescue_action_in_public</tt> and <tt>rescue_action_locally</tt> methods.
D
Initial  
David Heinemeier Hansson 已提交
11
  module Rescue
J
Jeremy Kemper 已提交
12 13 14 15
    LOCALHOST = '127.0.0.1'.freeze

    DEFAULT_RESCUE_RESPONSE = :internal_server_error
    DEFAULT_RESCUE_RESPONSES = {
16 17 18 19 20 21 22 23 24
      'ActionController::RoutingError'             => :not_found,
      'ActionController::UnknownAction'            => :not_found,
      'ActiveRecord::RecordNotFound'               => :not_found,
      'ActiveRecord::StaleObjectError'             => :conflict,
      'ActiveRecord::RecordInvalid'                => :unprocessable_entity,
      'ActiveRecord::RecordNotSaved'               => :unprocessable_entity,
      'ActionController::MethodNotAllowed'         => :method_not_allowed,
      'ActionController::NotImplemented'           => :not_implemented,
      'ActionController::InvalidAuthenticityToken' => :unprocessable_entity
J
Jeremy Kemper 已提交
25 26 27 28
    }

    DEFAULT_RESCUE_TEMPLATE = 'diagnostics'
    DEFAULT_RESCUE_TEMPLATES = {
29
      'ActionView::MissingTemplate'       => 'missing_template',
J
Jeremy Kemper 已提交
30 31 32 33 34
      'ActionController::RoutingError'    => 'routing_error',
      'ActionController::UnknownAction'   => 'unknown_action',
      'ActionView::TemplateError'         => 'template_error'
    }

35
    def self.included(base) #:nodoc:
J
Jeremy Kemper 已提交
36 37 38 39 40 41 42 43
      base.cattr_accessor :rescue_responses
      base.rescue_responses = Hash.new(DEFAULT_RESCUE_RESPONSE)
      base.rescue_responses.update DEFAULT_RESCUE_RESPONSES

      base.cattr_accessor :rescue_templates
      base.rescue_templates = Hash.new(DEFAULT_RESCUE_TEMPLATE)
      base.rescue_templates.update DEFAULT_RESCUE_TEMPLATES

44 45
      base.class_inheritable_array :rescue_handlers
      base.rescue_handlers = []
46

47
      base.extend(ClassMethods)
D
Initial  
David Heinemeier Hansson 已提交
48
      base.class_eval do
49
        alias_method_chain :perform_action, :rescue
D
Initial  
David Heinemeier Hansson 已提交
50 51 52
      end
    end

D
David Heinemeier Hansson 已提交
53 54
    module ClassMethods
      def process_with_exception(request, response, exception) #:nodoc:
55 56
        new.process(request, response, :rescue_action, exception)
      end
57

58 59 60
      # Rescue exceptions raised in controller actions.
      #
      # <tt>rescue_from</tt> receives a series of exception classes or class
61 62 63
      # names, and a trailing <tt>:with</tt> option with the name of a method
      # or a Proc object to be called to handle them. Alternatively a block can
      # be given.
64 65 66 67 68 69
      #
      # Handlers that take one argument will be called with the exception, so
      # that the exception can be inspected when dealing with it.
      #
      # Handlers are inherited. They are searched from right to left, from
      # bottom to top, and up the hierarchy. The handler of the first class for
70 71
      # which <tt>exception.is_a?(klass)</tt> holds true is the one invoked, if
      # any.
72
      #
73 74 75
      #   class ApplicationController < ActionController::Base
      #     rescue_from User::NotAuthorized, :with => :deny_access # self defined exception
      #     rescue_from ActiveRecord::RecordInvalid, :with => :show_errors
76
      #
77 78
      #     rescue_from 'MyAppError::Base' do |exception|
      #       render :xml => exception, :status => 500
79 80
      #     end
      #
81 82 83 84 85 86 87 88 89
      #     protected
      #       def deny_access
      #         ...
      #       end
      #
      #       def show_errors(exception)
      #         exception.record.new_record? ? ...
      #       end
      #   end
90
      def rescue_from(*klasses, &block)
91
        options = klasses.extract_options!
92 93
        unless options.has_key?(:with)
          block_given? ? options[:with] = block : raise(ArgumentError, "Need a handler. Supply an options hash that has a :with key as the last argument.")
94 95 96
        end

        klasses.each do |klass|
97 98 99 100 101 102 103 104 105 106 107
          key = if klass.is_a?(Class) && klass <= Exception
            klass.name
          elsif klass.is_a?(String)
            klass
          else
            raise(ArgumentError, "#{klass} is neither an Exception nor a String")
          end

          # Order is important, we put the pair at the end. When dealing with an
          # exception we will follow the documented order going from right to left.
          rescue_handlers << [key, options[:with]]
108 109
        end
      end
110 111
    end

D
Initial  
David Heinemeier Hansson 已提交
112 113 114
    protected
      # Exception handler called when the performance of an action raises an exception.
      def rescue_action(exception)
115 116 117 118 119
        if handler_for_rescue(exception)
          rescue_action_with_handler(exception)
        else
          log_error(exception) if logger
          erase_results if performed?
D
Initial  
David Heinemeier Hansson 已提交
120

121 122 123 124 125
          # Let the exception alter the response if it wants.
          # For example, MethodNotAllowed sets the Allow header.
          if exception.respond_to?(:handle_response!)
            exception.handle_response!(response)
          end
126

127 128 129 130 131
          if consider_all_requests_local || local_request?
            rescue_action_locally(exception)
          else
            rescue_action_in_public(exception)
          end
D
Initial  
David Heinemeier Hansson 已提交
132 133 134 135 136
        end
      end

      # Overwrite to implement custom logging of errors. By default logs as fatal.
      def log_error(exception) #:doc:
137 138 139 140 141 142 143 144 145 146
        ActiveSupport::Deprecation.silence do
          if ActionView::TemplateError === exception
            logger.fatal(exception.to_s)
          else
            logger.fatal(
              "\n\n#{exception.class} (#{exception.message}):\n    " +
              clean_backtrace(exception).join("\n    ") +
              "\n\n"
            )
          end
D
Initial  
David Heinemeier Hansson 已提交
147 148 149
        end
      end

150 151
      # Overwrite to implement public exception handling (for requests answering false to <tt>local_request?</tt>).  By
      # default will call render_optional_error_file.  Override this method to provide more user friendly error messages.s
D
Initial  
David Heinemeier Hansson 已提交
152
      def rescue_action_in_public(exception) #:doc:
J
Jeremy Kemper 已提交
153 154
        render_optional_error_file response_code_for_rescue(exception)
      end
155 156 157 158
      
      # Attempts to render a static error page based on the <tt>status_code</tt> thrown,
      # or just return headers if no such file exists. For example, if a 500 error is 
      # being handled Rails will first attempt to render the file at <tt>public/500.html</tt>. 
159
      # If the file doesn't exist, the body of the response will be left empty.
160
      def render_optional_error_file(status_code)
J
Jeremy Kemper 已提交
161
        status = interpret_status(status_code)
162
        path = "#{Rails.public_path}/#{status[0,3]}.html"
163
        if File.exist?(path)
J
Jeremy Kemper 已提交
164 165 166
          render :file => path, :status => status
        else
          head status
167
        end
D
Initial  
David Heinemeier Hansson 已提交
168 169
      end

J
Jeremy Kemper 已提交
170 171 172
      # True if the request came from localhost, 127.0.0.1. Override this
      # method if you wish to redefine the meaning of a local request to
      # include remote IP addresses or other criteria.
D
Initial  
David Heinemeier Hansson 已提交
173
      def local_request? #:doc:
174
        request.remote_addr == LOCALHOST && request.remote_ip == LOCALHOST
D
Initial  
David Heinemeier Hansson 已提交
175 176
      end

J
Jeremy Kemper 已提交
177 178
      # Render detailed diagnostics for unhandled exceptions rescued from
      # a controller action.
D
Initial  
David Heinemeier Hansson 已提交
179
      def rescue_action_locally(exception)
180
        @template.instance_variable_set("@exception", exception)
J
Jeremy Kemper 已提交
181
        @template.instance_variable_set("@rescues_path", File.dirname(rescues_path("stub")))
R
Ryan Bates 已提交
182
        @template.instance_variable_set("@contents", @template.render(:file => template_path_for_local_rescue(exception)))
J
Jeremy Kemper 已提交
183

184
        response.content_type = Mime::HTML
185
        render_for_file(rescues_path("layout"), response_code_for_rescue(exception))
D
Initial  
David Heinemeier Hansson 已提交
186
      end
J
Jeremy Kemper 已提交
187

188 189 190 191 192 193 194 195 196 197 198 199
      # Tries to rescue the exception by looking up and calling a registered handler.
      def rescue_action_with_handler(exception)
        if handler = handler_for_rescue(exception)
          if handler.arity != 0
            handler.call(exception)
          else
            handler.call
          end
          true # don't rely on the return value of the handler
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
200 201
    private
      def perform_action_with_rescue #:nodoc:
J
Jeremy Kemper 已提交
202
        perform_action_without_rescue
J
Jeremy Kemper 已提交
203
      rescue Exception => exception
204
        rescue_action(exception)
D
Initial  
David Heinemeier Hansson 已提交
205 206 207
      end

      def rescues_path(template_name)
208
        "#{File.dirname(__FILE__)}/templates/rescues/#{template_name}.erb"
D
Initial  
David Heinemeier Hansson 已提交
209 210 211
      end

      def template_path_for_local_rescue(exception)
J
Jeremy Kemper 已提交
212
        rescues_path(rescue_templates[exception.class.name])
D
Initial  
David Heinemeier Hansson 已提交
213
      end
J
Jeremy Kemper 已提交
214

215
      def response_code_for_rescue(exception)
J
Jeremy Kemper 已提交
216
        rescue_responses[exception.class.name]
217
      end
J
Jeremy Kemper 已提交
218

219
      def handler_for_rescue(exception)
220 221 222 223 224 225 226 227 228 229 230
        # We go from right to left because pairs are pushed onto rescue_handlers
        # as rescue_from declarations are found.
        _, handler = *rescue_handlers.reverse.detect do |klass_name, handler|
          # The purpose of allowing strings in rescue_from is to support the
          # declaration of handler associations for exception classes whose
          # definition is yet unknown.
          #
          # Since this loop needs the constants it would be inconsistent to
          # assume they should exist at this point. An early raised exception
          # could trigger some other handler and the array could include
          # precisely a string whose corresponding constant has not yet been
231
          # seen. This is why we are tolerant to unknown constants.
232 233 234 235 236 237 238 239 240 241
          #
          # Note that this tolerance only matters if the exception was given as
          # a string, otherwise a NameError will be raised by the interpreter
          # itself when rescue_from CONSTANT is executed.
          klass = self.class.const_get(klass_name) rescue nil
          klass ||= klass_name.constantize rescue nil
          exception.is_a?(klass) if klass
        end

        case handler
242
        when Symbol
243
          method(handler)
244 245
        when Proc
          handler.bind(self)
246 247 248
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
249
      def clean_backtrace(exception)
J
Jeremy Kemper 已提交
250 251 252 253 254 255 256
        if backtrace = exception.backtrace
          if defined?(RAILS_ROOT)
            backtrace.map { |line| line.sub RAILS_ROOT, '' }
          else
            backtrace
          end
        end
D
Initial  
David Heinemeier Hansson 已提交
257 258
      end
  end
259
end