X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/75a49786f8bcb76715cf4009ba807a844baae282..ba503e02d205e132881f7cd860d160c9562fb1b1:/app/controllers/api/nodes_controller.rb diff --git a/app/controllers/api/nodes_controller.rb b/app/controllers/api/nodes_controller.rb index 1827603a7..fb808828c 100644 --- a/app/controllers/api/nodes_controller.rb +++ b/app/controllers/api/nodes_controller.rb @@ -4,31 +4,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 :default_format_xml + before_action :set_request_formats, :except => [:create, :update, :delete] + before_action :check_rate_limit, :only => [:create, :update, :delete] - # Set format to xml unless client requires a specific format - def default_format_xml - request.format = "xml" unless params[:format] - 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"] - # Create a node from XML. - def create - assert_method :put + ids = params["nodes"].split(",").collect(&:to_i) - node = Node.from_xml(request.raw_post, true) + raise OSM::APIBadUserInput, "No nodes were given to search for" if ids.empty? - # 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 + @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] @@ -48,6 +50,17 @@ module Api end end + # Create a node from XML. + def create + assert_method :put + + 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]) @@ -71,22 +84,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