Sha256: fca02f822c788616b8bce3d027968218ab17bc6df2a706ca1d0e77226b96fa92
Contents?: true
Size: 1.29 KB
Versions: 27
Compression:
Stored size: 1.29 KB
Contents
module Ddr module Events class FixityCheckEvent < Event include PreservationEventBehavior include ReindexObjectAfterSave self.preservation_event_type = :fix self.description = "Validation of datastream checksums" DETAIL_PREAMBLE = "Datastream checksum validation results:" DETAIL_TEMPLATE = "%{dsid} ... %{validation}" # Message sent by ActiveSupport::Notifications def self.call(*args) notification = ActiveSupport::Notifications::Event.new(*args) result = notification.payload[:result] # FixityCheck::Result instance detail = [DETAIL_PREAMBLE] result.results.each do |dsid, dsProfile| validation = dsProfile["dsChecksumValid"] ? VALID : INVALID detail << DETAIL_TEMPLATE % {dsid: dsid, validation: validation} end create(pid: result.pid, event_date_time: notification.time, outcome: result.success ? SUCCESS : FAILURE, detail: detail.join("\n") ) end def to_solr { Ddr::IndexFields::LAST_FIXITY_CHECK_ON => event_date_time_s, Ddr::IndexFields::LAST_FIXITY_CHECK_OUTCOME => outcome } end protected def default_software self.class.repository_software end end end end
Version data entries
27 entries across 27 versions & 1 rubygems