]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/ways_controller.rb
Merge pull request #2266 from systemed/patch-2
[rails.git] / app / controllers / api / ways_controller.rb
1 module Api
2   class WaysController < ApiController
3     require "xml/libxml"
4
5     before_action :authorize, :only => [:create, :update, :delete]
6
7     authorize_resource
8
9     before_action :require_public_data, :only => [:create, :update, :delete]
10     before_action :check_api_writable, :only => [:create, :update, :delete]
11     before_action :check_api_readable, :except => [:create, :update, :delete]
12     around_action :api_call_handle_error, :api_call_timeout
13
14     def create
15       assert_method :put
16
17       way = Way.from_xml(request.raw_post, true)
18
19       # Assume that Way.from_xml has thrown an exception if there is an error parsing the xml
20       way.create_with_history current_user
21       render :plain => way.id.to_s
22     end
23
24     def show
25       @way = Way.find(params[:id])
26
27       response.last_modified = @way.timestamp
28
29       if @way.visible
30         # Render the result
31         render :formats => [:xml]
32       else
33         head :gone
34       end
35     end
36
37     def update
38       way = Way.find(params[:id])
39       new_way = Way.from_xml(request.raw_post)
40
41       unless new_way && new_way.id == way.id
42         raise OSM::APIBadUserInput, "The id in the url (#{way.id}) is not the same as provided in the xml (#{new_way.id})"
43       end
44
45       way.update_from(new_way, current_user)
46       render :plain => way.version.to_s
47     end
48
49     # This is the API call to delete a way
50     def delete
51       way = Way.find(params[:id])
52       new_way = Way.from_xml(request.raw_post)
53
54       if new_way && new_way.id == way.id
55         way.delete_with_history!(new_way, current_user)
56         render :plain => way.version.to_s
57       else
58         head :bad_request
59       end
60     end
61
62     def full
63       @way = Way.includes(:nodes => :node_tags).find(params[:id])
64
65       if @way.visible
66         visible_nodes = {}
67
68         @nodes = []
69
70         @way.nodes.uniq.each do |node|
71           if node.visible
72             @nodes << node
73             visible_nodes[node.id] = node
74           end
75         end
76
77         # Render the result
78         render :formats => [:xml]
79       else
80         head :gone
81       end
82     end
83
84     def index
85       unless params["ways"]
86         raise OSM::APIBadUserInput, "The parameter ways is required, and must be of the form ways=id[,id[,id...]]"
87       end
88
89       ids = params["ways"].split(",").collect(&:to_i)
90
91       raise OSM::APIBadUserInput, "No ways were given to search for" if ids.empty?
92
93       @ways = Way.find(ids)
94
95       # Render the result
96       render :formats => [:xml]
97     end
98
99     ##
100     # returns all the ways which are currently using the node given in the
101     # :id parameter. note that this used to return deleted ways as well, but
102     # this seemed not to be the expected behaviour, so it was removed.
103     def ways_for_node
104       wayids = WayNode.where(:node_id => params[:id]).collect { |ws| ws.id[0] }.uniq
105
106       @ways = Way.where(:id => wayids, :visible => true)
107
108       # Render the result
109       render :formats => [:xml]
110     end
111   end
112 end