FEATURE: new site setting download_remote_images_max_days_old

This commit is contained in:
Arpit Jalan
2016-07-06 19:21:48 +05:30
parent d4f3fc2b11
commit 2facb6190f
4 changed files with 37 additions and 2 deletions

View File

@@ -347,6 +347,8 @@ class CookedPostProcessor
return unless SiteSetting.download_remote_images_to_local?
# have we enough disk space?
return if disable_if_low_on_disk_space
# don't download remote images for posts that are more than n days old
return unless @post.created_at > (Date.today - SiteSetting.download_remote_images_max_days_old)
# we only want to run the job whenever it's changed by a user
return if @post.last_editor_id == Discourse.system_user.id
# make sure no other job is scheduled