2020-03-08 22:56:18 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PostProcessMediaWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options retry: 1, dead: false
|
|
|
|
|
|
|
|
sidekiq_retries_exhausted do |msg|
|
|
|
|
media_attachment_id = msg['args'].first
|
|
|
|
|
|
|
|
ActiveRecord::Base.connection_pool.with_connection do
|
2023-02-18 22:09:40 +00:00
|
|
|
media_attachment = MediaAttachment.find(media_attachment_id)
|
|
|
|
media_attachment.processing = :failed
|
|
|
|
media_attachment.save
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2020-03-08 22:56:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.logger.error("Processing media attachment #{media_attachment_id} failed with #{msg['error_message']}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def perform(media_attachment_id)
|
|
|
|
media_attachment = MediaAttachment.find(media_attachment_id)
|
|
|
|
media_attachment.processing = :in_progress
|
|
|
|
media_attachment.save
|
2020-06-24 23:33:01 +00:00
|
|
|
|
2023-05-19 15:13:29 +00:00
|
|
|
# Because paperclip-av-transcoder overwrites this attribute
|
2020-06-24 23:33:01 +00:00
|
|
|
# we will save it here and restore it after reprocess is done
|
|
|
|
previous_meta = media_attachment.file_meta
|
|
|
|
|
2020-04-06 12:11:22 +00:00
|
|
|
media_attachment.file.reprocess!(:original)
|
2020-03-08 22:56:18 +00:00
|
|
|
media_attachment.processing = :complete
|
2020-07-05 16:28:25 +00:00
|
|
|
media_attachment.file_meta = previous_meta.merge(media_attachment.file_meta).with_indifferent_access.slice(*MediaAttachment::META_KEYS)
|
2020-03-08 22:56:18 +00:00
|
|
|
media_attachment.save
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|