2013-10-14 08:27:41 -04:00
|
|
|
module Jobs
|
|
|
|
class CleanUpUploads < Jobs::Scheduled
|
2014-02-05 18:14:41 -05:00
|
|
|
every 1.hour
|
2013-10-14 08:27:41 -04:00
|
|
|
|
|
|
|
def execute(args)
|
2013-10-16 04:55:42 -04:00
|
|
|
return unless SiteSetting.clean_up_uploads?
|
2013-10-14 08:27:41 -04:00
|
|
|
|
2016-08-01 12:35:57 -04:00
|
|
|
ignore_urls = []
|
|
|
|
ignore_urls |= UserProfile.uniq.where("profile_background IS NOT NULL AND profile_background != ''").pluck(:profile_background)
|
|
|
|
ignore_urls |= UserProfile.uniq.where("card_background IS NOT NULL AND card_background != ''").pluck(:card_background)
|
|
|
|
ignore_urls |= Category.uniq.where("logo_url IS NOT NULL AND logo_url != ''").pluck(:logo_url)
|
|
|
|
ignore_urls |= Category.uniq.where("background_url IS NOT NULL AND background_url != ''").pluck(:background_url)
|
2016-07-01 03:22:30 -04:00
|
|
|
|
2016-08-01 12:35:57 -04:00
|
|
|
ids = []
|
|
|
|
ids |= PostUpload.uniq.pluck(:upload_id)
|
|
|
|
ids |= User.uniq.where("uploaded_avatar_id IS NOT NULL").pluck(:uploaded_avatar_id)
|
|
|
|
ids |= UserAvatar.uniq.where("gravatar_upload_id IS NOT NULL").pluck(:gravatar_upload_id)
|
2016-07-01 03:22:30 -04:00
|
|
|
|
2013-11-27 16:01:41 -05:00
|
|
|
grace_period = [SiteSetting.clean_orphan_uploads_grace_period_hours, 1].max
|
2013-10-14 08:27:41 -04:00
|
|
|
|
2016-08-01 12:35:57 -04:00
|
|
|
result = Upload.where("retain_hours IS NULL OR created_at < current_timestamp - interval '1 hour' * retain_hours")
|
|
|
|
result = result.where("created_at < ?", grace_period.hour.ago)
|
|
|
|
result = result.where("id NOT IN (?)", ids) if !ids.empty?
|
|
|
|
result = result.where("url NOT IN (?)", ignore_urls) if !ignore_urls.empty?
|
2013-10-14 08:27:41 -04:00
|
|
|
|
2016-08-01 12:35:57 -04:00
|
|
|
result.find_each do |upload|
|
|
|
|
next if QueuedPost.where("raw LIKE '%#{upload.sha1}%'").exists?
|
|
|
|
next if Draft.where("data LIKE '%#{upload.sha1}%'").exists?
|
|
|
|
upload.destroy
|
2016-07-01 03:22:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-10-14 08:27:41 -04:00
|
|
|
end
|