Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

2 3 stable #6

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 46 additions & 13 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ First, include the ExceptionNotifiable mixin in whichever controller you want
to generate error emails (typically ApplicationController):

class ApplicationController < ActionController::Base
include ExceptionNotifiable
include ExceptionNotification::Notifiable
...
end

Then, specify the email recipients in your environment:

ExceptionNotifier.exception_recipients = %w([email protected] [email protected])
ExceptionNotification::Notifier.exception_recipients = %w([email protected] [email protected])

And that's it! The defaults take care of the rest.

Expand All @@ -33,11 +33,20 @@ You can tweak other values to your liking, as well. In your environment file,
just set any or all of the following values:

# defaults to [email protected]
ExceptionNotifier.sender_address =
ExceptionNotification::Notifier.sender_address =
%("Application Error" <[email protected]>)

# defaults to "[ERROR] "
ExceptionNotifier.email_prefix = "[APP] "
ExceptionNotification::Notifier.email_prefix = "[APP] "

Even if you have mixed into ApplicationController you can skip notification in
some controllers by

class MyController < ApplicationController
skip_exception_notifications
end

== Deprecated local_request? overriding

Email notifications will only occur when the IP address is determined not to
be local. You can specify certain addresses to always be local so that you'll
Expand All @@ -57,6 +66,19 @@ NOT be considered local), you can simply do, somewhere in your controller:

local_addresses.clear

NOTE: The above functionality has has been pulled out to consider_local.rb,
as interfering with rails local determination is orthogonal to notification,
unnecessarily clutters backtraces, and even occasionally errs on odd ip or
requests bugs. To return original functionality add an initializer with:

ActionController::Base.send :include, ConsiderLocal

or just include it per controller that wants it

class MyController < ApplicationController
include ExceptionNotification::ConsiderLocal
end

== Customization

By default, the notification email includes four parts: request, session,
Expand All @@ -75,7 +97,7 @@ access to the following variables:
* @sections: the array of sections to include in the email

