discourse/app/jobs/scheduled/clean_up_uploads.rb

26 lines
960 B
Ruby
Raw Normal View History

2013-10-14 08:27:41 -04:00
module Jobs
class CleanUpUploads < Jobs::Scheduled
every 1.hour
2013-10-14 08:27:41 -04:00
def execute(args)
return unless SiteSetting.clean_up_uploads?
2013-10-14 08:27:41 -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)
.where("retain_hours IS NULL OR created_at < current_timestamp - interval '1 hour' * retain_hours")
.where("id NOT IN (SELECT upload_id FROM post_uploads)")
.where("id NOT IN (SELECT uploaded_avatar_id FROM users)")
.where("id NOT IN (SELECT gravatar_upload_id FROM user_avatars)")
.where("url NOT IN (SELECT profile_background FROM user_profiles)")
.where("url NOT IN (SELECT card_background FROM user_profiles)")
.where("url NOT IN (SELECT logo_url FROM categories)")
.where("url NOT IN (SELECT background_url FROM categories)")
.destroy_all
2013-10-14 08:27:41 -04:00
end
end
end