]> git.openstreetmap.org Git - rails.git/blob - app/controllers/geocoder_controller.rb
Fix new rubocop warnings
[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", :url => root_path)
17       @sources.push(:name => "osm_nominatim_reverse", :url => nominatim_reverse_url(:format => "html"))
18     elsif @params[:query]
19       @sources.push(:name => "osm_nominatim", :url => nominatim_url(:format => "html"))
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 => params[:lat], :lon => params[:lon],
39                       :zoom => params[:zoom],
40                       :name => "#{params[:lat]}, #{params[:lon]}")
41       end
42
43       if lon >= -90 && lon <= 90 && lat >= -180 && lat <= 180
44         @results.push(:lat => params[:lon], :lon => params[:lat],
45                       :zoom => params[:zoom],
46                       :name => "#{params[:lon]}, #{params[: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 => params[:lat], :lon => params[:lon],
65                       :zoom => params[:zoom],
66                       :name => "#{params[:lat]}, #{params[: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(nominatim_url(:format => "xml"))
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_tags = %w[linked_place place]
105         place.elements["extratags"].elements.each("tag") do |extratag|
106           prefix_name = t "geocoder.search_osm_nominatim.prefix.place.#{extratag.attributes['value']}", :default => prefix_name if place_tags.include?(extratag.attributes["key"])
107         end
108       end
109       prefix = t ".prefix_format", :name => prefix_name
110       object_type = place.attributes["osm_type"]
111       object_id = place.attributes["osm_id"]
112
113       @results.push(:lat => lat, :lon => lon,
114                     :min_lat => min_lat, :max_lat => max_lat,
115                     :min_lon => min_lon, :max_lon => max_lon,
116                     :prefix => prefix, :name => name,
117                     :type => object_type, :id => object_id)
118     end
119
120     render :action => "results"
121   rescue StandardError => e
122     host = URI(Settings.nominatim_url).host
123     @error = "Error contacting #{host}: #{e}"
124     render :action => "error"
125   end
126
127   def search_osm_nominatim_reverse
128     # get query parameters
129     zoom = params[:zoom]
130
131     # create result array
132     @results = []
133
134     # ask nominatim
135     response = fetch_xml(nominatim_reverse_url(:format => "xml"))
136
137     # parse the response
138     response.elements.each("reversegeocode/result") do |result|
139       lat = result.attributes["lat"]
140       lon = result.attributes["lon"]
141       object_type = result.attributes["osm_type"]
142       object_id = result.attributes["osm_id"]
143       description = result.text
144
145       @results.push(:lat => lat, :lon => lon,
146                     :zoom => zoom,
147                     :name => description,
148                     :type => object_type, :id => object_id)
149     end
150
151     render :action => "results"
152   rescue StandardError => e
153     host = URI(Settings.nominatim_url).host
154     @error = "Error contacting #{host}: #{e}"
155     render :action => "error"
156   end
157
158   private
159
160   def nominatim_url(format: nil)
161     # get query parameters
162     query = params[:query]
163     minlon = params[:minlon]
164     minlat = params[:minlat]
165     maxlon = params[:maxlon]
166     maxlat = params[:maxlat]
167
168     # get view box
169     viewbox = "&viewbox=#{minlon},#{maxlat},#{maxlon},#{minlat}" if minlon && minlat && maxlon && maxlat
170
171     # get objects to excude
172     exclude = "&exclude_place_ids=#{params[:exclude]}" if params[:exclude]
173
174     # build url
175     "#{Settings.nominatim_url}search?format=#{format}&extratags=1&q=#{escape_query(query)}#{viewbox}#{exclude}&accept-language=#{http_accept_language.user_preferred_languages.join(',')}"
176   end
177
178   def nominatim_reverse_url(format: nil)
179     # get query parameters
180     lat = params[:lat]
181     lon = params[:lon]
182     zoom = params[:zoom]
183
184     # build url
185     "#{Settings.nominatim_url}reverse?format=#{format}&lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{http_accept_language.user_preferred_languages.join(',')}"
186   end
187
188   def fetch_text(url)
189     response = OSM.http_client.get(URI.parse(url))
190
191     if response.success?
192       response.body
193     else
194       raise response.status.to_s
195     end
196   end
197
198   def fetch_xml(url)
199     REXML::Document.new(fetch_text(url))
200   end
201
202   def escape_query(query)
203     CGI.escape(query)
204   end
205
206   def normalize_params
207     if query = params[:query]
208       query.strip!
209
210       if latlon = query.match(/^(?<ns>[NS])\s*#{dms_regexp('ns')}\W*(?<ew>[EW])\s*#{dms_regexp('ew')}$/) ||
211                   query.match(/^#{dms_regexp('ns')}\s*(?<ns>[NS])\W*#{dms_regexp('ew')}\s*(?<ew>[EW])$/)
212         params.merge!(to_decdeg(latlon.named_captures.compact)).delete(:query)
213
214       elsif latlon = query.match(%r{^(?<lat>[+-]?\d+(?:\.\d+)?)(?:\s+|\s*[,/]\s*)(?<lon>[+-]?\d+(?:\.\d+)?)$})
215         params.merge!(:lat => latlon["lat"], :lon => latlon["lon"]).delete(:query)
216
217         params[:latlon_digits] = true
218       end
219     end
220
221     params.permit(:query, :lat, :lon, :latlon_digits, :zoom, :minlat, :minlon, :maxlat, :maxlon)
222   end
223
224   def dms_regexp(name_prefix)
225     /
226       (?: (?<#{name_prefix}d>\d{1,3}(?:\.\d+)?)°? ) |
227       (?: (?<#{name_prefix}d>\d{1,3})°?\s*(?<#{name_prefix}m>\d{1,2}(?:\.\d+)?)['′]? ) |
228       (?: (?<#{name_prefix}d>\d{1,3})°?\s*(?<#{name_prefix}m>\d{1,2})['′]?\s*(?<#{name_prefix}s>\d{1,2}(?:\.\d+)?)["″]? )
229     /x
230   end
231
232   def to_decdeg(captures)
233     ns = captures.fetch("ns").casecmp?("s") ? -1 : 1
234     nsd = BigDecimal(captures.fetch("nsd", "0"))
235     nsm = BigDecimal(captures.fetch("nsm", "0"))
236     nss = BigDecimal(captures.fetch("nss", "0"))
237
238     ew = captures.fetch("ew").casecmp?("w") ? -1 : 1
239     ewd = BigDecimal(captures.fetch("ewd", "0"))
240     ewm = BigDecimal(captures.fetch("ewm", "0"))
241     ews = BigDecimal(captures.fetch("ews", "0"))
242
243     lat = ns * (nsd + (nsm / 60) + (nss / 3600))
244     lon = ew * (ewd + (ewm / 60) + (ews / 3600))
245
246     { :lat => lat.round(6).to_s("F"), :lon => lon.round(6).to_s("F") }
247   end
248 end