rescue.rb 6.7 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1
module ActionController #:nodoc:
2 3 4 5 6 7
  # Actions that fail to perform as expected throw exceptions. These
  # exceptions can either be rescued for the public view (with a nice
  # user-friendly explanation) or for the developers view (with tons of
  # debugging information). The developers view is already implemented by
  # the Action Controller, but the public view should be tailored to your
  # specific application.
D
Initial  
David Heinemeier Hansson 已提交
8
  #
9 10 11 12 13 14 15 16
  # 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.
  #
  # 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 已提交
17
  module Rescue
J
Jeremy Kemper 已提交
18 19 20 21
    LOCALHOST = '127.0.0.1'.freeze

    DEFAULT_RESCUE_RESPONSE = :internal_server_error
    DEFAULT_RESCUE_RESPONSES = {
22 23 24 25 26 27 28 29 30
      '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 已提交
31 32 33 34
    }

    DEFAULT_RESCUE_TEMPLATE = 'diagnostics'
    DEFAULT_RESCUE_TEMPLATES = {
35
      'ActionView::MissingTemplate'       => 'missing_template',
J
Jeremy Kemper 已提交
36 37 38 39 40
      'ActionController::RoutingError'    => 'routing_error',
      'ActionController::UnknownAction'   => 'unknown_action',
      'ActionView::TemplateError'         => 'template_error'
    }

41
    RESCUES_TEMPLATE_PATH = ActionView::PathSet::Path.new(
42
      File.join(File.dirname(__FILE__), "templates"), true)
43

44
    def self.included(base) #:nodoc:
J
Jeremy Kemper 已提交
45 46 47 48 49 50 51 52
      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

53
      base.extend(ClassMethods)
54 55
      base.send :include, ActiveSupport::Rescuable

D
Initial  
David Heinemeier Hansson 已提交
56
      base.class_eval do
57
        alias_method_chain :perform_action, :rescue
D
Initial  
David Heinemeier Hansson 已提交
58 59 60
      end
    end

D
David Heinemeier Hansson 已提交
61 62
    module ClassMethods
      def process_with_exception(request, response, exception) #:nodoc:
63 64 65 66
        new.process(request, response, :rescue_action, exception)
      end
    end

D
Initial  
David Heinemeier Hansson 已提交
67
    protected
68 69
      # Exception handler called when the performance of an action raises
      # an exception.
D
Initial  
David Heinemeier Hansson 已提交
70
      def rescue_action(exception)
71 72
        rescue_with_handler(exception) ||
          rescue_action_without_handler(exception)
D
Initial  
David Heinemeier Hansson 已提交
73 74
      end

75 76
      # Overwrite to implement custom logging of errors. By default
      # logs as fatal.
D
Initial  
David Heinemeier Hansson 已提交
77
      def log_error(exception) #:doc:
78 79 80 81 82
        ActiveSupport::Deprecation.silence do
          if ActionView::TemplateError === exception
            logger.fatal(exception.to_s)
          else
            logger.fatal(
83 84
              "\n#{exception.class} (#{exception.message}):\n  " +
              clean_backtrace(exception).join("\n  ") + "\n\n"
85 86
            )
          end
D
Initial  
David Heinemeier Hansson 已提交
87 88 89
        end
      end

90 91 92 93
      # 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.
D
Initial  
David Heinemeier Hansson 已提交
94
      def rescue_action_in_public(exception) #:doc:
J
Jeremy Kemper 已提交
95 96
        render_optional_error_file response_code_for_rescue(exception)
      end
97 98 99 100 101 102

      # 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>. If the file
      # doesn't exist, the body of the response will be left empty.
103
      def render_optional_error_file(status_code)
J
Jeremy Kemper 已提交
104
        status = interpret_status(status_code)
105
        path = "#{Rails.public_path}/#{status[0,3]}.html"
106
        if File.exist?(path)
J
Jeremy Kemper 已提交
107 108 109
          render :file => path, :status => status
        else
          head status
110
        end
D
Initial  
David Heinemeier Hansson 已提交
111 112
      end

J
Jeremy Kemper 已提交
113 114 115
      # 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 已提交
116
      def local_request? #:doc:
117
        request.remote_addr == LOCALHOST && request.remote_ip == LOCALHOST
D
Initial  
David Heinemeier Hansson 已提交
118 119
      end

J
Jeremy Kemper 已提交
120 121
      # Render detailed diagnostics for unhandled exceptions rescued from
      # a controller action.
D
Initial  
David Heinemeier Hansson 已提交
122
      def rescue_action_locally(exception)
123
        @template.instance_variable_set("@exception", exception)
124 125 126
        @template.instance_variable_set("@rescues_path", RESCUES_TEMPLATE_PATH)
        @template.instance_variable_set("@contents",
          @template.render(:file => template_path_for_local_rescue(exception)))
J
Jeremy Kemper 已提交
127

128
        response.content_type = Mime::HTML
129 130
        render_for_file(rescues_path("layout"),
          response_code_for_rescue(exception))
D
Initial  
David Heinemeier Hansson 已提交
131
      end
J
Jeremy Kemper 已提交
132

133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
      def rescue_action_without_handler(exception)
        log_error(exception) if logger
        erase_results if performed?

        # 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

        if consider_all_requests_local || local_request?
          rescue_action_locally(exception)
        else
          rescue_action_in_public(exception)
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
150 151
    private
      def perform_action_with_rescue #:nodoc:
J
Jeremy Kemper 已提交
152
        perform_action_without_rescue
J
Jeremy Kemper 已提交
153
      rescue Exception => exception
154
        rescue_action(exception)
D
Initial  
David Heinemeier Hansson 已提交
155 156 157
      end

      def rescues_path(template_name)
158
        RESCUES_TEMPLATE_PATH["rescues/#{template_name}.erb"]
D
Initial  
David Heinemeier Hansson 已提交
159 160 161
      end

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

165
      def response_code_for_rescue(exception)
J
Jeremy Kemper 已提交
166
        rescue_responses[exception.class.name]
167
      end
J
Jeremy Kemper 已提交
168

D
Initial  
David Heinemeier Hansson 已提交
169
      def clean_backtrace(exception)
170 171 172
        defined?(Rails) && Rails.respond_to?(:backtrace_cleaner) ?
          Rails.backtrace_cleaner.clean(exception.backtrace) :
          exception.backtrace
D
Initial  
David Heinemeier Hansson 已提交
173 174
      end
  end
175
end