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
|
|
|
|
2014-06-27 15:35:25 -04:00
|
|
|
ignore_urls = []
|
|
|
|
ignore_urls << UserProfile.uniq.where("profile_background IS NOT NULL AND profile_background != ''").pluck(:profile_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)
|
|
|
|
ignore_urls.flatten!
|
2014-05-26 05:46:43 -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
|
|
|
|
|
|
|
Upload.where("created_at < ?", grace_period.hour.ago)
|
2014-05-26 05:46:43 -04:00
|
|
|
.where("id NOT IN (SELECT upload_id from post_uploads)")
|
2014-06-06 20:24:58 -04:00
|
|
|
.where("id NOT IN (SELECT custom_upload_id from user_avatars)")
|
|
|
|
.where("id NOT IN (SELECT gravatar_upload_id from user_avatars)")
|
2014-06-27 15:35:25 -04:00
|
|
|
.where("url NOT IN (?)", ignore_urls)
|
2013-10-14 08:27:41 -04:00
|
|
|
.find_each do |upload|
|
2013-10-16 04:55:42 -04:00
|
|
|
upload.destroy
|
2013-10-14 08:27:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|