2010-01-31 21:32:28 -05:00
|
|
|
require 'active_support/core_ext/class/attribute'
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
module ActiveRecord
|
2010-06-16 13:38:14 -04:00
|
|
|
# = Active Record Observer
|
|
|
|
#
|
2010-08-26 03:55:26 -04:00
|
|
|
# Observer classes respond to life cycle callbacks to implement trigger-like
|
2005-04-10 11:13:05 -04:00
|
|
|
# behavior outside the original class. This is a great way to reduce the
|
|
|
|
# clutter that normally comes when the model class is burdened with
|
|
|
|
# functionality that doesn't pertain to the core responsibility of the
|
|
|
|
# class. Example:
|
2004-11-23 20:04:44 -05:00
|
|
|
#
|
|
|
|
# class CommentObserver < ActiveRecord::Observer
|
|
|
|
# def after_save(comment)
|
2011-05-21 04:25:52 -04:00
|
|
|
# Notifications.comment("admin@do.com", "New comment was posted", comment).deliver
|
2004-11-23 20:04:44 -05:00
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2005-04-10 11:13:05 -04:00
|
|
|
# This Observer sends an email when a Comment#save is finished.
|
2004-11-23 20:04:44 -05:00
|
|
|
#
|
2006-03-01 22:02:51 -05:00
|
|
|
# class ContactObserver < ActiveRecord::Observer
|
|
|
|
# def after_create(contact)
|
|
|
|
# contact.logger.info('New contact added!')
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def after_destroy(contact)
|
|
|
|
# contact.logger.warn("Contact with an id of #{contact.id} was destroyed!")
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# This Observer uses logger to log when specific callbacks are triggered.
|
|
|
|
#
|
2005-04-10 11:13:05 -04:00
|
|
|
# == Observing a class that can't be inferred
|
2004-11-23 20:04:44 -05:00
|
|
|
#
|
|
|
|
# Observers will by default be mapped to the class with which they share a name. So CommentObserver will
|
|
|
|
# be tied to observing Comment, ProductManagerObserver to ProductManager, and so on. If you want to name your observer
|
2007-09-22 13:05:15 -04:00
|
|
|
# differently than the class you're interested in observing, you can use the Observer.observe class method which takes
|
|
|
|
# either the concrete class (Product) or a symbol for that class (:product):
|
2004-11-23 20:04:44 -05:00
|
|
|
#
|
|
|
|
# class AuditObserver < ActiveRecord::Observer
|
2007-09-22 13:05:15 -04:00
|
|
|
# observe :account
|
2005-02-23 18:51:34 -05:00
|
|
|
#
|
2004-11-23 20:04:44 -05:00
|
|
|
# def after_update(account)
|
|
|
|
# AuditTrail.new(account, "UPDATED")
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2005-04-10 11:13:05 -04:00
|
|
|
# If the audit observer needs to watch more than one kind of object, this can be specified with multiple arguments:
|
2004-11-23 20:04:44 -05:00
|
|
|
#
|
|
|
|
# class AuditObserver < ActiveRecord::Observer
|
2007-09-22 13:05:15 -04:00
|
|
|
# observe :account, :balance
|
2005-02-23 18:51:34 -05:00
|
|
|
#
|
2004-11-23 20:04:44 -05:00
|
|
|
# def after_update(record)
|
|
|
|
# AuditTrail.new(record, "UPDATED")
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# The AuditObserver will now act on both updates to Account and Balance by treating them both as records.
|
|
|
|
#
|
2005-04-10 11:13:05 -04:00
|
|
|
# == Available callback methods
|
|
|
|
#
|
2004-11-23 20:04:44 -05:00
|
|
|
# The observer can implement callback methods for each of the methods described in the Callbacks module.
|
2005-04-10 13:47:04 -04:00
|
|
|
#
|
2006-03-01 22:02:51 -05:00
|
|
|
# == Storing Observers in Rails
|
2006-06-30 00:38:24 -04:00
|
|
|
#
|
2006-03-01 22:02:51 -05:00
|
|
|
# If you're using Active Record within Rails, observer classes are usually stored in app/models with the
|
|
|
|
# naming convention of app/models/audit_observer.rb.
|
|
|
|
#
|
|
|
|
# == Configuration
|
2006-06-30 00:38:24 -04:00
|
|
|
#
|
2010-08-14 01:13:00 -04:00
|
|
|
# In order to activate an observer, list it in the <tt>config.active_record.observers</tt> configuration
|
2010-08-02 12:25:26 -04:00
|
|
|
# setting in your <tt>config/application.rb</tt> file.
|
2005-10-27 12:06:04 -04:00
|
|
|
#
|
|
|
|
# config.active_record.observers = :comment_observer, :signup_observer
|
2006-03-01 22:02:51 -05:00
|
|
|
#
|
|
|
|
# Observers will not be invoked unless you define these in your application configuration.
|
|
|
|
#
|
2008-02-02 15:18:18 -05:00
|
|
|
# == Loading
|
|
|
|
#
|
|
|
|
# Observers register themselves in the model class they observe, since it is the class that
|
|
|
|
# notifies them of events when they occur. As a side-effect, when an observer is loaded its
|
|
|
|
# corresponding model class is loaded.
|
2008-07-15 14:55:14 -04:00
|
|
|
#
|
2008-02-02 15:18:18 -05:00
|
|
|
# Up to (and including) Rails 2.0.2 observers were instantiated between plugins and
|
2008-07-15 14:55:14 -04:00
|
|
|
# application initializers. Now observers are loaded after application initializers,
|
2008-02-02 15:18:18 -05:00
|
|
|
# so observed models can make use of extensions.
|
2008-07-15 14:55:14 -04:00
|
|
|
#
|
2008-02-02 15:18:18 -05:00
|
|
|
# If by any chance you are using observed models in the initialization you can still
|
|
|
|
# load their observers by calling <tt>ModelObserver.instance</tt> before. Observers are
|
|
|
|
# singletons and that call instantiates and registers them.
|
|
|
|
#
|
2009-06-11 00:35:34 -04:00
|
|
|
class Observer < ActiveModel::Observer
|
2009-09-08 11:10:14 -04:00
|
|
|
|
2006-06-30 00:38:24 -04:00
|
|
|
protected
|
2010-06-19 11:15:21 -04:00
|
|
|
|
2010-12-09 16:37:15 -05:00
|
|
|
def observed_classes
|
|
|
|
klasses = super
|
|
|
|
klasses + klasses.map { |klass| klass.descendants }.flatten
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
2006-06-30 00:38:24 -04:00
|
|
|
|
|
|
|
def add_observer!(klass)
|
2009-06-11 00:35:34 -04:00
|
|
|
super
|
2010-11-26 13:16:13 -05:00
|
|
|
define_callbacks klass
|
2010-04-16 13:37:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def define_callbacks(klass)
|
|
|
|
observer = self
|
2011-02-09 10:37:30 -05:00
|
|
|
observer_name = observer.class.name.underscore.gsub('/', '__')
|
2009-09-08 11:10:14 -04:00
|
|
|
|
2010-11-26 13:16:13 -05:00
|
|
|
ActiveRecord::Callbacks::CALLBACKS.each do |callback|
|
|
|
|
next unless respond_to?(callback)
|
2011-02-09 10:37:30 -05:00
|
|
|
callback_meth = :"_notify_#{observer_name}_for_#{callback}"
|
|
|
|
unless klass.respond_to?(callback_meth)
|
2011-05-06 17:33:41 -04:00
|
|
|
klass.send(:define_method, callback_meth) do |&block|
|
|
|
|
observer.send(callback, self, &block)
|
2011-02-09 10:37:30 -05:00
|
|
|
end
|
|
|
|
klass.send(callback, callback_meth)
|
|
|
|
end
|
2008-07-22 16:38:26 -04:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
end
|
2005-04-10 11:13:05 -04:00
|
|
|
end
|