2013-10-14 20:27:41 +08:00
|
|
|
module Jobs
|
|
|
|
|
|
|
|
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)
|
2013-10-16 16:55:42 +08:00
|
|
|
return unless SiteSetting.clean_up_uploads?
|
2013-10-14 20:27:41 +08:00
|
|
|
|
2014-03-01 04:12:51 +08:00
|
|
|
uploads_used_as_profile_backgrounds = User.uniq.where("profile_background IS NOT NULL AND profile_background != ''").pluck(:profile_background)
|
2014-05-26 17:46:43 +08:00
|
|
|
|
2013-11-28 05:01:41 +08:00
|
|
|
grace_period = [SiteSetting.clean_orphan_uploads_grace_period_hours, 1].max
|
2013-10-14 20:27:41 +08:00
|
|
|
|
|
|
|
Upload.where("created_at < ?", grace_period.hour.ago)
|
2014-05-26 17:46:43 +08:00
|
|
|
.where("id NOT IN (SELECT upload_id from post_uploads)")
|
|
|
|
.where("id NOT IN (SELECT system_upload_id from post_uploads)")
|
|
|
|
.where("id NOT IN (SELECT custom_upload_id from post_uploads)")
|
|
|
|
.where("id NOT IN (SELECT gravatar_upload_id from post_uploads)")
|
2014-03-01 04:12:51 +08:00
|
|
|
.where("url NOT IN (?)", uploads_used_as_profile_backgrounds)
|
2013-10-14 20:27:41 +08:00
|
|
|
.find_each do |upload|
|
2013-10-16 16:55:42 +08:00
|
|
|
upload.destroy
|
2013-10-14 20:27:41 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|