]> git.openstreetmap.org Git - rails.git/blob - app/controllers/relation_controller.rb
Reposition the note and user report flags
[rails.git] / app / controllers / relation_controller.rb
1 class RelationController < ApplicationController
2   require "xml/libxml"
3
4   skip_before_action :verify_authenticity_token
5   before_action :authorize, :only => [:create, :update, :delete]
6   before_action :require_allow_write_api, :only => [:create, :update, :delete]
7   before_action :require_public_data, :only => [:create, :update, :delete]
8   before_action :check_api_writable, :only => [:create, :update, :delete]
9   before_action :check_api_readable, :except => [:create, :update, :delete]
10   around_action :api_call_handle_error, :api_call_timeout
11
12   def create
13     assert_method :put
14
15     relation = Relation.from_xml(request.raw_post, true)
16
17     # Assume that Relation.from_xml has thrown an exception if there is an error parsing the xml
18     relation.create_with_history current_user
19     render :plain => relation.id.to_s
20   end
21
22   def read
23     relation = Relation.find(params[:id])
24     response.last_modified = relation.timestamp
25     if relation.visible
26       render :xml => relation.to_xml.to_s
27     else
28       head :gone
29     end
30   end
31
32   def update
33     logger.debug request.raw_post
34
35     relation = Relation.find(params[:id])
36     new_relation = Relation.from_xml(request.raw_post)
37
38     unless new_relation && new_relation.id == relation.id
39       raise OSM::APIBadUserInput, "The id in the url (#{relation.id}) is not the same as provided in the xml (#{new_relation.id})"
40     end
41
42     relation.update_from new_relation, current_user
43     render :plain => relation.version.to_s
44   end
45
46   def delete
47     relation = Relation.find(params[:id])
48     new_relation = Relation.from_xml(request.raw_post)
49     if new_relation && new_relation.id == relation.id
50       relation.delete_with_history!(new_relation, current_user)
51       render :plain => relation.version.to_s
52     else
53       head :bad_request
54     end
55   end
56
57   # -----------------------------------------------------------------
58   # full
59   #
60   # input parameters: id
61   #
62   # returns XML representation of one relation object plus all its
63   # members, plus all nodes part of member ways
64   # -----------------------------------------------------------------
65   def full
66     relation = Relation.find(params[:id])
67
68     if relation.visible
69
70       # first find the ids of nodes, ways and relations referenced by this
71       # relation - note that we exclude this relation just in case.
72
73       node_ids = relation.members.select { |m| m[0] == "Node" }.map { |m| m[1] }
74       way_ids = relation.members.select { |m| m[0] == "Way" }.map { |m| m[1] }
75       relation_ids = relation.members.select { |m| m[0] == "Relation" && m[1] != relation.id }.map { |m| m[1] }
76
77       # next load the relations and the ways.
78
79       relations = Relation.where(:id => relation_ids).includes(:relation_tags)
80       ways = Way.where(:id => way_ids).includes(:way_nodes, :way_tags)
81
82       # now additionally collect nodes referenced by ways. Note how we
83       # recursively evaluate ways but NOT relations.
84
85       way_node_ids = ways.collect do |way|
86         way.way_nodes.collect(&:node_id)
87       end
88       node_ids += way_node_ids.flatten
89       nodes = Node.where(:id => node_ids.uniq).includes(:node_tags)
90
91       # create XML.
92       doc = OSM::API.new.get_xml_doc
93       visible_nodes = {}
94       changeset_cache = {}
95       user_display_name_cache = {}
96
97       nodes.each do |node|
98         next unless node.visible? # should be unnecessary if data is consistent.
99
100         doc.root << node.to_xml_node(changeset_cache, user_display_name_cache)
101         visible_nodes[node.id] = node
102       end
103
104       ways.each do |way|
105         next unless way.visible? # should be unnecessary if data is consistent.
106
107         doc.root << way.to_xml_node(visible_nodes, changeset_cache, user_display_name_cache)
108       end
109
110       relations.each do |rel|
111         next unless rel.visible? # should be unnecessary if data is consistent.
112
113         doc.root << rel.to_xml_node(changeset_cache, user_display_name_cache)
114       end
115
116       # finally add self and output
117       doc.root << relation.to_xml_node(changeset_cache, user_display_name_cache)
118       render :xml => doc.to_s
119
120     else
121       head :gone
122     end
123   end
124
125   def relations
126     unless params["relations"]
127       raise OSM::APIBadUserInput, "The parameter relations is required, and must be of the form relations=id[,id[,id...]]"
128     end
129
130     ids = params["relations"].split(",").collect(&:to_i)
131
132     if ids.empty?
133       raise OSM::APIBadUserInput, "No relations were given to search for"
134     end
135
136     doc = OSM::API.new.get_xml_doc
137
138     Relation.find(ids).each do |relation|
139       doc.root << relation.to_xml_node
140     end
141
142     render :xml => doc.to_s
143   end
144
145   def relations_for_way
146     relations_for_object("Way")
147   end
148
149   def relations_for_node
150     relations_for_object("Node")
151   end
152
153   def relations_for_relation
154     relations_for_object("Relation")
155   end
156
157   def relations_for_object(objtype)
158     relationids = RelationMember.where(:member_type => objtype, :member_id => params[:id]).collect(&:relation_id).uniq
159
160     doc = OSM::API.new.get_xml_doc
161
162     Relation.find(relationids).each do |relation|
163       doc.root << relation.to_xml_node if relation.visible
164     end
165
166     render :xml => doc.to_s
167   end
168 end