discourse/app/jobs/onceoff/post_uploads_recovery.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
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
2019-05-13 09:31:32 +08:00

25 lines
466 B
Ruby

# frozen_string_literal: true
require_dependency "upload_recovery"
module Jobs
class PostUploadsRecovery < Jobs::Onceoff
MIN_PERIOD = 30
MAX_PERIOD = 120
def execute_onceoff(args)
UploadRecovery.new.recover(Post.where(
"baked_at >= ?",
grace_period.days.ago
))
end
def grace_period
SiteSetting.purge_deleted_uploads_grace_period_days.clamp(
MIN_PERIOD,
MAX_PERIOD
)
end
end
end