City lookup improvements
This commit is contained in:
parent
bfcafaac08
commit
0ffdc6e9ad
@ -64,76 +64,91 @@ class City < ActiveRecord::Base
|
|||||||
# see if the city is already present in our database
|
# see if the city is already present in our database
|
||||||
city = City.find_by_place_id(location.data['place_id'])
|
city = City.find_by_place_id(location.data['place_id'])
|
||||||
|
|
||||||
# return the city if we found it in the db already
|
# if we didn't find a match by place id, collect the city, territory, and country from the result
|
||||||
if city.present?
|
unless city.present?
|
||||||
CityCache.cache(str, city.id)
|
# google nsames things differently than we do, we'll look for these itesm
|
||||||
return city
|
component_alises = {
|
||||||
end
|
'locality' => :city,
|
||||||
|
'administrative_area_level_1' => :territory,
|
||||||
|
'country' => :country
|
||||||
|
}
|
||||||
|
|
||||||
|
# and populate this map to eventually create the city if we need to
|
||||||
|
city_data = {
|
||||||
|
locale: :en,
|
||||||
|
latitude: location.data['geometry']['location']['lat'],
|
||||||
|
longitude: location.data['geometry']['location']['lng'],
|
||||||
|
place_id: location.data['place_id']
|
||||||
|
}
|
||||||
|
|
||||||
# otherwise build a new city
|
# these things are definitely not cities, make sure we don't think they're one
|
||||||
component_alises = {
|
not_a_city = [
|
||||||
'locality' => :city,
|
'administrative_area_level_1',
|
||||||
'administrative_area_level_1' => :territory,
|
'country',
|
||||||
'country' => :country
|
'street_address',
|
||||||
}
|
'street_number',
|
||||||
city_data = {
|
'postal_code',
|
||||||
locale: :en,
|
'postal_code_prefix',
|
||||||
latitude: location.data['geometry']['location']['lat'],
|
'route',
|
||||||
longitude: location.data['geometry']['location']['lng'],
|
'intersection',
|
||||||
place_id: location.data['place_id']
|
'premise',
|
||||||
}
|
'subpremise',
|
||||||
|
'natural_feature',
|
||||||
|
'airport',
|
||||||
|
'park',
|
||||||
|
'point_of_interest',
|
||||||
|
'bus_station',
|
||||||
|
'train_station',
|
||||||
|
'transit_station',
|
||||||
|
'room',
|
||||||
|
'post_box',
|
||||||
|
'parking',
|
||||||
|
'establishment',
|
||||||
|
'floor'
|
||||||
|
]
|
||||||
|
|
||||||
# these things are definitely not cities, make sure we don't think they're one
|
searched_component = nil
|
||||||
not_a_city = [
|
location.data['address_components'].each do | component |
|
||||||
'administrative_area_level_1',
|
property = component_alises[component['types'].first]
|
||||||
'country',
|
city_data[property] = component['short_name'] if property.present?
|
||||||
'street_address',
|
|
||||||
'street_number',
|
|
||||||
'postal_code',
|
|
||||||
'postal_code_prefix',
|
|
||||||
'route',
|
|
||||||
'intersection',
|
|
||||||
'premise',
|
|
||||||
'subpremise',
|
|
||||||
'natural_feature',
|
|
||||||
'airport',
|
|
||||||
'park',
|
|
||||||
'point_of_interest',
|
|
||||||
'bus_station',
|
|
||||||
'train_station',
|
|
||||||
'transit_station',
|
|
||||||
'room',
|
|
||||||
'post_box',
|
|
||||||
'parking',
|
|
||||||
'establishment',
|
|
||||||
'floor'
|
|
||||||
]
|
|
||||||
|
|
||||||
searched_component = nil
|
# ideally we will find the component that is labeled a locality but
|
||||||
location.data['address_components'].each do | component |
|
# if that fails we will select what was searched for, hopefully they searched for a city
|
||||||
property = component_alises[component['types'].first]
|
# and not an address or country
|
||||||
city_data[property] = component['short_name'] if property.present?
|
# some places are not labeled 'locality', search for 'Halifax NS' for example and you will
|
||||||
|
# get 'administrative_area_level_2' since Halifax is a municipality
|
||||||
|
if component['types'] == location.data['types'] && !not_a_city.include?(component['types'].first)
|
||||||
|
searched_component = component['short_name']
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# ideally we will find the component that is labeled a locality but
|
# fall back to the searched component
|
||||||
# if that fails we will select what was searched for, hopefully they searched for a city
|
city_data[:city] ||= searched_component
|
||||||
# and not an address or country
|
|
||||||
# some places are not labeled 'locality', search for 'Halifax NS' for example and you will
|
# we need to have the city and country at least
|
||||||
# get 'administrative_area_level_2' since Halifax is a municipality
|
return false unless city_data[:city].present? && city_data[:country].present?
|
||||||
if component['types'] == location.data['types'] && !not_a_city.include?(component['types'].first)
|
|
||||||
searched_component = component['short_name']
|
# one last attempt to make sure we don't already have a record of this city
|
||||||
|
city = City.where(city: city_data[:city], territory: city_data[:territory], country: city_data[:country]).first
|
||||||
|
|
||||||
|
# only if we still can't find the city, then save it as a new one
|
||||||
|
unless city.present?
|
||||||
|
city = City.new(city_data)
|
||||||
|
# if we found exactly what we were looking for, keep these location details
|
||||||
|
# otherwise we may have searched for 'The Bronx' and set the sity the 'New York' but these details will be about The Bronx
|
||||||
|
# so if we try to show New York on a map it will always point to The Bronx, not very fair to those from Staten Island
|
||||||
|
unless city_data[:city] == searched_component
|
||||||
|
new_location = Geocoder.search(str, language: 'en').first
|
||||||
|
city.latitude = new_location.data['geometry']['location']['lat']
|
||||||
|
city.longitude = new_location.data['geometry']['location']['lng']
|
||||||
|
city.place_id = new_location.data['place_id']
|
||||||
|
end
|
||||||
|
|
||||||
|
# and create the new city
|
||||||
|
city.save!
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# fall back to the searched component
|
|
||||||
city_data[:city] ||= searched_component
|
|
||||||
|
|
||||||
# we need to have the city and country at least
|
|
||||||
return false unless city_data[:city].present? && city_data[:country].present?
|
|
||||||
|
|
||||||
# save the new city
|
|
||||||
city = City.new(city_data)
|
|
||||||
city.save!
|
|
||||||
|
|
||||||
# save this to our cache
|
# save this to our cache
|
||||||
CityCache.cache(str, city.id)
|
CityCache.cache(str, city.id)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user