Merge pull request #10387 from demarches-simplifiees/recompute_blob_checksum

Tech: ajoute une maintenance task pour recalculer les checksums de pj erronées
This commit is contained in:
mfo 2024-05-24 08:20:42 +00:00 committed by GitHub
commit 1b2cd09737
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,23 @@
# frozen_string_literal: true
module Maintenance
class RecomputeBlobChecksumTask < MaintenanceTasks::Task
attribute :blob_ids, :string
validates :blob_ids, presence: true
def collection
ids = blob_ids.split(',').map(&:strip).map(&:to_i)
ActiveStorage::Blob.where(id: ids)
end
def process(blob)
blob.upload(StringIO.new(blob.download), identify: false)
blob.save!
end
def count
# Optionally, define the number of rows that will be iterated over
# This is used to track the task's progress
end
end
end