ExceptionNotifier和rescue_from

时间:2011-03-10 14:20:46

标签: ruby-on-rails ruby-on-rails-3 exception error-handling

我正在尝试实现exception_notifier和自定义异常处理 在我的rails 3 app。当我只使用异常通知程序时,一切正常。 在开发模式下

config.consider_all_requests_local = false

和我的application_controller中的rescue_from:

unless Rails.application.config.consider_all_requests_local
  rescue_from Exception, :with => :render_error
end

def render_error(exception)
  ExceptionNotifier::Notifier.exception_notification(request.env, exception).deliver
end

在我的application.rb

config.middleware.use ExceptionNotifier,
  :email_prefix => "Error: ",
  :sender_address => %{"notifier" <notifier@wannagohome.com>},
  :exception_recipients => %w{ myself@fail.com }

唯一的问题似乎是,选项未加载到request.env中。 我在一个额外的初始化程序中尝试了该文件,我不知道还有什么 - 它不起作用。 目前我有一个非常丑陋的黑客,我将request.env与一个合并 在发送电子邮件之前哈希.. 有什么想法吗?

1 个答案:

答案 0 :(得分:7)

exception_notification是Rails 3中的中间件,因此选项直接设置在处理调用的类上,并且该类不会在环境中设置它们,除非它捕获异常(see here)。 This fork添加了一个可以使用的background_exception_notification方法。我借用了这个想法并添加了这个辅助方法:

def background_exception_notification(env, exception)
  if notifier = Rails.application.config.middleware.detect { |x| x.klass == ExceptionNotifier }
    env['exception_notifier.options'] = notifier.args.first || {}                   
    ExceptionNotifier::Notifier.exception_notification(env, exception).deliver
    env['exception_notifier.delivered'] = true
  end
end