我想从访问者的 IP 地址中提取用户国家名称。
我可以使用remote_ip
. 但是,获得国名的最简单方法是什么?
它不必非常准确。任何 ruby 库(gem 或插件)可以做到这一点?
我想要一个简单易行的解决方案。
我想从访问者的 IP 地址中提取用户国家名称。
我可以使用remote_ip
. 但是,获得国名的最简单方法是什么?
它不必非常准确。任何 ruby 库(gem 或插件)可以做到这一点?
我想要一个简单易行的解决方案。
您可以使用geoip
宝石。
环境.rb
config.gem 'geoip'
GeoIP.dat.gz
从下载http://www.maxmind.com/app/geolitecountry
。解压缩文件。下面假设在#{RAILS_ROOT}/db
目录下。
@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
您也可以使用“地理编码器”
它只会让你的生活更轻松。将以下行放入您的 Gemfile 并发出 bundle install 命令
gem 'geocoder'
使用此Gem,您可以轻松获取源IP 的国家、IP 甚至城市。请参阅下面的示例
request.ip # => "182.185.141.75"
request.location.city # => ""
request.location.country # => "Pakistan"
我正在使用这个单线:
locale = Timeout::timeout(5) { Net::HTTP.get_response(URI.parse('http://api.hostip.info/country.php?ip=' + request.remote_ip )).body } rescue "US"
最简单的方法是为此使用现有的 Web 服务。
有一些插件可以让你做更多的事情,包括让你的模型自动感知地理位置(geokit-rails),但是如果你只需要一个国家代码,只需发送一个 HTTP Get 到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 的服务都是如此。
您可以使用的一项服务是我自己的,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中的示例从国家代码映射到名称
geoip
gem 不再适用于新的 MaxMind 数据库。有一个新的 gem 可以做到这一点,MaxMind-DB-Reader-ruby。
只需从MaxMind下载 City 或 Country 二进制文件,压缩数据库,解压缩,然后使用以下代码:
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
根据您的需要进行调整。我在初始化程序中创建了一个方法,我可以根据需要调用它。
我刚刚为我创建的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"
# }
它也可以在没有 gem 的情况下使用,只需使用 Ruby 的Net::HTTP
and URI
:
response = Net::HTTP.get( URI.parse( "https://www.iplocate.io/api/lookup/8.8.8.8" ) )
该请求将返回 JSON,因此您可以解析它并按如下方式访问它:
country = JSON.parse( response )["country"]
# => "US"
你可以试试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"}}
试试 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"
这是一个调用ipdata.co API的 Ruby 示例。
由于拥有 10 个全局端点,每个端点每秒都能够处理超过 10,000 个请求,因此它速度快且性能可靠!
此答案使用非常有限的“测试”API 密钥,仅用于测试几个调用。注册您自己的免费 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
},
}
宝石geoip
可以用新宝石替换maxminddb
。它支持新的 MaxMind 数据库格式。
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