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
|
|
|
|
2018-06-05 00:40:57 +08:00
|
|
|
# always remove invalid upload records
|
|
|
|
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
|
|
|
|
2019-10-28 08:14:52 +08:00
|
|
|
if c = last_cleanup
|
|
|
|
return if (Time.zone.now.to_i - c) < (grace_period / 2).hours
|
|
|
|
end
|
|
|
|
|
2017-06-08 04:53:15 +08:00
|
|
|
base_url = Discourse.store.internal? ? Discourse.store.relative_base_url : Discourse.store.absolute_base_url
|
|
|
|
s3_hostname = URI.parse(base_url).hostname
|
2017-10-06 13:20:01 +08:00
|
|
|
s3_cdn_hostname = URI.parse(SiteSetting.Upload.s3_cdn_url || "").hostname
|
2017-06-08 04:53:15 +08:00
|
|
|
|
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")
|
2016-11-02 11:14:02 +08:00
|
|
|
.where("uploads.created_at < ?", grace_period.hour.ago)
|
2020-01-16 11:50:27 +08:00
|
|
|
.where("uploads.access_control_post_id IS NULL")
|
2022-06-09 07:24:30 +08:00
|
|
|
.joins("LEFT JOIN upload_references ON upload_references.upload_id = uploads.id")
|
|
|
|
.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) }
|
|
|
|
|
2017-11-14 17:56:10 +08:00
|
|
|
if upload.sha1.present?
|
2022-06-09 07:24:30 +08:00
|
|
|
# TODO: Remove this check after UploadReferences records were created
|
2017-11-14 17:56:10 +08:00
|
|
|
encoded_sha = Base62.encode(upload.sha1.hex)
|
2019-04-13 02:39:32 +08:00
|
|
|
next if ReviewableQueuedPost.pending.where("payload->>'raw' LIKE '%#{upload.sha1}%' OR payload->>'raw' LIKE '%#{encoded_sha}%'").exists?
|
2017-11-14 17:56:10 +08:00
|
|
|
next if Draft.where("data LIKE '%#{upload.sha1}%' OR data LIKE '%#{encoded_sha}%'").exists?
|
2021-10-29 22:58:05 +08:00
|
|
|
next if UserProfile.where("bio_raw LIKE '%#{upload.sha1}%' OR bio_raw LIKE '%#{encoded_sha}%'").exists?
|
2022-02-16 15:00:30 +08:00
|
|
|
|
2017-11-21 17:20:42 +08:00
|
|
|
upload.destroy
|
|
|
|
else
|
|
|
|
upload.delete
|
2017-11-14 17:56:10 +08:00
|
|
|
end
|
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
|
|
|
|
|
|
|
|
def last_cleanup=(v)
|
2019-12-03 17:05:53 +08:00
|
|
|
Discourse.redis.setex(last_cleanup_key, 7.days.to_i, v.to_s)
|
2019-10-28 08:14:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def last_cleanup
|
2019-12-03 17:05:53 +08:00
|
|
|
v = Discourse.redis.get(last_cleanup_key)
|
2019-10-28 08:14:52 +08:00
|
|
|
v ? v.to_i : v
|
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
|