openstreetmap-website/app/controllers/node_controller.rb

90 lines
1.9 KiB
Ruby

class NodeController < ApplicationController
require 'xml/libxml'
before_filter :authorize
def create
response.headers["Content-Type"] = 'application/xml'
if request.put?
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
if node
node.user_id = @user.id
node.visible = 1
if node.save_with_history
render :text => node.id
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 => 500 # something went very wrong
end
def rest
response.headers["Content-Type"] = 'application/xml'
unless Node.exists?(params[:id])
render :nothing => true, :status => 404
return
end
node = Node.find(params[:id])
case request.method
when :get
unless node
render :nothing => true, :status => 500
return
end
unless node.visible
render :nothing => true, :status => 410
return
end
render :text => node.to_xml.to_s
return
when :delete
if node.visible
node.visible = 0
node.save_with_history
render :nothing => true
else
render :nothing => true, :status => 410
end
when :put
new_node = Node.from_xml(request.raw_post)
node.timestamp = Time.now
node.user_id = @user.id
node.latitude = new_node.latitude
node.longitude = new_node.longitude
node.tags = new_node.tags
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
end