discourse/app/jobs/scheduled/update_animated_uploads.rb
Bianca Nenciu be5efc9410
FIX: Ensure old uploads can have animated field updated (#10963)
If admins decreased the maximum filesize limit the ActiveRecord
validations would fail.
2020-10-20 19:11:43 +03:00

25 lines
626 B
Ruby

# frozen_string_literal: true
module Jobs
class UpdateAnimatedUploads < ::Jobs::Scheduled
every 1.hour
MAX_PROCESSED_GIF_IMAGES ||= 200
def execute(args)
Upload
.where("extension = 'gif' OR (extension IS NULL AND original_filename LIKE '%.gif')")
.where(animated: nil)
.limit(MAX_PROCESSED_GIF_IMAGES)
.each do |upload|
uri = Discourse.store.path_for(upload) || upload.url
upload.animated = FastImage.animated?(uri)
upload.save(validate: false)
upload.optimized_images.destroy_all if upload.animated
end
nil
end
end
end