Class: ActiveSnapshot::Snapshot

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
lib/active_snapshot/models/snapshot.rb

Instance Method Summary collapse

Instance Method Details

#build_snapshot_item(instance, child_group_name: nil) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/active_snapshot/models/snapshot.rb', line 52

def build_snapshot_item(instance, child_group_name: nil)
  attrs = instance.attributes

  if instance.class.defined_enums.any?
    instance.class.defined_enums.slice(*attrs.keys).each do |enum_col_name, enum_mapping|
      val = attrs.fetch(enum_col_name)
      next if val.nil?
      attrs[enum_col_name] = enum_mapping.fetch(val)
    end
  end

  self.snapshot_items.new({
    object: attrs,
    item_id: instance.id,
    item_type: instance.class.name,
    child_group_name: child_group_name,
  })
end

#fetch_reified_items(readonly: true) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/active_snapshot/models/snapshot.rb', line 113

def fetch_reified_items(readonly: true)
  reified_children_hash = {}.with_indifferent_access

  reified_parent = nil

  snapshot_items.each do |si|
    reified_item = si.item_type.constantize.new

    si.object.each do |k,v|
      if reified_item.respond_to?("#{k}=")
        reified_item[k] = v
      else
        # database column was likely dropped since the snapshot was created
      end
    end

    if readonly
      reified_item.readonly!
    end

    key = si.child_group_name

    if key
      reified_children_hash[key] ||= []

      reified_children_hash[key] << reified_item

    elsif self.item_id == si.item_id && (self.item_type == si.item_type || si.item_type.constantize.new.is_a?(self.item_type.constantize))
      reified_parent = reified_item
    end
  end

  return [reified_parent, reified_children_hash]
end

#metadataObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/active_snapshot/models/snapshot.rb', line 18

def 
  return @metadata if @metadata

  if ActiveSnapshot.config.storage_method_serialized_json?
    # for legacy active_snapshot configurations only
    @metadata = JSON.parse(self[:metadata])
  elsif ActiveSnapshot.config.storage_method_yaml?
    # for legacy active_snapshot configurations only
    yaml_method = "unsafe_load"

    if !YAML.respond_to?("unsafe_load")
      yaml_method = "load"
    end

    @metadata = YAML.send(yaml_method, self[:metadata])
  else
    @metadata = self[:metadata]
  end
end

#metadata=(h) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/active_snapshot/models/snapshot.rb', line 38

def metadata=(h)
  @metadata = nil

  if ActiveSnapshot.config.storage_method_serialized_json?
    # for legacy active_snapshot configurations only
    self[:metadata] = h.to_json
  elsif ActiveSnapshot.config.storage_method_yaml?
    # for legacy active_snapshot configurations only
    self[:metadata] = YAML.dump(h)
  else
    self[:metadata] = h
  end
end

#restore!Object



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/active_snapshot/models/snapshot.rb', line 71

def restore!
  ActiveRecord::Base.transaction do
    ### Cache the child snapshots in a variable for re-use
    cached_snapshot_items = snapshot_items.includes(:item)

    existing_snapshot_children = item ? item.children_to_snapshot : []

    if existing_snapshot_children.any?
      children_to_keep = Set.new

      cached_snapshot_items.each do |snapshot_item|
        key = "#{snapshot_item.item_type} #{snapshot_item.item_id}"

        children_to_keep << key
      end

      ### Destroy or Detach Items not included in this Snapshot's Items
      ### We do this first in case you later decide to validate children in ItemSnapshot#restore_item! method
      existing_snapshot_children.each do |child_group_name, h|
        delete_method = h[:delete_method] || ->(child_record){ child_record.destroy! }

        h[:records].each do |child_record|
          child_record_id = child_record.send(child_record.class.send(:primary_key))

          key = "#{child_record.class.name} #{child_record_id}"

          if children_to_keep.exclude?(key)
            delete_method.call(child_record)
          end
        end
      end
    end

    ### Create or Update Items from Snapshot Items
    cached_snapshot_items.each do |snapshot_item|
      snapshot_item.restore_item!
    end
  end

  return true
end