]> git.openstreetmap.org Git - rails.git/blob - app/controllers/way_controller.rb
split_node_tags: Merge changes in main branch up to r7649.
[rails.git] / app / controllers / way_controller.rb
1 class WayController < ApplicationController
2   require 'xml/libxml'
3
4   session :off
5   before_filter :authorize, :only => [:create, :update, :delete]
6   before_filter :check_write_availability, :only => [:create, :update, :delete]
7   before_filter :check_read_availability, :except => [:create, :update, :delete]
8   after_filter :compress_output
9
10   def create
11     if request.put?
12       way = Way.from_xml(request.raw_post, true)
13
14       if way
15         if !way.preconditions_ok?
16           render :text => "", :status => :precondition_failed
17         else
18           way.version = 0
19           way.user_id = @user.id
20           way.save_with_history!
21
22           render :text => way.id.to_s, :content_type => "text/plain"
23         end
24       else
25         render :nothing => true, :status => :bad_request
26       end
27     else
28       render :nothing => true, :status => :method_not_allowed
29     end
30   end
31
32   def read
33     begin
34       way = Way.find(params[:id])
35
36       response.headers['Last-Modified'] = way.timestamp.rfc822
37
38       if way.visible
39         render :text => way.to_xml.to_s, :content_type => "text/xml"
40       else
41         render :text => "", :status => :gone
42       end
43     rescue ActiveRecord::RecordNotFound
44       render :nothing => true, :status => :not_found
45     end
46   end
47
48   def update
49     begin
50       way = Way.find(params[:id])
51       new_way = Way.from_xml(request.raw_post)
52
53       if new_way and new_way.id == way.id
54         if !new_way.preconditions_ok?
55           render :text => "", :status => :precondition_failed
56         else
57           way.user_id = @user.id
58           way.tags = new_way.tags
59           way.nds = new_way.nds
60           way.visible = true
61           way.save_with_history!
62
63           render :nothing => true
64         end
65       else
66         render :nothing => true, :status => :bad_request
67       end
68     rescue ActiveRecord::RecordNotFound
69       render :nothing => true, :status => :not_found
70     end
71   end
72
73   # This is the API call to delete a way
74   def delete
75     begin
76       way = Way.find(params[:id])
77       way.delete_with_relations_and_history(@user)
78
79       # if we get here, all is fine, otherwise something will catch below.  
80       render :nothing => true
81     rescue OSM::APIAlreadyDeletedError
82       render :text => "", :status => :gone
83     rescue OSM::APIPreconditionFailedError
84       render :text => "", :status => :precondition_failed
85     rescue ActiveRecord::RecordNotFound
86       render :nothing => true, :status => :not_found
87     end
88   end
89
90   def full
91     begin
92       way = Way.find(params[:id])
93
94       if way.visible
95         nd_ids = way.nds + [-1]
96         nodes = Node.find(:all, :conditions => "visible = 1 AND id IN (#{nd_ids.join(',')})")
97
98         # Render
99         doc = OSM::API.new.get_xml_doc
100         nodes.each do |node|
101           doc.root << node.to_xml_node()
102         end
103         doc.root << way.to_xml_node()
104
105         render :text => doc.to_s, :content_type => "text/xml"
106       else
107         render :text => "", :status => :gone
108       end
109     rescue ActiveRecord::RecordNotFound
110       render :nothing => true, :status => :not_found
111     end
112   end
113
114   def ways
115     begin
116       ids = params['ways'].split(',').collect { |w| w.to_i }
117     rescue
118       ids = []
119     end
120
121     if ids.length > 0
122       doc = OSM::API.new.get_xml_doc
123
124       Way.find(ids).each do |way|
125         doc.root << way.to_xml_node
126       end
127
128       render :text => doc.to_s, :content_type => "text/xml"
129     else
130       render :nothing => true, :status => :bad_request
131     end
132   end
133
134   def ways_for_node
135     wayids = WayNode.find(:all, :conditions => ['node_id = ?', params[:id]]).collect { |ws| ws.id[0] }.uniq
136
137     doc = OSM::API.new.get_xml_doc
138
139     Way.find(wayids).each do |way|
140       doc.root << way.to_xml_node
141     end
142
143     render :text => doc.to_s, :content_type => "text/xml"
144   end
145 end