Add an internal (private API) after_touch callback. [#5271 state:resolved]

This commit is contained in:
José Valim 2010-08-02 16:16:02 +02:00
parent 311ea94f73
commit b613c3cc7b
5 changed files with 24 additions and 19 deletions

@ -1498,6 +1498,7 @@ def add_touch_callbacks(reflection, touch_attribute)
end
end
after_save(method_name)
after_touch(method_name)
after_destroy(method_name)
end

@ -228,7 +228,7 @@ module Callbacks
extend ActiveSupport::Concern
CALLBACKS = [
:after_initialize, :after_find, :before_validation, :after_validation,
:after_initialize, :after_find, :after_touch, :before_validation, :after_validation,
:before_save, :around_save, :after_save, :before_create, :around_create,
:after_create, :before_update, :around_update, :after_update,
:before_destroy, :around_destroy, :after_destroy
@ -238,7 +238,7 @@ module Callbacks
extend ActiveModel::Callbacks
include ActiveModel::Validations::Callbacks
define_model_callbacks :initialize, :find, :only => :after
define_model_callbacks :initialize, :find, :touch, :only => :after
define_model_callbacks :save, :create, :update, :destroy
end
@ -256,6 +256,10 @@ def destroy #:nodoc:
_run_destroy_callbacks { super }
end
def touch(*) #:nodoc:
_run_touch_callbacks { super }
end
def deprecated_callback_method(symbol) #:nodoc:
if respond_to?(symbol, true)
ActiveSupport::Deprecation.warn("Overwriting #{symbol} in your models has been deprecated, please use Base##{symbol} :method_name instead")

@ -218,6 +218,19 @@ def reload(options = nil)
self
end
# Saves the record with the updated_at/on attributes set to the current time.
# Please note that no validation is performed and no callbacks are executed.
# If an attribute name is passed, that attribute is updated along with
# updated_at/on attributes.
#
# Examples:
#
# product.touch # updates updated_at/on
# product.touch(:designed_at) # updates the designed_at attribute and updated_at/on
def touch(attribute = nil)
update_attribute(attribute, current_time_from_proper_timezone)
end
private
def create_or_update
raise ReadOnlyRecord if readonly?

@ -31,19 +31,6 @@ module Timestamp
class_inheritable_accessor :record_timestamps, :instance_writer => false
self.record_timestamps = true
end
# Saves the record with the updated_at/on attributes set to the current time.
# Please note that no validation is performed and no callbacks are executed.
# If an attribute name is passed, that attribute is updated along with
# updated_at/on attributes.
#
# Examples:
#
# product.touch # updates updated_at/on
# product.touch(:designed_at) # updates the designed_at attribute and updated_at/on
def touch(attribute = nil)
update_attribute(attribute, current_time_from_proper_timezone)
end
private

@ -2,9 +2,10 @@
require 'models/developer'
require 'models/owner'
require 'models/pet'
require 'models/toy'
class TimestampTest < ActiveRecord::TestCase
fixtures :developers, :owners, :pets
fixtures :developers, :owners, :pets, :toys
def setup
@developer = Developer.first
@ -91,11 +92,10 @@ def test_touching_a_record_touches_parent_record_and_grandparent_record
pet = toy.pet
owner = pet.owner
previously_owner_updated_at = owner.updated_at
owner.update_attribute(:updated_at, (time = 3.days.ago))
toy.touch
assert_not_equal previously_owner_updated_at, owner.updated_at
assert_not_equal time, owner.updated_at
ensure
Toy.belongs_to :pet
end