]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/ways_controller.rb
Preload tags and members for API index and show operations
[rails.git] / app / controllers / api / ways_controller.rb
1 module Api
2   class WaysController < ApiController
3     before_action :check_api_writable, :only => [:create, :update, :destroy]
4     before_action :authorize, :only => [:create, :update, :destroy]
5
6     authorize_resource
7
8     before_action :require_public_data, :only => [:create, :update, :destroy]
9     before_action :set_request_formats, :except => [:create, :update, :destroy]
10     before_action :check_rate_limit, :only => [:create, :update, :destroy]
11
12     def index
13       raise OSM::APIBadUserInput, "The parameter ways is required, and must be of the form ways=id[,id[,id...]]" unless params["ways"]
14
15       ids = params["ways"].split(",").collect(&:to_i)
16
17       raise OSM::APIBadUserInput, "No ways were given to search for" if ids.empty?
18
19       @ways = Way.includes(:nodes, :element_tags).find(ids)
20
21       # Render the result
22       respond_to do |format|
23         format.xml
24         format.json
25       end
26     end
27
28     def show
29       @way = Way
30       @way = @way.includes(:nodes, :element_tags)
31       @way = @way.includes(:nodes => :element_tags) if params[:full]
32       @way = @way.find(params[:id])
33
34       response.last_modified = @way.timestamp unless params[:full]
35
36       if @way.visible
37         if params[:full]
38           @nodes = []
39
40           @way.nodes.uniq.each do |node|
41             @nodes << node if node.visible
42           end
43         end
44
45         respond_to do |format|
46           format.xml
47           format.json
48         end
49       else
50         head :gone
51       end
52     end
53
54     def create
55       way = Way.from_xml(request.raw_post, :create => true)
56
57       # Assume that Way.from_xml has thrown an exception if there is an error parsing the xml
58       way.create_with_history current_user
59       render :plain => way.id.to_s
60     end
61
62     def update
63       way = Way.find(params[:id])
64       new_way = Way.from_xml(request.raw_post)
65
66       raise OSM::APIBadUserInput, "The id in the url (#{way.id}) is not the same as provided in the xml (#{new_way.id})" unless new_way && new_way.id == way.id
67
68       way.update_from(new_way, current_user)
69       render :plain => way.version.to_s
70     end
71
72     # This is the API call to delete a way
73     def destroy
74       way = Way.find(params[:id])
75       new_way = Way.from_xml(request.raw_post)
76
77       if new_way && new_way.id == way.id
78         way.delete_with_history!(new_way, current_user)
79         render :plain => way.version.to_s
80       else
81         head :bad_request
82       end
83     end
84   end
85 end