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

163 lines
5.3 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
# The version this instance was reified from.
attr_accessor :version
end
2009-05-27 15:21:20 +00:00
module ClassMethods
# Declare this in your model to track every create, update, and destroy. Each version of
# the model is available in the `versions` association.
#
# 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). See `PaperTrail::Controller.info_for_paper_trail` for how to store data from
# the controller.
def has_paper_trail(options = {})
# Lazily include the instance methods so we don't clutter up
# any more ActiveRecord models than we have to.
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
# Wrap the following methods in a module so we can include them only in the
# ActiveRecord models that declare `has_paper_trail`.
module InstanceMethods
# Returns true if this instance is the current, live one;
# returns false if this instance came from a previous version.
def live?
version.nil?
end
# Returns who put the object into its current state.
def originator
versions.last.try :whodunnit
end
# Returns the object (not a Version) as it was at the given timestamp.
def version_at(timestamp)
# Because a version stores how its object looked *before* the change,
# we need to look for the first version created *after* the timestamp.
version = versions.after(timestamp).first
version ? version.reify : self
end
2009-05-27 15:21:20 +00:00
# Returns the object (not a Version) as it was most recently.
def previous_version
2011-02-06 08:31:21 +00:00
preceding_version = version ? version.previous : versions.last
preceding_version.try :reify
end
# Returns the object (not a Version) as it became next.
def next_version
# NOTE: if self (the item) was not reified from a version, i.e. it is the
# "live" item, we return nil. Perhaps we should return self instead?
subsequent_version = version ? version.next : nil
subsequent_version.reify if subsequent_version
end
private
2009-05-27 15:21:20 +00:00
def record_create
if switched_on?
versions.create merge_metadata(:event => 'create', :whodunnit => PaperTrail.whodunnit)
end
end
def record_update
if switched_on? && changed_notably?
versions.build merge_metadata(:event => 'update',
:object => object_to_string(item_before_change),
:whodunnit => PaperTrail.whodunnit)
end
end
def record_destroy
if switched_on? and not new_record?
Version.create merge_metadata(:item => self,
:event => 'destroy',
:object => object_to_string(item_before_change),
:whodunnit => PaperTrail.whodunnit)
end
end
def merge_metadata(data)
# First we merge the model-level metadata in `meta`.
meta.each do |k,v|
data[k] =
if v.respond_to?(:call)
v.call(self)
elsif v.is_a?(Symbol) && respond_to?(v)
send(v)
else
v
end
end
# Second we merge any extra data from the controller (if available).
data.merge(PaperTrail.controller_info || {})
2010-01-06 12:57:54 +00:00
end
def item_before_change
self.clone.tap do |previous|
previous.id = id
changed_attributes.each { |attr, before| previous[attr] = before }
end
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_notably?
notably_changed.any?
end
def notably_changed
changed - self.class.ignore
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