使用Ruby on Rails从原始IP地址获取用户国家/地区名称

时间:2010-01-01 06:44:24

标签: ruby-on-rails ip-geolocation

我想从访问者的IP地址中提取用户国家/地区名称。

我可以使用remote_ip获取IP地址。但可能是什么 获取国家名称的最简单方法是什么?

它不一定非常准确。任何ruby库(gem或插件)都可以做到这一点?

我想要一个简单易用的解决方案。

11 个答案:

答案 0 :(得分:48)

您可以使用geoip gem。

的environment.rb

config.gem 'geoip'

GeoIP.dat.gz下载http://www.maxmind.com/app/geolitecountry。解压缩文件。以下假设在#{RAILS_ROOT}/db dir。

@geoip ||= GeoIP.new("#{RAILS_ROOT}/db/GeoIP.dat")    
remote_ip = request.remote_ip 
if remote_ip != "127.0.0.1" #todo: check for other local addresses or set default value
  location_location = @geoip.country(remote_ip)
  if location_location != nil     
    @model.country = location_location[2]
  end
end

答案 1 :(得分:28)

您还可以使用“Geocoder

它会让你的生活更轻松。将以下行放在Gemfile中并发出bundle install命令

gem 'geocoder'

使用此Gem,您可以轻松获取原始IP的国家/地区,IP甚至城市。请参阅下面的示例

request.ip  # =>    "182.185.141.75"
request.location.city   # =>    ""
request.location.country    # =>    "Pakistan"

答案 2 :(得分:9)

我正在使用这个单行:

locale = Timeout::timeout(5) { Net::HTTP.get_response(URI.parse('http://api.hostip.info/country.php?ip=' + request.remote_ip )).body } rescue "US"

答案 3 :(得分:6)

最简单的方法是使用现有的Web服务。

有一些插件可以让你做更多的事情,包括让你的模型自动识别地理定位(geokit-rails),但如果你需要的只是国家代码,只需发送HTTP Get to http://api.hostip.info/country.php (还有其他服务,但这个不需要API密钥)会返回它,例如:

Net::HTTP.get_response(URI.parse('http://api.hostip.info/country.php'))
=> US


或轮询http://api.hostip.info/将返回包含城市,纬度,经度等的完整XML响应。

请注意,您获得的结果不是100%准确。例如,现在我在法国,但在德国报道。对于几乎任何基于IP的服务都是如此。

答案 4 :(得分:4)

您可以使用的一项服务是我自己的https://ipinfo.io。它为您提供国家/地区代码和一系列其他详细信息:

$ curl ipinfo.io
{
  "ip": "24.6.61.239",
  "hostname": "c-24-6-61-239.hsd1.ca.comcast.net",
  "city": "Mountain View",
  "region": "California",
  "country": "US",
  "loc": "37.3845,-122.0881",
  "org": "AS7922 Comcast Cable Communications, LLC",
  "postal": "94040"
}

如果您只是想要国家/地区,可以通过请求/country

来获取该国家/地区
$ curl ipinfo.io/country
US

然后,您可以使用http://country.io中的数据或使用http://ipinfo.io/developers/full-country-names上的示例

将国家/地区代码映射到名称

答案 5 :(得分:2)

我刚刚为我创建的IPLocate.io API发布了一个gem。

超级简单,无需下载数据库,每天有1,500个免费请求:

require 'iplocate'

# Look up an IP address
results = IPLocate.lookup("8.8.8.8")

# Or with an API key
results = IPLocate.lookup("8.8.8.8", "abcdef")

results["country"]
# "United States"

results["country_code"]
# "US"

results["org"]
# "Google LLC"

results.inspect
# {
#   "ip"=>"8.8.8.8",
#   "country"=>"United States",
#   "country_code"=>"US",
#   "city"=>nil,
#   "continent"=>"North America",
#   "latitude"=>37.751,
#   "longitude"=>-97.822,
#   "time_zone"=>nil,
#   "postal_code"=>nil,
#   "org"=>"Google LLC",
#   "asn"=>"AS15169"
# }  

没有宝石

只需使用Ruby Net::HTTPURI,它也可以在没有宝石的情况下使用:

response = Net::HTTP.get( URI.parse( "https://www.iplocate.io/api/lookup/8.8.8.8" ) )

请求将返回JSON,因此您可以解析它并按如下方式访问它:

country = JSON.parse( response )["country"]
# => "US"

答案 6 :(得分:1)

您可以尝试Yandex locator gem,服务返回经度,纬度和精度。

conn = YandexLocator::Client.new
result = conn.lookup(ip: "109.252.52.39")
# => {"position"=>{"altitude"=>0.0, "altitude_precision"=>30.0, "latitude"=>55.75395965576172, "longitude"=>37.62039184570312, "precision"=>100000.0, "type"=>"ip"}}

答案 7 :(得分:1)

这是一个调用ipdata.co API的Ruby示例。

由于拥有10个全局端点,每个端点能够处理每秒10,000个请求,因此速度快且性能可靠!

  

