]> git.openstreetmap.org Git - rails.git/blob - app/controllers/geocoder_controller.rb
Merge remote-tracking branch 'upstream/pull/4895'
[rails.git] / app / controllers / geocoder_controller.rb
1 class GeocoderController < ApplicationController
2   require "cgi"
3   require "uri"
4   require "rexml/document"
5
6   before_action :authorize_web
7   before_action :set_locale
8   before_action :require_oauth, :only => [:search]
9   authorize_resource :class => false
10
11   def search
12     @params = normalize_params
13     @sources = []
14
15     if @params[:lat] && @params[:lon]
16       @sources.push({ :name => "latlon", :parameters => "" })
17       @sources.push({ :name => "osm_nominatim_reverse", :parameters => "reverse?format=html&#{nominatim_reverse_url_parameters}" })
18     elsif @params[:query]
19       @sources.push({ :name => "osm_nominatim", :parameters => "search?format=html&#{nominatim_url_parameters}" })
20     end
21
22     if @sources.empty?
23       head :bad_request
24     else
25       render :layout => map_layout
26     end
27   end
28
29   def search_latlon
30     lat = params[:lat].to_f
31     lon = params[:lon].to_f
32
33     if params[:latlon_digits]
34       # We've got two nondescript numbers for a query, which can mean both "lat, lon" or "lon, lat".
35       @results = []
36
37       if lat >= -90 && lat <= 90 && lon >= -180 && lon <= 180
38         @results.push(:lat => lat, :lon => lon,
39                       :zoom => params[:zoom],
40                       :name => "#{lat}, #{lon}")
41       end
42
43       if lon >= -90 && lon <= 90 && lat >= -180 && lat <= 180
44         @results.push(:lat => lon, :lon => lat,
45                       :zoom => params[:zoom],
46                       :name => "#{lon}, #{lat}")
47       end
48
49       if @results.empty?
50         @error = "Latitude or longitude are out of range"
51         render :action => "error"
52       else
53         render :action => "results"
54       end
55     else
56       # Coordinates in a query have come with markers for latitude and longitude.
57       if lat < -90 || lat > 90
58         @error = "Latitude #{lat} out of range"
59         render :action => "error"
60       elsif lon < -180 || lon > 180
61         @error = "Longitude #{lon} out of range"
62         render :action => "error"
63       else
64         @results = [{ :lat => lat, :lon => lon,
65                       :zoom => params[:zoom],
66                       :name => "#{lat}, #{lon}" }]
67
68         render :action => "results"
69       end
70     end
71   end
72
73   def search_osm_nominatim
74     # ask nominatim
75     response = fetch_xml("#{Settings.nominatim_url}search?format=xml&" + nominatim_url_parameters)
76
77     # extract the results from the response
78     results = response.elements["searchresults"]
79
80     # create result array
81     @results = []
82
83     # create parameter hash for "more results" link
84     @more_params = params
85                    .permit(:query, :minlon, :minlat, :maxlon, :maxlat, :exclude)
86                    .merge(:exclude => results.attributes["exclude_place_ids"])
87
88     # parse the response
89     results.elements.each("place") do |place|
90       lat = place.attributes["lat"]
91       lon = place.attributes["lon"]
92       klass = place.attributes["class"]
93       type = place.attributes["type"]
94       name = place.attributes["display_name"]
95       min_lat, max_lat, min_lon, max_lon = place.attributes["boundingbox"].split(",")
96       prefix_name = if type.empty?
97                       ""
98                     else
99                       t "geocoder.search_osm_nominatim.prefix.#{klass}.#{type}", :default => type.tr("_", " ").capitalize
100                     end
101       if klass == "boundary" && type == "administrative"
102         rank = (place.attributes["address_rank"].to_i + 1) / 2
103         prefix_name = t "geocoder.search_osm_nominatim.admin_levels.level#{rank}", :default => prefix_name
104         place.elements["extratags"].elements.each("tag") do |extratag|
105           prefix_name = t "geocoder.search_osm_nominatim.prefix.place.#{extratag.attributes['value']}", :default => prefix_name if extratag.attributes["key"] == "linked_place" || extratag.attributes["key"] == "place"
106         end
107       end
108       prefix = t ".prefix_format", :name => prefix_name
109       object_type = place.attributes["osm_type"]
110       object_id = place.attributes["osm_id"]
111
112       @results.push(:lat => lat, :lon => lon,
113                     :min_lat => min_lat, :max_lat => max_lat,
114                     :min_lon => min_lon, :max_lon => max_lon,
115                     :prefix => prefix, :name => name,
116                     :type => object_type, :id => object_id)
117     end
118
119     render :action => "results"
120   rescue StandardError => e
121     host = URI(Settings.nominatim_url).host
122     @error = "Error contacting #{host}: #{e}"
123     render :action => "error"
124   end
125
126   def search_osm_nominatim_reverse
127     # get query parameters
128     zoom = params[:zoom]
129
130     # create result array
131     @results = []
132
133     # ask nominatim
134     response = fetch_xml("#{Settings.nominatim_url}reverse?" + nominatim_reverse_url_parameters)
135
136     # parse the response
137     response.elements.each("reversegeocode/result") do |result|
138       lat = result.attributes["lat"]
139       lon = result.attributes["lon"]
140       object_type = result.attributes["osm_type"]
141       object_id = result.attributes["osm_id"]
142       description = result.text
143
144       @results.push(:lat => lat, :lon => lon,
145                     :zoom => zoom,
146                     :name => description,
147                     :type => object_type, :id => object_id)
148     end
149
150     render :action => "results"
151   rescue StandardError => e
152     host = URI(Settings.nominatim_url).host
153     @error = "Error contacting #{host}: #{e}"
154     render :action => "error"
155   end
156
157   private
158
159   def nominatim_url_parameters
160     # get query parameters
161     query = params[:query]
162     minlon = params[:minlon]
163     minlat = params[:minlat]
164     maxlon = params[:maxlon]
165     maxlat = params[:maxlat]
166
167     # get view box
168     viewbox = "&viewbox=#{minlon},#{maxlat},#{maxlon},#{minlat}" if minlon && minlat && maxlon && maxlat
169
170     # get objects to excude
171     exclude = "&exclude_place_ids=#{params[:exclude]}" if params[:exclude]
172
173     "extratags=1&q=#{escape_query(query)}#{viewbox}#{exclude}&accept-language=#{http_accept_language.user_preferred_languages.join(',')}"
174   end
175
176   def nominatim_reverse_url_parameters
177     # get query parameters
178     lat = params[:lat]
179     lon = params[:lon]
180     zoom = params[:zoom]
181
182     "lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{http_accept_language.user_preferred_languages.join(',')}"
183   end
184
185   def fetch_text(url)
186     response = OSM.http_client.get(URI.parse(url))
187
188     if response.success?
189       response.body
190     else
191       raise response.status.to_s
192     end
193   end
194
195   def fetch_xml(url)
196     REXML::Document.new(fetch_text(url))
197   end
198
199   def escape_query(query)
200     CGI.escape(query)
201   end
202
203   def normalize_params
204     if query = params[:query]
205       query.strip!
206
207       if latlon = query.match(/^([NS])\s*(\d{1,3}(\.\d*)?)\W*([EW])\s*(\d{1,3}(\.\d*)?)$/).try(:captures) || # [NSEW] decimal degrees
208                   query.match(/^(\d{1,3}(\.\d*)?)\s*([NS])\W*(\d{1,3}(\.\d*)?)\s*([EW])$/).try(:captures)    # decimal degrees [NSEW]
209         params.merge!(nsew_to_decdeg(latlon)).delete(:query)
210
211       elsif latlon = query.match(/^([NS])\s*(\d{1,3})°?(?:\s*(\d{1,3}(\.\d*)?)?['′]?)?\W*([EW])\s*(\d{1,3})°?(?:\s*(\d{1,3}(\.\d*)?)?['′]?)?$/).try(:captures) || # [NSEW] degrees, decimal minutes
212                      query.match(/^(\d{1,3})°?(?:\s*(\d{1,3}(\.\d*)?)?['′]?)?\s*([NS])\W*(\d{1,3})°?(?:\s*(\d{1,3}(\.\d*)?)?['′]?)?\s*([EW])$/).try(:captures)    # degrees, decimal minutes [NSEW]
213         params.merge!(ddm_to_decdeg(latlon)).delete(:query)
214
215       elsif latlon = query.match(/^([NS])\s*(\d{1,3})°?\s*(\d{1,2})['′]?(?:\s*(\d{1,3}(\.\d*)?)?["″]?)?\W*([EW])\s*(\d{1,3})°?\s*(\d{1,2})['′]?(?:\s*(\d{1,3}(\.\d*)?)?["″]?)?$/).try(:captures) || # [NSEW] degrees, minutes, decimal seconds
216                      query.match(/^(\d{1,3})°?\s*(\d{1,2})['′]?(?:\s*(\d{1,3}(\.\d*)?)?["″]?)?\s*([NS])\W*(\d{1,3})°?\s*(\d{1,2})['′]?(?:\s*(\d{1,3}(\.\d*)?)?["″]?)?\s*([EW])$/).try(:captures)    # degrees, minutes, decimal seconds [NSEW]
217         params.merge!(dms_to_decdeg(latlon)).delete(:query)
218
219       elsif latlon = query.match(/^([+-]?\d+(\.\d*)?)(?:\s+|\s*,\s*)([+-]?\d+(\.\d*)?)$/)
220         params.merge!(:lat => latlon[1].to_f, :lon => latlon[3].to_f).delete(:query)
221
222         params[:latlon_digits] = true unless params[:whereami]
223       end
224     end
225
226     params.permit(:query, :lat, :lon, :latlon_digits, :zoom, :minlat, :minlon, :maxlat, :maxlon)
227   end
228
229   def nsew_to_decdeg(captures)
230     begin
231       Float(captures[0])
232       lat = captures[2].casecmp("s").zero? ? -captures[0].to_f : captures[0].to_f
233       lon = captures[5].casecmp("w").zero? ? -captures[3].to_f : captures[3].to_f
234     rescue StandardError
235       lat = captures[0].casecmp("s").zero? ? -captures[1].to_f : captures[1].to_f
236       lon = captures[3].casecmp("w").zero? ? -captures[4].to_f : captures[4].to_f
237     end
238     { :lat => lat, :lon => lon }
239   end
240
241   def ddm_to_decdeg(captures)
242     begin
243       Float(captures[0])
244       lat = captures[3].casecmp("s").zero? ? -(captures[0].to_f + (captures[1].to_f / 60)) : captures[0].to_f + (captures[1].to_f / 60)
245       lon = captures[7].casecmp("w").zero? ? -(captures[4].to_f + (captures[5].to_f / 60)) : captures[4].to_f + (captures[5].to_f / 60)
246     rescue StandardError
247       lat = captures[0].casecmp("s").zero? ? -(captures[1].to_f + (captures[2].to_f / 60)) : captures[1].to_f + (captures[2].to_f / 60)
248       lon = captures[4].casecmp("w").zero? ? -(captures[5].to_f + (captures[6].to_f / 60)) : captures[5].to_f + (captures[6].to_f / 60)
249     end
250     { :lat => lat, :lon => lon }
251   end
252
253   def dms_to_decdeg(captures)
254     begin
255       Float(captures[0])
256       lat = captures[4].casecmp("s").zero? ? -(captures[0].to_f + ((captures[1].to_f + (captures[2].to_f / 60)) / 60)) : captures[0].to_f + ((captures[1].to_f + (captures[2].to_f / 60)) / 60)
257       lon = captures[9].casecmp("w").zero? ? -(captures[5].to_f + ((captures[6].to_f + (captures[7].to_f / 60)) / 60)) : captures[5].to_f + ((captures[6].to_f + (captures[7].to_f / 60)) / 60)
258     rescue StandardError
259       lat = captures[0].casecmp("s").zero? ? -(captures[1].to_f + ((captures[2].to_f + (captures[3].to_f / 60)) / 60)) : captures[1].to_f + ((captures[2].to_f + (captures[3].to_f / 60)) / 60)
260       lon = captures[5].casecmp("w").zero? ? -(captures[6].to_f + ((captures[7].to_f + (captures[8].to_f / 60)) / 60)) : captures[6].to_f + ((captures[7].to_f + (captures[8].to_f / 60)) / 60)
261     end
262     { :lat => lat, :lon => lon }
263   end
264 end