mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
38 lines
1.1 KiB
Ruby
38 lines
1.1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'integrity/checksum'
|
||
|
require 'json'
|
||
|
|
||
|
# ChainedElement saves data about a securly footprinted chained element (like invoices)
|
||
|
class ChainedElement < ApplicationRecord
|
||
|
belongs_to :element, polymorphic: true
|
||
|
belongs_to :previous, class_name: 'ChainedElement'
|
||
|
has_one :next, class_name: 'ChainedElement', inverse_of: :previous, dependent: :restrict_with_exception
|
||
|
|
||
|
before_create :set_content, :chain_record
|
||
|
|
||
|
validates :element_id, :element_type, presence: true
|
||
|
|
||
|
# @return [Boolean]
|
||
|
def corrupted?
|
||
|
comparable(FootprintService.chained_data(element, previous&.footprint)) != comparable(content) ||
|
||
|
footprint != Integrity::Checksum.text(comparable(content).to_json)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_content
|
||
|
self.content = FootprintService.chained_data(element, previous&.footprint)
|
||
|
end
|
||
|
|
||
|
def chain_record
|
||
|
self.footprint = Integrity::Checksum.text(content.to_json)
|
||
|
end
|
||
|
|
||
|
# @param item [Hash]
|
||
|
# @return [Hash]
|
||
|
def comparable(item)
|
||
|
item.sort.to_h.transform_values { |val| val.is_a?(Hash) ? val.sort.to_h : val }
|
||
|
end
|
||
|
end
|