You can reorder the sections, or exclude sections completely, by altering the
ExceptionNotifier.sections variable. You can even add new sections that
ExceptionNotification::Notifier.sections variable. You can even add new sections that
describe application-specific data--just add the section's name to the list
(whereever you'd like), and define the corresponding partial. Then, if your
new section requires information that isn't available by default, make sure
Expand All @@ -97,15 +119,26 @@ In the above case, @document and @person would be made available to the email
renderer, allowing your new section(s) to access and display them. See the
existing sections defined by the plugin for examples of how to write your own.

== Advanced Customization
== 404s errors

Notification is skipped if you return a 404 status, which happens by default
for an ActiveRecord::RecordNotFound or ActionController::UnknownAction error.

== Manually notifying of error in a rescue block

If your controller action manually handles an error, the notifier will never be
run. To manually notify of an error call notify_about_exception from within the
rescue block

def index
#risky operation here
rescue StandardError => error
#custom error handling here
notify_about_exception(error)
end

By default, the email notifier will only notify on critical errors. For
ActiveRecord::RecordNotFound and ActionController::UnknownAction, it will
simply render the contents of your public/404.html file. Other exceptions
will render public/500.html and will send the email notification. If you want
to use different rules for the notification, you will need to implement your
own rescue_action_in_public method. You can look at the default implementation
in ExceptionNotifiable for an example of how to go about that.
== Support and tickets

https://rails.lighthouseapp.com/projects/8995-rails-plugins

Copyright (c) 2005 Jamis Buck, released under the MIT license
11 changes: 11 additions & 0 deletions exception_notification.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Gem::Specification.new do |s|
s.name = 'exception_notification'
s.version = '2.3.3.0'
s.authors = ["Jamis Buck", "Josh Peek", "Tim Connor"]
s.date = %q{2010-03-13}
s.summary = "Exception notification by email for Rails apps - 2.3-stable compatible version"
s.email = "[email protected]"

s.files = ['README'] + Dir['lib/**/*'] + Dir['views/**/*']
s.require_path = 'lib'
end
5 changes: 1 addition & 4 deletions init.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
require "action_mailer"
require "exception_notifier"
require "exception_notifiable"
require "exception_notifier_helper"
require "exception_notification"
99 changes: 0 additions & 99 deletions lib/exception_notifiable.rb

This file was deleted.

7 changes: 7 additions & 0 deletions lib/exception_notification.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require "action_mailer"
module ExceptionNotification
autoload :Notifiable, 'exception_notification/notifiable'
autoload :Notifier, 'exception_notification/notifier'
#autoload :NotifierHelper, 'exception_notification/notifier_helper'
autoload :ConsiderLocal, 'exception_notification/consider_local'
end
31 changes: 31 additions & 0 deletions lib/exception_notification/consider_local.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#This didn't belong on ExceptionNotifier and made backtraces worse. To keep original functionality in place
#'ActionController::Base.send :include, ExceptionNotification::ConsiderLocal' or just include in your controller
module ExceptionNotification::ConsiderLocal
def self.included(target)
require 'ipaddr'
target.extend(ClassMethods)
end

module ClassMethods
def consider_local(*args)
local_addresses.concat(args.flatten.map { |a| IPAddr.new(a) })
end

def local_addresses
addresses = read_inheritable_attribute(:local_addresses)
unless addresses
addresses = [IPAddr.new("127.0.0.1")]
write_inheritable_attribute(:local_addresses, addresses)
end
addresses
end
end

private

def local_request?
remote = IPAddr.new(request.remote_ip)
!self.class.local_addresses.detect { |addr| addr.include?(remote) }.nil?
end

end
66 changes: 66 additions & 0 deletions lib/exception_notification/notifiable.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Copyright (c) 2005 Jamis Buck
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
module ExceptionNotification::Notifiable
def self.included(target)
target.extend(ClassMethods)
target.skip_exception_notifications false
end

module ClassMethods
def exception_data(deliverer=self)
if deliverer == self
read_inheritable_attribute(:exception_data)
else
write_inheritable_attribute(:exception_data, deliverer)
end
end

def skip_exception_notifications(boolean=true)
write_inheritable_attribute(:skip_exception_notifications, boolean)
end

def skip_exception_notifications?
read_inheritable_attribute(:skip_exception_notifications)
end
end

private

def rescue_action_in_public(exception)
super
notify_about_exception(exception) if deliver_exception_notification?
end

def deliver_exception_notification?
!self.class.skip_exception_notifications? && ![404, "404 Not Found"].include?(response.status)
end

def notify_about_exception(exception)
deliverer = self.class.exception_data
data = case deliverer
when nil then {}
when Symbol then send(deliverer)
when Proc then deliverer.call(self)
end

ExceptionNotification::Notifier.deliver_exception_notification(exception, self, request, data)
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
class ExceptionNotifier < ActionMailer::Base
class ExceptionNotification::Notifier < ActionMailer::Base
self.mailer_name = 'exception_notifier'
self.view_paths << "#{File.dirname(__FILE__)}/../../views"

@@sender_address = %("Exception Notifier" <[email protected]>)
cattr_accessor :sender_address

Expand All @@ -33,34 +36,40 @@ class ExceptionNotifier < ActionMailer::Base
@@sections = %w(request session environment backtrace)
cattr_accessor :sections

self.template_root = "#{File.dirname(__FILE__)}/../views"

def self.reloadable?() false end

def exception_notification(exception, controller, request, data={})
source = self.class.exception_source(controller)
content_type "text/plain"

subject "#{email_prefix}#{controller.controller_name}##{controller.action_name} (#{exception.class}) #{exception.message.inspect}"
subject "#{email_prefix}#{source} (#{exception.class}) #{exception.message.inspect}"

recipients exception_recipients
from sender_address

body data.merge({ :controller => controller, :request => request,
:exception => exception, :host => (request.env["HTTP_X_FORWARDED_HOST"] || request.env["HTTP_HOST"]),
:exception => exception, :exception_source => source, :host => (request.env["HTTP_X_FORWARDED_HOST"] || request.env["HTTP_HOST"]),
:backtrace => sanitize_backtrace(exception.backtrace),
:rails_root => rails_root, :data => data,
:sections => sections })
end

private

def sanitize_backtrace(trace)
re = Regexp.new(/^#{Regexp.escape(rails_root)}/)
trace.map { |line| Pathname.new(line.gsub(re, "[RAILS_ROOT]")).cleanpath.to_s }
def self.exception_source(controller)
if controller.respond_to?(:controller_name)
"in #{controller.controller_name}##{controller.action_name}"
else
"outside of a controller"
end
end

def rails_root
@rails_root ||= Pathname.new(RAILS_ROOT).cleanpath.to_s
end
private

def sanitize_backtrace(trace)
re = Regexp.new(/^#{Regexp.escape(rails_root)}/)
trace.map { |line| Pathname.new(line.gsub(re, "[RAILS_ROOT]")).cleanpath.to_s }
end

def rails_root
@rails_root ||= Pathname.new(RAILS_ROOT).cleanpath.to_s
end
end
Loading