discourse/app/jobs/regular/create_avatar_thumbnails.rb
Bianca Nenciu 43e52a7dc1
DEV: Remove gifsicle dependency (#10357)
Dependency on gifsicle, allow_animated_avatars and allow_animated_thumbnails
site settings were all removed. Animated GIF images are still allowed, but
the generated optimized images are no longer animated for those (which were
used for avatars and thumbnails).

The added 'animated' is populated by extracting information using FastImage.
This field was used to selectively reoptimize old animations. This process
happens in the background.
2020-10-16 13:41:27 +03:00

24 lines
480 B
Ruby

# frozen_string_literal: true
module Jobs
class CreateAvatarThumbnails < ::Jobs::Base
sidekiq_options queue: 'low'
def execute(args)
return if Rails.env.test?
upload_id = args[:upload_id]
raise Discourse::InvalidParameters.new(:upload_id) if upload_id.blank?
return unless upload = Upload.find_by(id: upload_id)
Discourse.avatar_sizes.each do |size|
OptimizedImage.create_for(upload, size, size)
end
end
end
end