- def import
- begin
- logger.info("GPX Import importing #{name} (#{id}) from #{user.email}")
-
- # TODO *nix specific, could do to work on windows... would be functionally inferior though - check for '.gz'
- filetype = `file -bz #{trace_name}`.chomp
- gzipped = filetype =~ /gzip compressed/
- bzipped = filetype =~ /bzip2 compressed/
- zipped = filetype =~ /Zip archive/
- tarred = filetype =~ /tar archive/
-
- if tarred and gzipped then
- filename = tempfile = "/tmp/#{rand}"
- system("tar -zxOf #{trace_name} > #{filename}")
- elsif tarred and bzipped then
- filename = tempfile = "/tmp/#{rand}"
- system("tar -jxOf #{trace_name} > #{filename}")
- elsif tarred
- filename = tempfile = "/tmp/#{rand}"
- system("tar -xOf #{trace_name} > #{filename}")
- elsif gzipped
- filename = tempfile = "/tmp/#{rand}"
- system("gunzip -c #{trace_name} > #{filename}")
- elsif bzipped
- filename = tempfile = "/tmp/#{rand}"
- system("bunzip2 -c #{trace_name} > #{filename}")
- elsif zipped
- filename = tempfile = "/tmp/#{rand}"
- system("unzip -p #{trace_name} > #{filename}")
+ def update_from_xml_node(pt, create: false)
+ raise OSM::APIBadXMLError.new("trace", pt, "visibility missing") if pt["visibility"].nil?
+
+ self.visibility = pt["visibility"]
+
+ unless create
+ raise OSM::APIBadXMLError.new("trace", pt, "ID is required when updating.") if pt["id"].nil?
+
+ id = pt["id"].to_i
+ # .to_i will return 0 if there is no number that can be parsed.
+ # We want to make sure that there is no id with zero anyway
+ raise OSM::APIBadUserInput, "ID of trace cannot be zero when updating." if id.zero?
+ raise OSM::APIBadUserInput, "The id in the url (#{self.id}) is not the same as provided in the xml (#{id})" unless self.id == id
+ end
+
+ # We don't care about the time, as it is explicitly set on create/update/delete
+ # We don't care about the visibility as it is implicit based on the action
+ # and set manually before the actual delete
+ self.visible = true
+
+ description = pt.find("description").first
+ raise OSM::APIBadXMLError.new("trace", pt, "description missing") if description.nil?
+
+ self.description = description.content
+
+ self.tags = pt.find("tag").collect do |tag|
+ Tracetag.new(:tag => tag.content)
+ end
+ end
+
+ def xml_file
+ file.open do |tracefile|
+ filetype = Open3.capture2("/usr/bin/file", "-Lbz", tracefile.path).first.chomp
+ gzipped = filetype.include?("gzip compressed")
+ bzipped = filetype.include?("bzip2 compressed")
+ zipped = filetype.include?("Zip archive")
+ tarred = filetype.include?("tar archive")
+
+ if gzipped || bzipped || zipped || tarred
+ file = Tempfile.new("trace.#{id}")
+
+ if tarred && gzipped
+ system("tar", "-zxOf", tracefile.path, :out => file.path)
+ elsif tarred && bzipped
+ system("tar", "-jxOf", tracefile.path, :out => file.path)
+ elsif tarred
+ system("tar", "-xOf", tracefile.path, :out => file.path)
+ elsif gzipped
+ system("gunzip", "-c", tracefile.path, :out => file.path)
+ elsif bzipped
+ system("bunzip2", "-c", tracefile.path, :out => file.path)
+ elsif zipped
+ system("unzip", "-p", tracefile.path, "-x", "__MACOSX/*", :out => file.path, :err => "/dev/null")
+ end
+
+ file.unlink