这个答案使用的“测试”API密钥非常有限,仅用于测试几个调用。 Signup用于您自己的免费API密钥,每天最多可获得1500个请求以进行开发。

78.8.53.5替换为您要查找的任何IP

require 'rubygems' if RUBY_VERSION < '1.9'
require 'rest_client'

headers = {
  :accept => 'application/json'
}

response = RestClient.get 'https://api.ipdata.co/78.8.53.5?api-key=test', headers
puts response

那会给你

{
    "ip": "78.8.53.5",
    "is_eu": true,
    "city": "G\u0142og\u00f3w",
    "region": "Lower Silesia",
    "region_code": "DS",
    "country_name": "Poland",
    "country_code": "PL",
    "continent_name": "Europe",
    "continent_code": "EU",
    "latitude": 51.6557,
    "longitude": 16.089,
    "asn": "AS12741",
    "organisation": "Netia SA",
    "postal": "67-200",
    "calling_code": "48",
    "flag": "https://ipdata.co/flags/pl.png",
    "emoji_flag": "\ud83c\uddf5\ud83c\uddf1",
    "emoji_unicode": "U+1F1F5 U+1F1F1",
    "carrier": {
        "name": "Netia",
        "mcc": "260",
        "mnc": "07"
    },
    "languages": [
        {
            "name": "Polish",
            "native": "Polski"
        }
    ],
    "currency": {
        "name": "Polish Zloty",
        "code": "PLN",
        "symbol": "z\u0142",
        "native": "z\u0142",
        "plural": "Polish zlotys"
    },
    "time_zone": {
        "name": "Europe/Warsaw",
        "abbr": "CEST",
        "offset": "+0200",
        "is_dst": true,
        "current_time": "2018-08-29T15:34:23.518065+02:00"
    },
    "threat": {
        "is_tor": false,
        "is_proxy": false,
        "is_anonymous": false,
        "is_known_attacker": false,
        "is_known_abuser": false,
        "is_threat": false,
        "is_bogon": false
    },
}

答案 8 :(得分:1)

宝石geoip可以替换为新的宝石maxminddb。它支持新的MaxMind db格式。

db = MaxMindDB.new('./GeoLite2-City.mmdb')
ret = db.lookup('74.125.225.224')

ret.found? # => true
ret.country.name # => 'United States'
ret.country.name('zh-CN') # => '美国'
ret.country.iso_code # => 'US'
ret.city.name(:fr) # => 'Mountain View'
ret.subdivisions.most_specific.name # => 'California'
ret.location.latitude # => -122.0574

答案 9 :(得分:0)

尝试使用IP2Location Ruby

https://github.com/ip2location/ip2location-ruby

预备知识

http://lite.ip2location.com/下载免费的LITE数据库,并在下面使用。

安装

gem install ip2location_ruby

用法

require 'ip2location_ruby'

i2l = Ip2location.new.open("./data/IP-COUNTRY-SAMPLE.BIN")
record = i2l.get_all('8.8.8.8')

print 'Country Code: ' + record.country_short + "\n"
print 'Country Name: ' + record.country_long + "\n"
print 'Region Name: ' + record.region + "\n"
print 'City Name: ' + record.city + "\n"
print 'Latitude: '
print record.latitude
print "\n"
print 'Longitude: '
print record.longitude
print "\n"
print 'ISP: ' + record.isp + "\n"
print 'Domain: ' + record.domain + "\n"
print 'Net Speed: ' + record.netspeed + "\n"
print 'Area Code: ' + record.areacode + "\n"
print 'IDD Code: ' + record.iddcode + "\n"
print 'Time Zone: ' + record.timezone + "\n"
print 'ZIP Code: ' + record.zipcode + "\n"
print 'Weather Station Code: ' + record.weatherstationname + "\n"
print 'Weather Station Name: ' + record.weatherstationcode + "\n"
print 'MCC: ' + record.mcc + "\n"
print 'MNC: ' + record.mnc + "\n"
print 'Mobile Name: ' + record.mobilebrand + "\n"
print 'Elevation: '
print record.elevation
print "\n"
print 'Usage Type: ' + record.usagetype + "\n"

答案 10 :(得分:0)

geoip gem不再适用于新的MaxMind数据库。 MaxMind-DB-Reader-ruby就是一个新的宝石。

只需从MaxMind下载城市或国家/地区二进制文件,压缩数据库,解压缩并使用以下代码即可:

require 'maxmind/db'

reader = MaxMind::DB.new('GeoIP2-City.mmdb', mode: MaxMind::DB::MODE_MEMORY)

# you probably want to replace 1.1.1.1 with  request.remote_ip
# or request.env['HTTP_X_FORWARDED_FOR']
ip_addr = '1.1.1.1'
record = reader.get(ip_addr)
if record.nil?
  puts '#{ip_addr} was not found in the database'
else
  puts record['country']['iso_code']
  puts record['country']['names']['en']
end

reader.close

根据您的需要进行调整。我在初始化程序中创建了一个方法,可以根据需要调用它。