2016-04-07 15:31:32 -04:00
module Jobs
2016-09-01 23:32:51 -04:00
class MigrateUploadScheme < Jobs :: Scheduled
every 10 . minutes
sidekiq_options retry : false
2016-04-07 15:31:32 -04:00
2016-09-01 23:32:51 -04:00
def execute ( args )
2016-04-07 15:31:32 -04:00
return unless SiteSetting . migrate_to_new_scheme
# clean up failed uploads
Upload . where ( " created_at < ? " , 1 . hour . ago )
2017-07-27 21:20:09 -04:00
. where ( " LENGTH(COALESCE(url, '')) = 0 " )
. destroy_all
2016-04-07 15:31:32 -04:00
# migrate uploads to new scheme
2016-09-01 23:32:51 -04:00
problems = Upload . migrate_to_new_scheme ( 50 )
2016-04-07 15:31:32 -04:00
problems . each do | hash |
upload_id = hash [ :upload ] . id
Discourse . handle_job_exception ( hash [ :ex ] , error_context ( args , " Migrating upload id #{ upload_id } " , upload_id : upload_id ) )
end
# clean up failed optimized images
OptimizedImage . where ( " LENGTH(COALESCE(url, '')) = 0 " ) . destroy_all
# Clean up orphan optimized images
OptimizedImage . where ( " upload_id NOT IN (SELECT id FROM uploads) " ) . destroy_all
# migrate optimized_images to new scheme
2016-09-01 23:32:51 -04:00
problems = OptimizedImage . migrate_to_new_scheme ( 50 )
2016-04-07 15:31:32 -04:00
problems . each do | hash |
optimized_image_id = hash [ :optimized_image ] . id
Discourse . handle_job_exception ( hash [ :ex ] , error_context ( args , " Migrating optimized_image id #{ optimized_image_id } " , optimized_image_id : optimized_image_id ) )
end
end
end
end