]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/node_controller.rb
New node id is now returned complete
[rails.git] / app / controllers / node_controller.rb
index a5f20acea658e49f2e26f32ac9f186722f6272b8..5cdbca827dffe35287313f6618f329e681c98e38 100644 (file)
@@ -2,161 +2,104 @@ class NodeController < ApplicationController
   require 'xml/libxml'
 
   before_filter :authorize
+  after_filter :compress_output
 
   def create
+    response.headers["Content-Type"] = 'application/xml'
     if request.put?
-      p = XML::Parser.new
-      p.string = request.raw_post
-      doc = p.parse
-
-      doc.find('//osm/node').each do |pt|
-        lat = pt['lat'].to_f
-        lon = pt['lon'].to_f
-        node_id = pt['id'].to_i
-
-        if lat > 90 or lat < -90 or lon > 180 or lon < -180  or node_id != 0
-          render :nothing => true, :status => 400 # BAD REQUEST
-          return
-        end
-
-        tags = []
-
-        pt.find('tag').each do |tag|
-          tags << [tag['k'],tag['v']]
-        end
-        tags = tags.collect { |k,v| "#{k}=#{v}" }.join(';')
-        tags = '' if tags.nil?
-
-        now = Time.now
+      node = nil
+      begin
+        node = Node.from_xml(request.raw_post, true)
+      rescue
+        render :text => "XML didn't parse", :status => 400 # if we got here the doc didnt parse
+        return
+      end
 
-        node = Node.new
-        node.latitude = lat
-        node.longitude = lon
-        node.visible = 1
-        node.tags = tags
-        node.timestamp = now
+      if node
         node.user_id = @user.id
-
-        #FIXME add a node to the old nodes table too
-
-        if node.save
-          render :text => node.id
+        node.visible = 1
+        if node.save_with_history
+          render :text => node.id.to_s
         else
           render :nothing => true, :status => 500
         end
+        return
 
+      else
+        render :nothing => true, :status => 400 # if we got here the doc didnt parse
         return
       end
     end
 
-    render :nothing => true, :status => 400 # if we got here the doc didnt parse
+    render :nothing => true, :status => 500 # something went very wrong
   end
 
   def rest
+    response.headers["Content-Type"] = 'application/xml'
     unless Node.exists?(params[:id])
-      render :nothing => true, :status => 400
+      render :nothing => true, :status => 404
       return
     end
 
     node = Node.find(params[:id])
 
-
     case request.method
+
     when :get
-      doc = XML::Document.new
-
-      doc.encoding = "UTF-8"  
-      root = XML::Node.new 'osm'
-      root['version'] = '0.4'
-      root['generator'] = 'OpenStreetMap server'
-      doc.root = root
-      el1 = XML::Node.new 'node'
-      el1['id'] = node.id.to_s
-      el1['lat'] = node.latitude.to_s
-      el1['lon'] = node.longitude.to_s
-      split_tags(el1, node.tags)
-      el1['visible'] = node.visible.to_s
-      el1['timestamp'] = node.timestamp.xmlschema
-      root << el1
+      unless node
+        render :nothing => true, :status => 500
+        return
+      end
 
-      render :text => doc.to_s
+      unless node.visible
+        render :nothing => true, :status => 410
+        return
+      end
 
-    when :delete
-      #
-      # DELETE
-      #
+      render :text => node.to_xml.to_s
+      return
 
+    when :delete
       if node.visible
         node.visible = 0
-        node.save
+        node.save_with_history
         render :nothing => true
       else
         render :nothing => true, :status => 410
       end
 
     when :put
-      #
-      # PUT
-      #
-
-      p = XML::Parser.new
-      p.string = request.raw_post
-      doc = p.parse
-
-      doc.find('//osm/node').each do |pt|
-        lat = pt['lat'].to_f
-        lon = pt['lon'].to_f
-        node_id = pt['id'].to_i
-
-        if lat > 90 or lat < -90 or lon > 180 or lon < -180  or node_id != params[:id]
-          render :nothing => true, :status => 400
-          return
-        end
-
-        tags = []
+      new_node = Node.from_xml(request.raw_post)
 
-        pt.find('tag').each do |tag|
-          tags << [tag['k'],tag['v']]
-        end
-        tags = tags.collect { |k,v| "#{k}=#{v}" }.join(';')
-        tags = '' if tags.nil?
+      node.timestamp = Time.now
+      node.user_id = @user.id
 
-        now = Time.now
+      node.latitude = new_node.latitude 
+      node.longitude = new_node.longitude
+      node.tags = new_node.tags
 
-        node.latitude = lat
-        node.longitude = lon
-        node.visible = 1
-        node.tags = tags
-        node.timestamp = now
-        node.user_id = @user.id
-
-        #FIXME add a node to the old nodes table too
-
-        if node.save
-          render :text => node.id
-        else
-          render :nothing => true, :status => 500
-        end
+      if node.id == new_node.id and node.save_with_history
+        render :nothing => true, :status => 200
+      else
+        render :nothing => true, :status => 500
       end
+      return
     end
+
   end
 
-  private
-  def split_tags(el, tags)
-    tags.split(';').each do |tag|
-      parts = tag.split('=')
-      key = ''
-      val = ''
-      key = parts[0].strip unless parts[0].nil?
-      val = parts[1].strip unless parts[1].nil?
-      if key != '' && val != ''
-        el2 = Node.new('tag')
-        el2['k'] = key.to_s
-        el2['v'] = val.to_s
-        el << el2
-      end
+  def nodes
+    response.headers["Content-Type"] = 'application/xml'
+    ids = params['nodes'].split(',').collect {|n| n.to_i }
+    if ids.length > 0
+      nodelist = Node.find(ids)
+      doc = get_xml_doc
+      nodelist.each do |node|
+        doc.root << node.to_xml_node
+      end 
+      render :text => doc.to_s
+    else
+      render :nothing => true, :status => 400
     end
   end
-
-
 end