2004-11-23 20:04:44 -05:00
require 'singleton'
2006-06-30 00:38:24 -04:00
require 'set'
2004-11-23 20:04:44 -05:00
module ActiveRecord
2005-09-25 04:26:29 -04:00
module Observing # :nodoc:
2006-04-29 14:10:14 -04:00
def self . included ( base )
2006-08-09 12:54:36 -04:00
base . extend ClassMethods
2005-09-25 04:26:29 -04:00
end
module ClassMethods
# Activates the observers assigned. Examples:
#
2005-09-25 04:48:30 -04:00
# # Calls PersonObserver.instance
# ActiveRecord::Base.observers = :person_observer
2005-09-25 04:26:29 -04:00
#
2006-06-30 00:38:24 -04:00
# # Calls Cacher.instance and GarbageCollector.instance
2005-09-25 04:48:30 -04:00
# ActiveRecord::Base.observers = :cacher, :garbage_collector
2005-09-25 04:26:29 -04:00
#
# # Same as above, just using explicit class references
2005-09-25 04:48:30 -04:00
# ActiveRecord::Base.observers = Cacher, GarbageCollector
2006-09-29 21:37:07 -04:00
#
2008-05-25 07:29:00 -04:00
# Note: Setting this does not instantiate the observers yet. +instantiate_observers+ is
2008-07-15 14:55:14 -04:00
# called during startup, and before each development request.
2005-09-25 04:48:30 -04:00
def observers = ( * observers )
2006-08-05 22:08:29 -04:00
@observers = observers . flatten
end
2006-09-29 21:37:07 -04:00
# Gets the current observers.
def observers
@observers || = [ ]
end
2008-05-25 07:29:00 -04:00
# Instantiate the global Active Record observers.
2006-08-05 22:08:29 -04:00
def instantiate_observers
return if @observers . blank?
@observers . each do | observer |
2006-06-30 00:38:24 -04:00
if observer . respond_to? ( :to_sym ) # Symbol or String
observer . to_s . camelize . constantize . instance
elsif observer . respond_to? ( :instance )
2005-09-25 04:26:29 -04:00
observer . instance
2006-06-30 00:38:24 -04:00
else
raise ArgumentError , " #{ observer } must be a lowercase, underscored class name (or an instance of the class itself) responding to the instance method. Example: Person.observers = :big_brother # calls BigBrother.instance "
end
2005-09-25 04:26:29 -04:00
end
end
2006-06-30 00:38:24 -04:00
protected
# Notify observers when the observed class is subclassed.
def inherited ( subclass )
super
changed
notify_observers :observed_class_inherited , subclass
end
2005-09-25 04:26:29 -04:00
end
end
2005-04-10 11:13:05 -04:00
# Observer classes respond to lifecycle callbacks to implement trigger-like
# 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)
# Notifications.deliver_comment("admin@do.com", "New comment was posted", comment)
# 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
#
2005-10-27 12:06:04 -04:00
# In order to activate an observer, list it in the <tt>config.active_record.observers</tt> configuration setting in your
# <tt>config/environment.rb</tt> file.
#
# 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.
#
2004-11-23 20:04:44 -05:00
class Observer
include Singleton
2005-01-10 11:06:04 -05:00
2006-06-30 00:38:24 -04:00
class << self
# Attaches the observer to the supplied model classes.
def observe ( * models )
2007-10-14 01:20:24 -04:00
models . flatten!
models . collect! { | model | model . is_a? ( Symbol ) ? model . to_s . camelize . constantize : model }
2006-06-30 00:38:24 -04:00
define_method ( :observed_classes ) { Set . new ( models ) }
end
# The class observed by default is inferred from the observer's class name:
2008-02-15 18:09:51 -05:00
# assert_equal Person, PersonObserver.observed_class
2006-06-30 00:38:24 -04:00
def observed_class
2008-02-17 17:52:55 -05:00
if observed_class_name = name [ / (.*)Observer / , 1 ]
2008-02-15 18:09:51 -05:00
observed_class_name . constantize
2007-06-26 16:45:41 -04:00
else
nil
end
2006-06-30 00:38:24 -04:00
end
2005-01-10 11:06:04 -05:00
end
2006-06-30 00:38:24 -04:00
# Start observing the declared classes and their subclasses.
2004-11-23 20:04:44 -05:00
def initialize
2006-06-30 00:38:24 -04:00
Set . new ( observed_classes + observed_subclasses ) . each { | klass | add_observer! klass }
2004-11-23 20:04:44 -05:00
end
2006-06-30 00:38:24 -04:00
# Send observed_method(object) if the method exists.
def update ( observed_method , object ) #:nodoc:
send ( observed_method , object ) if respond_to? ( observed_method )
2004-11-23 20:04:44 -05:00
end
2006-06-30 00:38:24 -04:00
# Special method sent by the observed class when it is inherited.
# Passes the new subclass.
def observed_class_inherited ( subclass ) #:nodoc:
self . class . observe ( observed_classes + [ subclass ] )
add_observer! ( subclass )
end
protected
def observed_classes
2007-06-26 16:45:41 -04:00
Set . new ( [ self . class . observed_class ] . compact . flatten )
2006-06-30 00:38:24 -04:00
end
def observed_subclasses
2008-01-08 20:33:15 -05:00
observed_classes . sum ( [ ] ) { | klass | klass . send ( :subclasses ) }
2004-11-23 20:04:44 -05:00
end
2006-06-30 00:38:24 -04:00
def add_observer! ( klass )
klass . add_observer ( self )
2008-07-22 16:38:26 -04:00
if respond_to? ( :after_find ) && ! klass . method_defined? ( :after_find )
klass . class_eval 'def after_find() end'
end
2004-11-23 20:04:44 -05:00
end
end
2005-04-10 11:13:05 -04:00
end