2016-03-05 17:07:32 -05:00
|
|
|
require "request_store"
|
2016-04-09 01:15:51 -04:00
|
|
|
require "paper_trail/cleaner"
|
|
|
|
require "paper_trail/config"
|
|
|
|
require "paper_trail/has_paper_trail"
|
|
|
|
require "paper_trail/record_history"
|
|
|
|
require "paper_trail/reifier"
|
|
|
|
require "paper_trail/version_association_concern"
|
|
|
|
require "paper_trail/version_concern"
|
|
|
|
require "paper_trail/version_number"
|
|
|
|
require "paper_trail/serializers/json"
|
|
|
|
require "paper_trail/serializers/yaml"
|
2009-05-27 11:21:20 -04:00
|
|
|
|
2016-04-09 01:08:34 -04:00
|
|
|
# An ActiveRecord extension that tracks changes to your models, for auditing or
|
|
|
|
# versioning.
|
2009-05-27 11:21:20 -04:00
|
|
|
module PaperTrail
|
2013-03-21 16:40:15 -04:00
|
|
|
extend PaperTrail::Cleaner
|
2009-05-27 11:21:20 -04:00
|
|
|
|
2015-02-26 23:37:16 -05:00
|
|
|
class << self
|
2016-02-23 17:59:14 -05:00
|
|
|
# @api private
|
|
|
|
def clear_transaction_id
|
|
|
|
self.transaction_id = nil
|
|
|
|
end
|
|
|
|
|
2016-02-15 19:58:23 -05:00
|
|
|
# Switches PaperTrail on or off.
|
|
|
|
# @api public
|
|
|
|
def enabled=(value)
|
|
|
|
PaperTrail.config.enabled = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns `true` if PaperTrail is on, `false` otherwise.
|
|
|
|
# PaperTrail is enabled by default.
|
|
|
|
# @api public
|
|
|
|
def enabled?
|
|
|
|
!!PaperTrail.config.enabled
|
|
|
|
end
|
|
|
|
|
|
|
|
# Sets whether PaperTrail is enabled or disabled for the current request.
|
|
|
|
# @api public
|
|
|
|
def enabled_for_controller=(value)
|
|
|
|
paper_trail_store[:request_enabled_for_controller] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns `true` if PaperTrail is enabled for the request, `false` otherwise.
|
|
|
|
#
|
|
|
|
# See `PaperTrail::Rails::Controller#paper_trail_enabled_for_controller`.
|
|
|
|
# @api public
|
|
|
|
def enabled_for_controller?
|
|
|
|
!!paper_trail_store[:request_enabled_for_controller]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Sets whether PaperTrail is enabled or disabled for this model in the
|
|
|
|
# current request.
|
|
|
|
# @api public
|
|
|
|
def enabled_for_model(model, value)
|
|
|
|
paper_trail_store[:"enabled_for_#{model}"] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns `true` if PaperTrail is enabled for this model in the current
|
|
|
|
# request, `false` otherwise.
|
|
|
|
# @api public
|
|
|
|
def enabled_for_model?(model)
|
|
|
|
!!paper_trail_store.fetch(:"enabled_for_#{model}", true)
|
|
|
|
end
|
|
|
|
|
2017-04-01 01:19:54 -04:00
|
|
|
# Returns a `::Gem::Version`, convenient for comparisons. This is
|
|
|
|
# recommended over `::PaperTrail::VERSION::STRING`.
|
|
|
|
# @api public
|
|
|
|
def gem_version
|
|
|
|
::Gem::Version.new(VERSION::STRING)
|
|
|
|
end
|
|
|
|
|
2016-02-15 19:58:23 -05:00
|
|
|
# Set the field which records when a version was created.
|
|
|
|
# @api public
|
2016-09-04 00:33:29 -04:00
|
|
|
def timestamp_field=(_field_name)
|
|
|
|
raise(
|
|
|
|
"PaperTrail.timestamp_field= has been removed, without replacement. " \
|
|
|
|
"It is no longer configurable. The timestamp field in the versions table " \
|
|
|
|
"must now be named created_at."
|
|
|
|
)
|
2016-02-15 19:58:23 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Sets who is responsible for any changes that occur. You would normally use
|
|
|
|
# this in a migration or on the console, when working with models directly.
|
|
|
|
# In a controller it is set automatically to the `current_user`.
|
|
|
|
# @api public
|
|
|
|
def whodunnit=(value)
|
|
|
|
paper_trail_store[:whodunnit] = value
|
|
|
|
end
|
|
|
|
|
2017-02-28 21:12:20 -05:00
|
|
|
# If nothing passed, returns who is reponsible for any changes that occur.
|
|
|
|
#
|
|
|
|
# PaperTrail.whodunnit = "someone"
|
|
|
|
# PaperTrail.whodunnit # => "someone"
|
|
|
|
#
|
|
|
|
# If value and block passed, set this value as whodunnit for the duration of the block
|
|
|
|
#
|
|
|
|
# PaperTrail.whodunnit("me") do
|
|
|
|
# puts PaperTrail.whodunnit # => "me"
|
|
|
|
# end
|
|
|
|
#
|
2016-02-15 19:58:23 -05:00
|
|
|
# @api public
|
2017-02-28 21:12:20 -05:00
|
|
|
def whodunnit(value = nil)
|
|
|
|
if value
|
|
|
|
raise ArgumentError, "no block given" unless block_given?
|
|
|
|
|
|
|
|
previous_whodunnit = paper_trail_store[:whodunnit]
|
|
|
|
paper_trail_store[:whodunnit] = value
|
|
|
|
|
|
|
|
begin
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
paper_trail_store[:whodunnit] = previous_whodunnit
|
|
|
|
end
|
|
|
|
else
|
|
|
|
paper_trail_store[:whodunnit]
|
|
|
|
end
|
2016-02-15 19:58:23 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Sets any information from the controller that you want PaperTrail to
|
|
|
|
# store. By default this is set automatically by a before filter.
|
|
|
|
# @api public
|
|
|
|
def controller_info=(value)
|
|
|
|
paper_trail_store[:controller_info] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns any information from the controller that you want
|
|
|
|
# PaperTrail to store.
|
|
|
|
#
|
|
|
|
# See `PaperTrail::Rails::Controller#info_for_paper_trail`.
|
|
|
|
# @api public
|
|
|
|
def controller_info
|
|
|
|
paper_trail_store[:controller_info]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Getter and Setter for PaperTrail Serializer
|
|
|
|
# @api public
|
|
|
|
def serializer=(value)
|
|
|
|
PaperTrail.config.serializer = value
|
|
|
|
end
|
|
|
|
|
|
|
|
# @api public
|
|
|
|
def serializer
|
|
|
|
PaperTrail.config.serializer
|
|
|
|
end
|
|
|
|
|
|
|
|
# @api public
|
|
|
|
def transaction?
|
|
|
|
::ActiveRecord::Base.connection.open_transactions > 0
|
|
|
|
end
|
|
|
|
|
|
|
|
# @api public
|
|
|
|
def transaction_id
|
|
|
|
paper_trail_store[:transaction_id]
|
|
|
|
end
|
|
|
|
|
|
|
|
# @api public
|
|
|
|
def transaction_id=(id)
|
|
|
|
paper_trail_store[:transaction_id] = id
|
|
|
|
end
|
|
|
|
|
|
|
|
# Thread-safe hash to hold PaperTrail's data. Initializing with needed
|
|
|
|
# default values.
|
|
|
|
# @api private
|
|
|
|
def paper_trail_store
|
|
|
|
RequestStore.store[:paper_trail] ||= { request_enabled_for_controller: true }
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns PaperTrail's configuration object.
|
|
|
|
# @api private
|
|
|
|
def config
|
|
|
|
@config ||= PaperTrail::Config.instance
|
|
|
|
yield @config if block_given?
|
|
|
|
@config
|
|
|
|
end
|
2016-03-31 04:57:32 -04:00
|
|
|
alias configure config
|
2016-04-08 23:32:09 -04:00
|
|
|
|
|
|
|
def version
|
|
|
|
VERSION::STRING
|
|
|
|
end
|
2013-01-07 14:44:12 -05:00
|
|
|
end
|
2009-05-27 11:21:20 -04:00
|
|
|
end
|
2011-02-08 12:16:35 -05:00
|
|
|
|
2016-05-04 14:01:16 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
|
|
|
include PaperTrail::Model
|
|
|
|
end
|
|
|
|
|
2013-10-02 17:04:45 -04:00
|
|
|
# Require frameworks
|
2016-03-05 17:07:32 -05:00
|
|
|
if defined?(::Rails) && ActiveRecord::VERSION::STRING >= "3.2"
|
|
|
|
require "paper_trail/frameworks/rails"
|
2014-06-05 11:06:51 -04:00
|
|
|
else
|
2016-03-05 17:07:32 -05:00
|
|
|
require "paper_trail/frameworks/active_record"
|
2014-06-05 11:06:51 -04:00
|
|
|
end
|