]> git.openstreetmap.org Git - rails.git/blob - app/controllers/geocoder_controller.rb
Add support for logical deletion of diary entries and comments.
[rails.git] / app / controllers / geocoder_controller.rb
1 class GeocoderController < ApplicationController
2   require 'uri'
3   require 'net/http'
4   require 'rexml/document'
5
6   before_filter :authorize_web
7   before_filter :set_locale
8
9   def search
10     @query = params[:query]
11     @sources = Array.new
12
13     @query.sub(/^\s+/, "")
14     @query.sub(/\s+$/, "")
15
16     if @query.match(/^[+-]?\d+(\.\d*)?\s*[\s,]\s*[+-]?\d+(\.\d*)?$/)
17       @sources.push "latlon"
18     elsif @query.match(/^\d{5}(-\d{4})?$/)
19       @sources.push "us_postcode"
20     elsif @query.match(/^(GIR 0AA|[A-PR-UWYZ]([0-9]{1,2}|([A-HK-Y][0-9]|[A-HK-Y][0-9]([0-9]|[ABEHMNPRV-Y]))|[0-9][A-HJKS-UW])\s*[0-9][ABD-HJLNP-UW-Z]{2})$/i)
21       @sources.push "uk_postcode"
22       @sources.push "osm_nominatim"
23       @sources.push "osm_namefinder"
24     elsif @query.match(/^[A-Z]\d[A-Z]\s*\d[A-Z]\d$/i)
25       @sources.push "ca_postcode"
26     else
27       @sources.push "osm_nominatim"
28       @sources.push "osm_namefinder"
29       @sources.push "geonames"
30     end
31
32     render :update do |page|
33       page.replace_html :sidebar_content, :partial => "search"
34       page.call "openSidebar"
35     end
36   end
37
38   def search_latlon
39     # get query parameters
40     query = params[:query]
41
42     # create result array
43     @results = Array.new
44
45     # decode the location
46     if m = query.match(/^\s*([+-]?\d+(\.\d*)?)\s*[\s,]\s*([+-]?\d+(\.\d*)?)\s*$/)
47       lat = m[1].to_f
48       lon = m[3].to_f
49     end
50
51     # generate results
52     if lat < -90 or lat > 90
53       @error = "Latitude #{lat} out of range"
54       render :action => "error"
55     elsif lon < -180 or lon > 180
56       @error = "Longitude #{lon} out of range"
57       render :action => "error"
58     else
59       @results.push({:lat => lat, :lon => lon,
60                      :zoom => APP_CONFIG['postcode_zoom'],
61                      :name => "#{lat}, #{lon}"})
62
63       render :action => "results"
64     end
65   end
66
67   def search_us_postcode
68     # get query parameters
69     query = params[:query]
70
71     # create result array
72     @results = Array.new
73
74     # ask geocoder.us (they have a non-commercial use api)
75     response = fetch_text("http://rpc.geocoder.us/service/csv?zip=#{escape_query(query)}")
76
77     # parse the response
78     unless response.match(/couldn't find this zip/)
79       data = response.split(/\s*,\s+/) # lat,long,town,state,zip
80       @results.push({:lat => data[0], :lon => data[1],
81                      :zoom => APP_CONFIG['postcode_zoom'],
82                      :prefix => "#{data[2]}, #{data[3]},",
83                      :name => data[4]})
84     end
85
86     render :action => "results"
87   rescue Exception => ex
88     @error = "Error contacting rpc.geocoder.us: #{ex.to_s}"
89     render :action => "error"
90   end
91
92   def search_uk_postcode
93     # get query parameters
94     query = params[:query]
95
96     # create result array
97     @results = Array.new
98
99     # ask npemap.org.uk to do a combined npemap + freethepostcode search
100     response = fetch_text("http://www.npemap.org.uk/cgi/geocoder.fcgi?format=text&postcode=#{escape_query(query)}")
101
102     # parse the response
103     unless response.match(/Error/)
104       dataline = response.split(/\n/)[1]
105       data = dataline.split(/,/) # easting,northing,postcode,lat,long
106       postcode = data[2].gsub(/'/, "")
107       zoom = APP_CONFIG['postcode_zoom'] - postcode.count("#")
108       @results.push({:lat => data[3], :lon => data[4], :zoom => zoom,
109                      :name => postcode})
110     end
111
112     render :action => "results"
113   rescue Exception => ex
114     @error = "Error contacting www.npemap.org.uk: #{ex.to_s}"
115     render :action => "error"
116   end
117
118   def search_ca_postcode
119     # get query parameters
120     query = params[:query]
121     @results = Array.new
122
123     # ask geocoder.ca (note - they have a per-day limit)
124     response = fetch_xml("http://geocoder.ca/?geoit=XML&postal=#{escape_query(query)}")
125
126     # parse the response
127     if response.get_elements("geodata/error").empty?
128       @results.push({:lat => response.get_text("geodata/latt").to_s,
129                      :lon => response.get_text("geodata/longt").to_s,
130                      :zoom => APP_CONFIG['postcode_zoom'],
131                      :name => query.upcase})
132     end
133
134     render :action => "results"
135   rescue Exception => ex
136     @error = "Error contacting geocoder.ca: #{ex.to_s}"
137     render :action => "error"
138   end
139
140   def search_osm_namefinder
141     # get query parameters
142     query = params[:query]
143
144     # create result array
145     @results = Array.new
146
147     # ask OSM namefinder
148     response = fetch_xml("http://gazetteer.openstreetmap.org/namefinder/search.xml?find=#{escape_query(query)}")
149
150     # parse the response
151     response.elements.each("searchresults/named") do |named|
152       lat = named.attributes["lat"].to_s
153       lon = named.attributes["lon"].to_s
154       zoom = named.attributes["zoom"].to_s
155       place = named.elements["place/named"] || named.elements["nearestplaces/named"]
156       type = named.attributes["info"].to_s.capitalize
157       name = named.attributes["name"].to_s
158       description = named.elements["description"].to_s
159
160       if name.empty?
161         prefix = ""
162         name = type
163       else
164         prefix =  t "geocoder.search_osm_namefinder.prefix", :type => type
165       end
166
167       if place
168         distance = format_distance(place.attributes["approxdistance"].to_i)
169         direction = format_direction(place.attributes["direction"].to_i)
170         placename = format_name(place.attributes["name"].to_s)
171         suffix = t "geocoder.search_osm_namefinder.suffix_place", :distance => distance, :direction => direction, :placename => placename
172
173         if place.attributes["rank"].to_i <= 30
174           parent = nil
175           parentrank = 0
176           parentscore = 0
177
178           place.elements.each("nearestplaces/named") do |nearest|
179             nearestrank = nearest.attributes["rank"].to_i
180             nearestscore = nearestrank / nearest.attributes["distance"].to_f
181
182             if nearestrank > 30 and
183                ( nearestscore > parentscore or
184                  ( nearestscore == parentscore and nearestrank > parentrank ) )
185               parent = nearest
186               parentrank = nearestrank
187               parentscore = nearestscore
188             end
189           end
190
191           if parent
192             parentname = format_name(parent.attributes["name"].to_s)
193
194             if  place.attributes["info"].to_s == "suburb"
195               suffix = t "geocoder.search_osm_namefinder.suffix_suburb", :suffix => suffix, :parentname => parentname
196             else
197               parentdistance = format_distance(parent.attributes["approxdistance"].to_i)
198               parentdirection = format_direction(parent.attributes["direction"].to_i)
199               suffix = t "geocoder.search_osm_namefinder.suffix_parent", :suffix => suffix, :parentdistance => parentdistance, :parentdirection => parentdirection, :parentname => parentname
200             end
201           end
202         end
203       else
204         suffix = ""
205       end
206
207       @results.push({:lat => lat, :lon => lon, :zoom => zoom,
208                      :prefix => prefix, :name => name, :suffix => suffix,
209                      :description => description})
210     end
211
212     render :action => "results"
213   rescue Exception => ex
214     @error = "Error contacting gazetteer.openstreetmap.org: #{ex.to_s}"
215     render :action => "error"
216   end
217
218   def search_osm_nominatim
219     # get query parameters
220     query = params[:query]
221     minlon = params[:minlon]
222     minlat = params[:minlat]
223     maxlon = params[:maxlon]
224     maxlat = params[:maxlat]
225
226     # get view box
227     if minlon && minlat && maxlon && maxlat
228       viewbox = "&viewbox=#{minlon},#{maxlat},#{maxlon},#{minlat}"
229     end
230
231     # create result array
232     @results = Array.new
233
234     # ask nominatim
235     response = fetch_xml("http://nominatim.openstreetmap.org/search?format=xml&q=#{escape_query(query)}#{viewbox}&accept-language=#{request.user_preferred_languages.join(',')}")
236
237     # parse the response
238     response.elements.each("searchresults/place") do |place|
239       lat = place.attributes["lat"].to_s
240       lon = place.attributes["lon"].to_s
241       klass = place.attributes["class"].to_s
242       type = place.attributes["type"].to_s.gsub("_", " ")
243       name = place.attributes["display_name"].to_s
244       min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",")
245
246       if klass == "highway" and ["trunk","primary","secondary","tertiary","unclassified","residential"].include?(type)
247         prefix = t 'geocoder.search_osm_nominatim.prefix_highway', :type => type.capitalize
248       else
249         prefix = t 'geocoder.search_osm_nominatim.prefix_other', :type => type.capitalize
250       end
251
252       @results.push({:lat => lat, :lon => lon,
253                      :min_lat => min_lat, :max_lat => max_lat,
254                      :min_lon => min_lon, :max_lon => max_lon,
255                      :prefix => prefix, :name => name})
256     end
257
258     render :action => "results"
259   rescue Exception => ex
260     @error = "Error contacting nominatim.openstreetmap.org: #{ex.to_s}"
261     render :action => "error"
262   end
263
264   def search_geonames
265     # get query parameters
266     query = params[:query]
267
268     # create result array
269     @results = Array.new
270
271     # ask geonames.org
272     response = fetch_xml("http://ws.geonames.org/search?q=#{escape_query(query)}&maxRows=20")
273
274     # parse the response
275     response.elements.each("geonames/geoname") do |geoname|
276       lat = geoname.get_text("lat").to_s
277       lon = geoname.get_text("lng").to_s
278       name = geoname.get_text("name").to_s
279       country = geoname.get_text("countryName").to_s
280       @results.push({:lat => lat, :lon => lon,
281                      :zoom => APP_CONFIG['geonames_zoom'],
282                      :name => name,
283                      :suffix => ", #{country}"})
284     end
285
286     render :action => "results"
287   rescue Exception => ex
288     @error = "Error contacting ws.geonames.org: #{ex.to_s}"
289     render :action => "error"
290   end
291
292   def description
293     @sources = Array.new
294
295     @sources.push({ :name => "osm_nominatim" })
296     @sources.push({ :name => "osm_namefinder", :types => "cities", :max => 2 })
297     @sources.push({ :name => "osm_namefinder", :types => "towns", :max => 4 })
298     @sources.push({ :name => "osm_namefinder", :types => "places", :max => 10 })
299     @sources.push({ :name => "geonames" })
300
301     render :update do |page|
302       page.replace_html :sidebar_content, :partial => "description"
303       page.call "openSidebar"
304     end
305   end
306
307   def description_osm_namefinder
308     # get query parameters
309     lat = params[:lat]
310     lon = params[:lon]
311     types = params[:types]
312     max = params[:max]
313
314     # create result array
315     @results = Array.new
316
317     # ask OSM namefinder
318     response = fetch_xml("http://gazetteer.openstreetmap.org/namefinder/search.xml?find=#{types}+near+#{lat},#{lon}&max=#{max}")
319
320     # parse the response
321     response.elements.each("searchresults/named") do |named|
322       lat = named.attributes["lat"].to_s
323       lon = named.attributes["lon"].to_s
324       zoom = named.attributes["zoom"].to_s
325       place = named.elements["place/named"] || named.elements["nearestplaces/named"]
326       type = named.attributes["info"].to_s
327       name = named.attributes["name"].to_s
328       description = named.elements["description"].to_s
329       distance = format_distance(place.attributes["approxdistance"].to_i)
330       direction = format_direction((place.attributes["direction"].to_i - 180) % 360)
331       prefix = t "geocoder.description_osm_namefinder.prefix", :distance => distance, :direction => direction, :type => type
332       @results.push({:lat => lat, :lon => lon, :zoom => zoom,
333                      :prefix => prefix.capitalize, :name => name,
334                      :description => description})
335     end
336
337     render :action => "results"
338   rescue Exception => ex
339     @error = "Error contacting gazetteer.openstreetmap.org: #{ex.to_s}"
340     render :action => "error"
341   end
342
343   def description_osm_nominatim
344     # get query parameters
345     lat = params[:lat]
346     lon = params[:lon]
347     zoom = params[:zoom]
348
349     # create result array
350     @results = Array.new
351
352     # ask OSM namefinder
353     response = fetch_xml("http://nominatim.openstreetmap.org/reverse?lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{request.user_preferred_languages.join(',')}")
354
355     # parse the response
356     response.elements.each("reversegeocode") do |result|
357       description = result.get_text("result").to_s
358
359       @results.push({:prefix => "#{description}"})
360     end
361
362     render :action => "results"
363   rescue Exception => ex
364     @error = "Error contacting nominatim.openstreetmap.org: #{ex.to_s}"
365     render :action => "error"
366   end
367
368   def description_geonames
369     # get query parameters
370     lat = params[:lat]
371     lon = params[:lon]
372
373     # create result array
374     @results = Array.new
375
376     # ask geonames.org
377     response = fetch_xml("http://ws.geonames.org/countrySubdivision?lat=#{lat}&lng=#{lon}")
378
379     # parse the response
380     response.elements.each("geonames/countrySubdivision") do |geoname|
381       name = geoname.get_text("adminName1").to_s
382       country = geoname.get_text("countryName").to_s
383       @results.push({:prefix => "#{name}, #{country}"})
384     end
385
386     render :action => "results"
387   rescue Exception => ex
388     @error = "Error contacting ws.geonames.org: #{ex.to_s}"
389     render :action => "error"
390   end
391
392 private
393
394   def fetch_text(url)
395     return Net::HTTP.get(URI.parse(url))
396   end
397
398   def fetch_xml(url)
399     return REXML::Document.new(fetch_text(url))
400   end
401
402   def format_distance(distance)
403     return t("geocoder.distance", :count => distance)
404   end
405
406   def format_direction(bearing)
407     return t("geocoder.direction.south_west") if bearing >= 22.5 and bearing < 67.5
408     return t("geocoder.direction.south") if bearing >= 67.5 and bearing < 112.5
409     return t("geocoder.direction.south_east") if bearing >= 112.5 and bearing < 157.5
410     return t("geocoder.direction.east") if bearing >= 157.5 and bearing < 202.5
411     return t("geocoder.direction.north_east") if bearing >= 202.5 and bearing < 247.5
412     return t("geocoder.direction.north") if bearing >= 247.5 and bearing < 292.5
413     return t("geocoder.direction.north_west") if bearing >= 292.5 and bearing < 337.5
414     return t("geocoder.direction.west")
415   end
416
417   def format_name(name)
418     return name.gsub(/( *\[[^\]]*\])*$/, "")
419   end
420
421   def count_results(results)
422     count = 0
423
424     results.each do |source|
425       count += source[:results].length if source[:results]
426     end
427
428     return count
429   end
430
431   def escape_query(query)
432     return URI.escape(query, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]", false, 'N'))
433   end
434 end