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]
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
# Create a node from XML.
around_action :api_call_handle_error, :api_call_timeout
# Create a node from XML.
node = Node.from_xml(request.raw_post, true)
# Assume that Node.from_xml has thrown an exception if there is an error parsing the xml
node = Node.from_xml(request.raw_post, true)
# Assume that Node.from_xml has thrown an exception if there is an error parsing the xml
- node.create_with_history @user
- render :text => node.id.to_s, :content_type => "text/plain"
+ node.create_with_history current_user
+ render :plain => node.id.to_s
- node.update_from(new_node, @user)
- render :text => node.version.to_s, :content_type => "text/plain"
+
+ node.update_from(new_node, current_user)
+ render :plain => node.version.to_s
- node.delete_with_history!(new_node, @user)
- render :text => node.version.to_s, :content_type => "text/plain"
+ node.delete_with_history!(new_node, current_user)
+ render :plain => node.version.to_s
- fail OSM::APIBadUserInput.new("The parameter nodes is required, and must be of the form nodes=id[,id[,id...]]")
+ raise OSM::APIBadUserInput, "The parameter nodes is required, and must be of the form nodes=id[,id[,id...]]"