2008-06-28 02:29:47 -04:00
require 'singleton'
2009-06-11 14:21:56 -04:00
require 'active_support/core_ext/array/wrap'
2009-07-21 00:57:01 -04:00
require 'active_support/core_ext/module/aliasing'
require 'active_support/core_ext/string/inflections'
2007-11-09 09:59:15 -05:00
module ActiveModel
module Observing
2009-06-11 00:35:34 -04:00
extend ActiveSupport :: Concern
2007-11-09 09:59:15 -05:00
module ClassMethods
2009-06-11 00:35:34 -04:00
# Activates the observers assigned. Examples:
#
# # Calls PersonObserver.instance
# ActiveRecord::Base.observers = :person_observer
#
# # Calls Cacher.instance and GarbageCollector.instance
# ActiveRecord::Base.observers = :cacher, :garbage_collector
#
# # Same as above, just using explicit class references
# ActiveRecord::Base.observers = Cacher, GarbageCollector
#
2010-01-17 03:12:12 -05:00
# Note: Setting this does not instantiate the observers yet.
# +instantiate_observers+ is called during startup, and before
# each development request.
2007-11-09 09:59:15 -05:00
def observers = ( * values )
@observers = values . flatten
end
2009-06-11 00:35:34 -04:00
# Gets the current observers.
def observers
@observers || = [ ]
end
# Instantiate the global Active Record observers.
2007-11-09 09:59:15 -05:00
def instantiate_observers
observers . each { | o | instantiate_observer ( o ) }
end
2009-06-11 00:35:34 -04:00
2010-04-16 13:30:40 -04:00
def add_observer ( observer )
unless observer . respond_to? :update
raise ArgumentError , " observer needs to respond to `update' "
end
@observer_instances || = [ ]
@observer_instances << observer
end
def notify_observers ( * arg )
if defined? @observer_instances
for observer in @observer_instances
observer . update ( * arg )
end
end
end
2010-04-16 16:14:52 -04:00
def count_observers
@observer_instances . size
end
2009-06-11 00:35:34 -04:00
protected
2009-07-21 01:11:26 -04:00
def instantiate_observer ( observer ) #:nodoc:
2009-06-11 00:35:34 -04:00
# string/symbol
if observer . respond_to? ( :to_sym )
observer = observer . to_s . camelize . constantize . instance
elsif observer . respond_to? ( :instance )
observer . instance
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
end
# Notify observers when the observed class is subclassed.
def inherited ( subclass )
super
notify_observers :observed_class_inherited , subclass
2007-11-09 09:59:15 -05:00
end
end
2009-06-11 14:41:48 -04:00
private
2009-07-21 01:11:26 -04:00
# Fires notifications to model's observers
#
# def save
# notify_observers(:before_save)
# ...
# notify_observers(:after_save)
# end
2009-07-21 00:57:01 -04:00
def notify_observers ( method )
2009-06-11 14:41:48 -04:00
self . class . notify_observers ( method , self )
end
2007-11-09 09:59:15 -05:00
end
2009-07-21 01:11:26 -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:
#
# class CommentObserver < ActiveModel::Observer
# def after_save(comment)
# Notifications.deliver_comment("admin@do.com", "New comment was posted", comment)
# end
# end
#
# This Observer sends an email when a Comment#save is finished.
#
# class ContactObserver < ActiveModel::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.
#
# == Observing a class that can't be inferred
#
2010-01-17 03:12:12 -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 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):
2009-07-21 01:11:26 -04:00
#
# class AuditObserver < ActiveModel::Observer
# observe :account
#
# def after_update(account)
# AuditTrail.new(account, "UPDATED")
# end
# end
#
2010-01-17 03:12:12 -05:00
# If the audit observer needs to watch more than one kind of object, this can be
# specified with multiple arguments:
2009-07-21 01:11:26 -04:00
#
# class AuditObserver < ActiveModel::Observer
# observe :account, :balance
#
# def after_update(record)
# AuditTrail.new(record, "UPDATED")
# end
# end
#
2010-01-17 03:12:12 -05:00
# The AuditObserver will now act on both updates to Account and Balance by treating
# them both as records.
2009-07-21 01:11:26 -04:00
#
2007-11-09 09:59:15 -05:00
class Observer
include Singleton
class << self
# Attaches the observer to the supplied model classes.
def observe ( * models )
2009-06-11 00:35:34 -04:00
models . flatten!
models . collect! { | model | model . respond_to? ( :to_sym ) ? model . to_s . camelize . constantize : model }
define_method ( :observed_classes ) { models }
2007-11-09 09:59:15 -05:00
end
2009-07-21 01:11:26 -04:00
# Returns an array of Classes to observe.
#
# You can override this instead of using the +observe+ helper.
#
# class AuditObserver < ActiveModel::Observer
# def self.observed_classes
2010-01-17 16:11:16 -05:00
# [Account, Balance]
2009-07-21 01:11:26 -04:00
# end
# end
2009-06-11 00:35:34 -04:00
def observed_classes
Array . wrap ( observed_class )
2007-11-09 09:59:15 -05:00
end
# The class observed by default is inferred from the observer's class name:
2009-06-11 00:35:34 -04:00
# assert_equal Person, PersonObserver.observed_class
2007-11-09 09:59:15 -05:00
def observed_class
2009-06-11 00:35:34 -04:00
if observed_class_name = name [ / (.*)Observer / , 1 ]
2007-11-09 09:59:15 -05:00
observed_class_name . constantize
else
nil
end
end
end
# Start observing the declared classes and their subclasses.
def initialize
2009-06-11 00:35:34 -04:00
observed_classes . each { | klass | add_observer! ( klass ) }
end
2009-07-21 01:11:26 -04:00
def observed_classes #:nodoc:
2009-06-11 00:35:34 -04:00
self . class . observed_classes
2007-11-09 09:59:15 -05:00
end
# Send observed_method(object) if the method exists.
def update ( observed_method , object ) #:nodoc:
send ( observed_method , object ) if respond_to? ( observed_method )
end
# 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 ] )
2009-06-11 00:35:34 -04:00
add_observer! ( subclass )
2007-11-09 09:59:15 -05:00
end
2009-06-11 00:35:34 -04:00
protected
2009-07-21 01:11:26 -04:00
def add_observer! ( klass ) #:nodoc:
2009-06-11 00:35:34 -04:00
klass . add_observer ( self )
end
2007-11-09 09:59:15 -05:00
end
2009-06-11 00:35:34 -04:00
end