]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api_controller.rb
Added trackpoint serving support to 0.4 API
[rails.git] / app / controllers / api_controller.rb
1 class ApiController < ApplicationController
2
3   before_filter :authorize
4   after_filter :compress_output
5
6   helper :user
7   model :user
8
9   #COUNT is the number of map requests to allow before exiting and starting a new process
10   @@count = COUNT
11
12   def authorize_web
13     @current_user = User.find_by_token(session[:token])
14   end
15
16   # The maximum area you're allowed to request, in square degrees
17   MAX_REQUEST_AREA = 0.25
18
19
20   # Number of GPS trace/trackpoints returned per-page
21   TRACEPOINTS_PER_PAGE = 5000
22   
23   def trackpoints
24     @@count+=1
25     response.headers["Content-Type"] = 'text/xml'
26     #retrieve the page number
27     page = params['page'].to_i
28     unless page
29         page = 0;
30     end
31
32     unless page >= 0
33         report_error("Page number must be greater than or equal to 0")
34         return
35     end
36
37     offset = page * TRACEPOINTS_PER_PAGE
38
39     # Figure out the bbox
40     bbox = params['bbox']
41     unless bbox and bbox.count(',') == 3
42       report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
43       return
44     end
45
46     bbox = bbox.split(',')
47
48     min_lon = bbox[0].to_f
49     min_lat = bbox[1].to_f
50     max_lon = bbox[2].to_f
51     max_lat = bbox[3].to_f
52
53     # check the bbox is sane
54     unless min_lon <= max_lon
55       report_error("The minimum longitude must be less than the maximum longitude, but it wasn't")
56       return
57     end
58     unless min_lat <= max_lat
59       report_error("The minimum latitude must be less than the maximum latitude, but it wasn't")
60       return
61     end
62     unless min_lon >= -180 && min_lat >= -90 && max_lon <= 180 && max_lat <= 90
63       report_error("The latitudes must be between -90 and 90, and longitudes between -180 and 180")
64       return
65     end
66
67     # check the bbox isn't too large
68     requested_area = (max_lat-min_lat)*(max_lon-min_lon)
69     if requested_area > MAX_REQUEST_AREA
70       report_error("The maximum bbox size is " + MAX_REQUEST_AREA.to_s + ", and your request was too large. Either request a smaller area, or use planet.osm")
71       return
72     end
73
74     # integerise
75     min_lat = min_lat * 1000000
76     max_lat = max_lat * 1000000
77     min_lon = min_lon * 1000000
78     max_lon = max_lon * 1000000
79     # get all the points
80     points = Tracepoint.find(:all, :conditions => ['gps_points.latitude > ? AND gps_points.longitude > ? AND gps_points.latitude < ? AND gps_points.longitude < ? AND ( public = 1 OR gpx_files.user_id = ? ) AND visible = 1', min_lat.to_i, min_lon.to_i, max_lat.to_i, max_lon.to_i, @user.id ], :select => "gps_points.*", :joins => "INNER JOIN gpx_files ON gpx_files.id = gpx_id", :offset => offset, :limit => TRACEPOINTS_PER_PAGE, :order => "timestamp DESC" )
81
82     doc = XML::Document.new
83     doc.encoding = 'UTF-8'
84     root = XML::Node.new 'gpx'
85     root['version'] = '1.0'
86     root['creator'] = 'OpenStreetMap.org'
87     root['xmlns'] = "http://www.topografix.com/GPX/1/0/"
88     
89     doc.root = root
90
91     track = XML::Node.new 'trk'
92     doc.root << track
93
94     trkseg = XML::Node.new 'trkseg'
95     track << trkseg
96
97     points.each do |point|
98       trkseg << point.to_xml_node()
99     end
100
101     #exit when we have too many requests
102     if @@count > MAX_COUNT
103       render :text => doc.to_s
104       @@count = COUNT
105       exit!
106     end
107
108     render :text => doc.to_s
109
110   end
111
112   def map
113     @@count+=1
114
115     response.headers["Content-Type"] = 'text/xml'
116     # Figure out the bbox
117     bbox = params['bbox']
118     unless bbox and bbox.count(',') == 3
119       report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
120       return
121     end
122
123     bbox = bbox.split(',')
124
125     min_lon = bbox[0].to_f
126     min_lat = bbox[1].to_f
127     max_lon = bbox[2].to_f
128     max_lat = bbox[3].to_f
129
130     # check the bbox is sane
131     unless min_lon <= max_lon
132       report_error("The minimum longitude must be less than the maximum longitude, but it wasn't")
133       return
134     end
135     unless min_lat <= max_lat
136       report_error("The minimum latitude must be less than the maximum latitude, but it wasn't")
137       return
138     end
139     unless min_lon >= -180 && min_lat >= -90 && max_lon <= 180 && max_lat <= 90
140       report_error("The latitudes must be between -90 and 90, and longitudes between -180 and 180")
141       return
142     end
143
144     # check the bbox isn't too large
145     requested_area = (max_lat-min_lat)*(max_lon-min_lon)
146     if requested_area > MAX_REQUEST_AREA
147       report_error("The maximum bbox size is " + MAX_REQUEST_AREA.to_s + ", and your request was too large. Either request a smaller area, or use planet.osm")
148       return
149     end
150
151     # get all the nodes
152     nodes = Node.find(:all, :conditions => ['latitude > ? AND longitude > ? AND latitude < ? AND longitude < ? AND visible = 1', min_lat, min_lon, max_lat, max_lon])
153
154     node_ids = nodes.collect {|node| node.id }
155
156     # (in the future, we may wish to abort here if we found too many nodes)
157
158     # grab the segments
159     segments = Array.new
160     if node_ids.length > 0
161       node_ids_sql = "(#{node_ids.join(',')})"
162       # get the referenced segments
163       segments = Segment.find_by_sql "select * from current_segments where visible = 1 and (node_a in #{node_ids_sql} or node_b in #{node_ids_sql})"
164     end
165     # see if we have any missing nodes
166     segments_nodes = segments.collect {|segment| segment.node_a }
167     segments_nodes += segments.collect {|segment| segment.node_b }
168
169     segments_nodes.uniq!
170
171     missing_nodes = segments_nodes - node_ids
172
173     # get missing nodes if there are any
174     nodes += Node.find(missing_nodes) if missing_nodes.length > 0
175
176     doc = OSM::API.new.get_xml_doc
177
178     # get ways
179     # find which ways are needed
180     segment_ids = segments.collect {|segment| segment.id }
181     ways = Array.new
182     if segment_ids.length > 0
183       way_segments = WaySegment.find_all_by_segment_id(segment_ids)
184       way_ids = way_segments.collect {|way_segment| way_segment.id }
185       ways = Way.find(way_ids) # NB: doesn't pick up segments, tags from db until accessed via way.way_segments etc.
186     end
187
188     nodes.each do |node|
189       doc.root << node.to_xml_node()
190     end
191
192     segments.each do |segment|
193       doc.root << segment.to_xml_node()
194     end 
195
196     ways.each do |way|
197       doc.root << way.to_xml_node()
198     end 
199
200     render :text => doc.to_s
201     
202     #exit when we have too many requests
203     if @@count > MAX_COUNT
204       render :text => doc.to_s
205       @@count = COUNT
206       exit!
207     end
208
209   end
210 end