Method: Action.squash

Defined in:
lib/mls/models/action.rb

.squash(attributes) ⇒ 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
# File 'lib/mls/models/action.rb', line 19

def self.squash(attributes)
  squashed_actions = []
  where(nil).each do |action|
    action. = action..where(key: 'performed_by_id').first&.value
    
    action.diff = action.diff.slice(*attributes) if attributes
    if squashed_actions.last &&
      action. == squashed_actions.last. &&
      action.timestamp + 15.minutes > squashed_actions.last.timestamp

      action.diff.each do |key, value|
        next if value[0] == value[1] # filter sometimes logs even if the same
        if squashed_actions.last.diff[key]
          squashed_actions.last.diff[key][0] = value[0]
        else
          squashed_actions.last.diff[key] = value
        end
      end
    else
      squashed_actions << action
    end
  end
  squashed_actions
end