X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/436daaff151f2318160301d015b85892bf18b42d..09895069c5508d5e656d938166f45755cceb7d35:/lib/osm.rb diff --git a/lib/osm.rb b/lib/osm.rb index 554ebfaef..cb23b0c97 100644 --- a/lib/osm.rb +++ b/lib/osm.rb @@ -448,12 +448,20 @@ module OSM def self.IPLocation(ip_address) Timeout::timeout(4) do - Net::HTTP.start('api.hostip.info') do |http| - country = http.get("/country.php?ip=#{ip_address}").body - country = "GB" if country == "UK" - country = Country.find_by_code(country) - return { :minlon => country.min_lon, :minlat => country.min_lat, :maxlon => country.max_lon, :maxlat => country.max_lat } + ipinfo = Quova::IpInfo.new(ip_address) + + if ipinfo.status == Quova::Success then + country = ipinfo.country_code + else + Net::HTTP.start('api.hostip.info') do |http| + country = http.get("/country.php?ip=#{ip_address}").body + country = "GB" if country == "UK" + end end + + country = Country.find_by_code(country.upcase) + + return { :minlon => country.min_lon, :minlat => country.min_lat, :maxlon => country.max_lon, :maxlat => country.max_lat } end return nil