paper-trail-gem--paper_trail/lib/paper_trail/has_paper_trail.rb

120 lines
3.6 KiB
Ruby
Raw Normal View History

2009-05-27 15:21:20 +00:00
module PaperTrail
module Model
2009-05-27 15:21:20 +00:00
def self.included(base)
base.send :extend, ClassMethods
end
2009-05-27 15:21:20 +00:00
module ClassMethods
# Options:
# :ignore an array of attributes for which a new +Version+ will not be created if only they change.
# :meta a hash of extra data to store. You must add a column to the versions table for each key.
# Values are objects or procs (which are called with +self+, i.e. the model with the paper
# trail).
def has_paper_trail(options = {})
send :include, InstanceMethods
2009-10-28 13:12:36 +00:00
cattr_accessor :ignore
self.ignore = (options[:ignore] || []).map &:to_s
2010-01-06 12:57:54 +00:00
cattr_accessor :meta
self.meta = options[:meta] || {}
2010-02-18 16:35:41 +00:00
# Indicates whether or not PaperTrail is active for this class.
# This is independent of whether PaperTrail is globally enabled or disabled.
cattr_accessor :paper_trail_active
self.paper_trail_active = true
2009-05-27 15:21:20 +00:00
has_many :versions, :as => :item, :order => 'created_at ASC, id ASC'
2009-05-27 15:21:20 +00:00
after_create :record_create
before_update :record_update
after_destroy :record_destroy
end
2009-05-27 15:21:20 +00:00
# Switches PaperTrail off for this class.
def paper_trail_off
self.paper_trail_active = false
end
2009-05-27 15:21:20 +00:00
# Switches PaperTrail on for this class.
def paper_trail_on
self.paper_trail_active = true
end
2009-05-27 15:21:20 +00:00
end
module InstanceMethods
def record_create
if switched_on?
versions.create merge_metadata(:event => 'create', :whodunnit => PaperTrail.whodunnit)
end
2010-01-06 12:57:54 +00:00
end
2009-05-27 15:21:20 +00:00
def record_update
if switched_on? && changed_and_we_care?
versions.build merge_metadata(:event => 'update',
:object => object_to_string(previous_version),
:whodunnit => PaperTrail.whodunnit)
end
2009-05-27 15:21:20 +00:00
end
def record_destroy
if switched_on?
versions.create merge_metadata(:event => 'destroy',
:object => object_to_string(previous_version),
:whodunnit => PaperTrail.whodunnit)
end
2010-01-06 12:57:54 +00:00
end
2010-02-18 16:35:41 +00:00
# Returns the object (not a Version) as it was at the given timestamp.
def version_at(timestamp)
# Short-circuit if the current state is applicable.
return self if self.updated_at <= timestamp
# Look for the first version created after, rather than before, the
# timestamp because a version stores how the object looked before the
# change.
version = versions.first :conditions => ['created_at > ?', timestamp],
:order => 'created_at ASC'
version.reify if version
end
2009-05-27 15:21:20 +00:00
private
2009-05-27 15:21:20 +00:00
def merge_metadata(data)
meta.each do |k,v|
data[k] = v.respond_to?(:call) ? v.call(self) : v
end
data
2010-01-06 12:57:54 +00:00
end
def previous_version
previous = self.clone
previous.id = id
changes.each do |attr, ary|
previous.send "#{attr}=", ary.first
end
previous
2009-05-27 15:21:20 +00:00
end
def object_to_string(object)
object.attributes.to_yaml
end
2009-10-28 13:12:36 +00:00
def changed_and_we_care?
changed? and !(changed - self.class.ignore).empty?
end
# Returns `true` if PaperTrail is globally enabled and active for this class,
# `false` otherwise.
def switched_on?
PaperTrail.enabled? && self.class.paper_trail_active
end
end
2009-05-27 15:21:20 +00:00
end
2009-05-27 15:21:20 +00:00
end
ActiveRecord::Base.send :include, PaperTrail::Model