1 class NodeController < ApplicationController
5 before_filter :authorize, :only => [:create, :update, :delete]
6 before_filter :check_write_availability, :only => [:create, :update, :delete]
7 before_filter :check_read_availability, :except => [:create, :update, :delete]
8 after_filter :compress_output
12 node = Node.from_xml(request.raw_post, true)
15 node.user_id = @user.id
17 node.save_with_history!
19 render :text => node.id.to_s, :content_type => "text/plain"
21 render :nothing => true, :status => :bad_request
24 render :nothing => true, :status => :method_not_allowed
30 node = Node.find(params[:id])
33 render :text => node.to_xml.to_s, :content_type => "text/xml"
35 render :text => "", :status => :gone
37 rescue ActiveRecord::RecordNotFound
38 render :nothing => true, :status => :not_found
44 node = Node.find(params[:id])
47 new_node = Node.from_xml(request.raw_post)
49 if new_node and new_node.id == node.id
50 node.user_id = @user.id
51 node.latitude = new_node.latitude
52 node.longitude = new_node.longitude
53 node.tags = new_node.tags
54 node.save_with_history!
56 render :nothing => true
58 render :nothing => true, :status => :bad_request
61 render :text => "", :status => :gone
63 rescue ActiveRecord::RecordNotFound
64 render :nothing => true, :status => :not_found
70 node = Node.find(params[:id])
73 if WayNode.find(:first, :joins => "INNER JOIN current_ways ON current_ways.id = current_way_nodes.id", :conditions => [ "current_ways.visible = 1 AND current_way_nodes.node_id = ?", node.id ])
74 render :text => "", :status => :precondition_failed
75 elsif RelationMember.find(:first, :joins => "INNER JOIN current_relations ON current_relations.id=current_relation_members.id", :conditions => [ "visible = 1 AND member_type='node' and member_id=?", params[:id]])
76 render :text => "", :status => :precondition_failed
78 node.user_id = @user.id
80 node.save_with_history!
82 render :nothing => true
85 render :text => "", :status => :gone
87 rescue ActiveRecord::RecordNotFound
88 render :nothing => true, :status => :not_found
93 ids = params['nodes'].split(',').collect { |n| n.to_i }
96 doc = OSM::API.new.get_xml_doc
98 Node.find(ids).each do |node|
99 doc.root << node.to_xml_node
102 render :text => doc.to_s, :content_type => "text/xml"
104 render :nothing => true, :status => :bad_request