Module: ImmosquareActiveRecordChangeTracker::ClassMethods

Defined in:
lib/immosquare-active-record-change-tracker.rb

Instance Method Summary collapse

Instance Method Details

#kept_in_dbObject

##

Can be improved with other gems like paranoia

##


15
16
17
# File 'lib/immosquare-active-record-change-tracker.rb', line 15

def kept_in_db
  paranoid?
end

#track_active_record_changes(options = {}, &modifier_block) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/immosquare-active-record-change-tracker.rb', line 19

def track_active_record_changes(options = {}, &modifier_block)
  ##============================================================##
  ## Inclut les méthodes d'instance nécessaires
  ##============================================================##
  include(ImmosquareActiveRecordChangeTracker::InstanceMethods)

  ##============================================================##
  ## Construire dynamiquement les options de l'association
  ##============================================================##
  association_options = {
    :as         => :recordable,
    :class_name => "ImmosquareActiveRecordChangeTracker::HistoryRecord"
  }

  ##============================================================##
  ## Ajouter :dependent => :destroy si acts_as_paranoid n'est pas utilisé
  ## on se base sur paranoia_column car acts_as_paranoid répond true
  ## sur tous les modèles du temps que la gem est incluse
  ##============================================================##
  association_options[:dependent] = :destroy if !kept_in_db

  ##============================================================##
  ## Ajout de l'association has_many :history_records
  ##============================================================##
  has_many(:history_records, -> { order(:created_at => :desc) }, **association_options)

  ##============================================================##
  ## Stocker les options dans un attribut de classe
  ##============================================================##
  class_attribute(:history_options)
  self.history_options = options

  ##============================================================##
  ## Stocker le bloc du modificateur s'il est fourni
  ##============================================================##
  history_options[:modifier_block] = modifier_block if block_given?

  ##============================================================##
  ## Configure le callback after_save et after_destroy
  ##============================================================##
  after_save(:save_change_history)
  after_destroy(:delete_change_history)
  after_real_destroy(:delete_all_change_histories) if paranoid?
end