From: Andy Allan Date: Sun, 25 Feb 2024 10:35:20 +0000 (+0100) Subject: Merge pull request #4536 from tomhughes/trace-size-limit X-Git-Tag: live~1144 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/2dfe6f3f2e911101f4e4e3b90a00e2ae97725d04?ds=inline;hp=-c Merge pull request #4536 from tomhughes/trace-size-limit Add a limit on the number of points in a GPS trace --- 2dfe6f3f2e911101f4e4e3b90a00e2ae97725d04 diff --combined app/models/trace.rb index 1e8f25a83,3ab25ce30..818cc363b --- a/app/models/trace.rb +++ b/app/models/trace.rb @@@ -202,7 -202,7 +202,7 @@@ class Trace < ApplicationRecor logger.info("GPX Import importing #{name} (#{id}) from #{user.email}") file.open do |file| - gpx = GPX::File.new(file.path) + gpx = GPX::File.new(file.path, :maximum_points => Settings.max_trace_size) f_lat = 0 f_lon = 0 @@@ -267,14 -267,6 +267,14 @@@ end end + def schedule_import + TraceImporterJob.new(self).enqueue(:priority => user.traces.where(:inserted => false).count) + end + + def schedule_destruction + TraceDestroyerJob.perform_later(self) + end + private def content_type(file)