]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/nodes_controller.rb
Merge branch 'master' into patch/view_migration
[rails.git] / app / controllers / api / nodes_controller.rb
1 # The NodeController is the RESTful interface to Node objects
2
3 module Api
4   class NodesController < ApiController
5     require "xml/libxml"
6
7     before_action :authorize, :only => [:create, :update, :delete]
8
9     authorize_resource
10
11     before_action :require_public_data, :only => [:create, :update, :delete]
12     before_action :check_api_writable, :only => [:create, :update, :delete]
13     before_action :check_api_readable, :except => [:create, :update, :delete]
14     around_action :api_call_handle_error, :api_call_timeout
15
16     # Create a node from XML.
17     def create
18       assert_method :put
19
20       node = Node.from_xml(request.raw_post, true)
21
22       # Assume that Node.from_xml has thrown an exception if there is an error parsing the xml
23       node.create_with_history current_user
24       render :plain => node.id.to_s
25     end
26
27     # Dump the details on a node given in params[:id]
28     def show
29       @node = Node.find(params[:id])
30
31       response.last_modified = @node.timestamp
32
33       if @node.visible
34         # Render the result
35         respond_to do |format|
36           format.xml
37         end
38       else
39         head :gone
40       end
41     end
42
43     # Update a node from given XML
44     def update
45       node = Node.find(params[:id])
46       new_node = Node.from_xml(request.raw_post)
47
48       raise OSM::APIBadUserInput, "The id in the url (#{node.id}) is not the same as provided in the xml (#{new_node.id})" unless new_node && new_node.id == node.id
49
50       node.update_from(new_node, current_user)
51       render :plain => node.version.to_s
52     end
53
54     # Delete a node. Doesn't actually delete it, but retains its history
55     # in a wiki-like way. We therefore treat it like an update, so the delete
56     # method returns the new version number.
57     def delete
58       node = Node.find(params[:id])
59       new_node = Node.from_xml(request.raw_post)
60
61       raise OSM::APIBadUserInput, "The id in the url (#{node.id}) is not the same as provided in the xml (#{new_node.id})" unless new_node && new_node.id == node.id
62
63       node.delete_with_history!(new_node, current_user)
64       render :plain => node.version.to_s
65     end
66
67     # Dump the details on many nodes whose ids are given in the "nodes" parameter.
68     def index
69       raise OSM::APIBadUserInput, "The parameter nodes is required, and must be of the form nodes=id[,id[,id...]]" unless params["nodes"]
70
71       ids = params["nodes"].split(",").collect(&:to_i)
72
73       raise OSM::APIBadUserInput, "No nodes were given to search for" if ids.empty?
74
75       @nodes = Node.find(ids)
76
77       # Render the result
78       respond_to do |format|
79         format.xml
80       end
81     end
82   end
83 end