mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:43:19 +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
20 lines
606 B
Ruby
20 lines
606 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "s3_inventory"
|
|
|
|
module Jobs
|
|
# if upload bucket changes or inventory bucket changes we want to update s3 bucket policy and inventory configuration
|
|
class UpdateS3Inventory < Jobs::Base
|
|
|
|
def execute(args)
|
|
return unless SiteSetting.enable_s3_inventory? && SiteSetting.Upload.enable_s3_uploads
|
|
|
|
[:upload, :optimized].each do |type|
|
|
s3_inventory = S3Inventory.new(Discourse.store.s3_helper, type)
|
|
s3_inventory.update_bucket_policy if type == :upload
|
|
s3_inventory.update_bucket_inventory_configuration
|
|
end
|
|
end
|
|
end
|
|
end
|