2004-12-15 22:01:11 -05:00
|
|
|
module ActiveRecord
|
2010-06-16 13:52:35 -04:00
|
|
|
# = Active Record Timestamp
|
|
|
|
#
|
|
|
|
# Active Record automatically timestamps create and update operations if the
|
|
|
|
# table has fields named <tt>created_at/created_on</tt> or
|
|
|
|
# <tt>updated_at/updated_on</tt>.
|
|
|
|
#
|
|
|
|
# Timestamping can be turned off by setting:
|
2004-12-16 12:14:41 -05:00
|
|
|
#
|
2006-06-28 22:39:32 -04:00
|
|
|
# <tt>ActiveRecord::Base.record_timestamps = false</tt>
|
|
|
|
#
|
2010-06-16 13:52:35 -04:00
|
|
|
# Timestamps are in the local timezone by default but you can use UTC by setting:
|
|
|
|
#
|
2006-06-28 22:39:32 -04:00
|
|
|
# <tt>ActiveRecord::Base.default_timezone = :utc</tt>
|
2006-02-09 14:47:13 -05:00
|
|
|
module Timestamp
|
2009-05-28 12:35:36 -04:00
|
|
|
extend ActiveSupport::Concern
|
2006-06-28 22:39:32 -04:00
|
|
|
|
2009-05-11 22:23:47 -04:00
|
|
|
included do
|
|
|
|
class_inheritable_accessor :record_timestamps, :instance_writer => false
|
|
|
|
self.record_timestamps = true
|
2006-02-09 14:47:13 -05:00
|
|
|
end
|
2009-04-16 17:48:07 -04:00
|
|
|
|
|
|
|
# Saves the record with the updated_at/on attributes set to the current time.
|
2010-06-16 13:52:35 -04:00
|
|
|
# If the save fails because of validation errors, an
|
|
|
|
# ActiveRecord::RecordInvalid exception is raised. If an attribute name is passed,
|
|
|
|
# that attribute is used for the touch instead of the updated_at/on attributes.
|
2009-04-16 18:25:55 -04:00
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# product.touch # updates updated_at
|
|
|
|
# product.touch(:designed_at) # updates the designed_at attribute
|
|
|
|
def touch(attribute = nil)
|
2009-04-16 17:48:07 -04:00
|
|
|
current_time = current_time_from_proper_timezone
|
|
|
|
|
2009-04-16 18:25:55 -04:00
|
|
|
if attribute
|
|
|
|
write_attribute(attribute, current_time)
|
|
|
|
else
|
2010-07-02 14:36:13 -04:00
|
|
|
timestamp_attributes_for_update_in_model.each { |column| write_attribute(column.to_s, current_time) }
|
2009-04-16 18:25:55 -04:00
|
|
|
end
|
2009-04-16 17:48:07 -04:00
|
|
|
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
2010-05-08 19:06:05 -04:00
|
|
|
private
|
|
|
|
def create #:nodoc:
|
|
|
|
if record_timestamps
|
|
|
|
current_time = current_time_from_proper_timezone
|
2006-02-09 14:47:13 -05:00
|
|
|
|
2010-05-08 19:06:05 -04:00
|
|
|
write_attribute('created_at', current_time) if respond_to?(:created_at) && created_at.nil?
|
|
|
|
write_attribute('created_on', current_time) if respond_to?(:created_on) && created_on.nil?
|
2009-04-16 17:48:07 -04:00
|
|
|
|
2010-07-02 14:36:13 -04:00
|
|
|
timestamp_attributes_for_update.each do |column|
|
|
|
|
write_attribute(column.to_s, current_time) if respond_to?(column) && self.send(column).nil?
|
|
|
|
end
|
2005-05-19 15:05:12 -04:00
|
|
|
end
|
2004-12-15 22:01:11 -05:00
|
|
|
|
2010-05-08 19:06:05 -04:00
|
|
|
super
|
|
|
|
end
|
2009-04-16 17:48:07 -04:00
|
|
|
|
2010-05-08 19:06:05 -04:00
|
|
|
def update(*args) #:nodoc:
|
|
|
|
if record_timestamps && (!partial_updates? || changed?)
|
|
|
|
current_time = current_time_from_proper_timezone
|
2010-07-02 14:36:13 -04:00
|
|
|
timestamp_attributes_for_update_in_model.each { |column| write_attribute(column.to_s, current_time) }
|
2009-04-16 17:48:07 -04:00
|
|
|
end
|
2010-05-08 19:06:05 -04:00
|
|
|
|
|
|
|
super
|
|
|
|
end
|
2010-07-02 14:36:13 -04:00
|
|
|
|
|
|
|
def timestamp_attributes_for_update #:nodoc:
|
|
|
|
[:updated_at, :updated_on]
|
|
|
|
end
|
|
|
|
|
|
|
|
def timestamp_attributes_for_update_in_model #:nodoc:
|
|
|
|
([:updated_at, :updated_on].inject([]) { |sum, elem| respond_to?(elem) ? sum << elem : sum })
|
|
|
|
end
|
2010-05-08 19:06:05 -04:00
|
|
|
|
2010-07-02 14:36:13 -04:00
|
|
|
def current_time_from_proper_timezone #:nodoc:
|
2010-05-08 19:06:05 -04:00
|
|
|
self.class.default_timezone == :utc ? Time.now.utc : Time.now
|
|
|
|
end
|
2006-02-09 14:47:13 -05:00
|
|
|
end
|
2010-07-02 14:36:13 -04:00
|
|
|
end
|
|
|
|
|