X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/92ca4069957666065194e0b63de5b46261b8a21d..fba552873173064c24a3d1eeceb64d3a9162139e:/app/controllers/api/nodes_controller.rb diff --git a/app/controllers/api/nodes_controller.rb b/app/controllers/api/nodes_controller.rb index 9204d96c0..dc7d04dc5 100644 --- a/app/controllers/api/nodes_controller.rb +++ b/app/controllers/api/nodes_controller.rb @@ -2,28 +2,33 @@ module Api class NodesController < ApiController - require "xml/libxml" - + before_action :check_api_writable, :only => [:create, :update, :delete] + before_action :check_api_readable, :except => [:create, :update, :delete] before_action :authorize, :only => [:create, :update, :delete] authorize_resource before_action :require_public_data, :only => [:create, :update, :delete] - before_action :check_api_writable, :only => [:create, :update, :delete] - before_action :check_api_readable, :except => [:create, :update, :delete] around_action :api_call_handle_error, :api_call_timeout before_action :set_request_formats, :except => [:create, :update, :delete] + before_action :check_rate_limit, :only => [:create, :update, :delete] - # Create a node from XML. - def create - assert_method :put + # Dump the details on many nodes whose ids are given in the "nodes" parameter. + def index + raise OSM::APIBadUserInput, "The parameter nodes is required, and must be of the form nodes=id[,id[,id...]]" unless params["nodes"] - node = Node.from_xml(request.raw_post, true) + ids = params["nodes"].split(",").collect(&:to_i) - # Assume that Node.from_xml has thrown an exception if there is an error parsing the xml - node.create_with_history current_user - render :plain => node.id.to_s + raise OSM::APIBadUserInput, "No nodes were given to search for" if ids.empty? + + @nodes = Node.find(ids) + + # Render the result + respond_to do |format| + format.xml + format.json + end end # Dump the details on a node given in params[:id] @@ -43,6 +48,15 @@ module Api end end + # Create a node from XML. + def create + node = Node.from_xml(request.raw_post, :create => true) + + # Assume that Node.from_xml has thrown an exception if there is an error parsing the xml + node.create_with_history current_user + render :plain => node.id.to_s + end + # Update a node from given XML def update node = Node.find(params[:id]) @@ -66,22 +80,5 @@ module Api node.delete_with_history!(new_node, current_user) render :plain => node.version.to_s end - - # Dump the details on many nodes whose ids are given in the "nodes" parameter. - def index - raise OSM::APIBadUserInput, "The parameter nodes is required, and must be of the form nodes=id[,id[,id...]]" unless params["nodes"] - - ids = params["nodes"].split(",").collect(&:to_i) - - raise OSM::APIBadUserInput, "No nodes were given to search for" if ids.empty? - - @nodes = Node.find(ids) - - # Render the result - respond_to do |format| - format.xml - format.json - end - end end end