mirror of
https://github.com/discourse/discourse.git
synced 2024-12-14 19:33:41 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
29 lines
581 B
Ruby
29 lines
581 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,
|
|
allow_animation: SiteSetting.allow_animated_avatars
|
|
)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|