2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-10-14 20:27:41 +08:00
|
|
|
module Jobs
|
2019-10-02 12:01:53 +08:00
|
|
|
class CleanUpUploads < ::Jobs::Scheduled
|
2014-02-06 07:14:41 +08:00
|
|
|
every 1.hour
|
2013-10-14 20:27:41 +08:00
|
|
|
|
|
|
|
def execute(args)
|
2018-06-05 00:40:57 +08:00
|
|
|
grace_period = [SiteSetting.clean_orphan_uploads_grace_period_hours, 1].max
|
2018-06-05 01:06:52 +08:00
|
|
|
|
2023-11-20 07:50:09 +08:00
|
|
|
# Always remove invalid upload records regardless of clean_up_uploads setting.
|
2018-06-05 00:40:57 +08:00
|
|
|
Upload
|
2019-01-02 15:29:17 +08:00
|
|
|
.by_users
|
2018-06-05 00:40:57 +08:00
|
|
|
.where(
|
|
|
|
"retain_hours IS NULL OR created_at < current_timestamp - interval '1 hour' * retain_hours",
|
|
|
|
)
|
|
|
|
.where("created_at < ?", grace_period.hour.ago)
|
2018-06-05 00:43:00 +08:00
|
|
|
.where(url: "")
|
2018-07-02 12:41:53 +08:00
|
|
|
.find_each(&:destroy!)
|
2018-06-05 01:06:52 +08:00
|
|
|
|
2013-10-16 16:55:42 +08:00
|
|
|
return unless SiteSetting.clean_up_uploads?
|
2013-10-14 20:27:41 +08:00
|
|
|
|
2023-11-20 07:50:09 +08:00
|
|
|
# Do nothing if the last cleanup was run too recently.
|
|
|
|
last_cleanup_timestamp = last_cleanup
|
|
|
|
if last_cleanup_timestamp.present? &&
|
|
|
|
(Time.zone.now.to_i - last_cleanup_timestamp) < (grace_period / 2).hours
|
|
|
|
return
|
2019-10-28 08:14:52 +08:00
|
|
|
end
|
|
|
|
|
2019-01-02 15:29:17 +08:00
|
|
|
result = Upload.by_users
|
2022-02-16 15:00:30 +08:00
|
|
|
Upload.unused_callbacks&.each { |handler| result = handler.call(result) }
|
|
|
|
result =
|
|
|
|
result
|
2019-01-02 15:29:17 +08:00
|
|
|
.where(
|
|
|
|
"uploads.retain_hours IS NULL OR uploads.created_at < current_timestamp - interval '1 hour' * uploads.retain_hours",
|
|
|
|
)
|
2023-11-29 13:38:07 +08:00
|
|
|
.where("uploads.created_at < ?", grace_period.hour.ago) # Don't remove any secure uploads.
|
2020-01-16 11:50:27 +08:00
|
|
|
.where("uploads.access_control_post_id IS NULL")
|
2023-11-29 13:38:07 +08:00
|
|
|
.joins(
|
|
|
|
"LEFT JOIN upload_references ON upload_references.upload_id = uploads.id",
|
|
|
|
) # Don't remove any uploads linked to an UploadReference.
|
2022-06-09 07:24:30 +08:00
|
|
|
.where("upload_references.upload_id IS NULL")
|
2021-06-24 06:09:40 +08:00
|
|
|
.with_no_non_post_relations
|
2013-10-14 20:27:41 +08:00
|
|
|
|
2016-08-02 00:35:57 +08:00
|
|
|
result.find_each do |upload|
|
2022-06-09 07:24:30 +08:00
|
|
|
next if Upload.in_use_callbacks&.any? { |callback| callback.call(upload) }
|
2023-11-20 07:50:09 +08:00
|
|
|
upload.sha1.present? ? upload.destroy : upload.delete
|
2016-07-01 15:22:30 +08:00
|
|
|
end
|
2019-10-28 08:14:52 +08:00
|
|
|
|
2021-07-28 06:42:25 +08:00
|
|
|
ExternalUploadStub.cleanup!
|
|
|
|
|
2019-10-28 08:14:52 +08:00
|
|
|
self.last_cleanup = Time.zone.now.to_i
|
|
|
|
end
|
|
|
|
|
2023-11-20 07:50:09 +08:00
|
|
|
def last_cleanup=(timestamp)
|
|
|
|
Discourse.redis.setex(last_cleanup_key, 7.days.to_i, timestamp.to_s)
|
2019-10-28 08:14:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def last_cleanup
|
2023-11-20 07:50:09 +08:00
|
|
|
timestamp = Discourse.redis.get(last_cleanup_key)
|
|
|
|
timestamp ? timestamp.to_i : timestamp
|
2016-07-01 15:22:30 +08:00
|
|
|
end
|
2019-10-28 08:14:52 +08:00
|
|
|
|
|
|
|
def reset_last_cleanup!
|
2019-12-03 17:05:53 +08:00
|
|
|
Discourse.redis.del(last_cleanup_key)
|
2019-10-28 08:14:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def last_cleanup_key
|
|
|
|
"LAST_UPLOAD_CLEANUP"
|
|
|
|
end
|
2016-07-01 15:22:30 +08:00
|
|
|
end
|
2013-10-14 20:27:41 +08:00
|
|
|
end
|