GeoIP searches a GeoIP database for a given host or IP address, and returns information about the country where the IP address is allocated, and the city, ISP and other information, if you have that database version.
Includes support for ASN data files, thanks to Roland Matiz. This release adds support for timezone names, thanks to Tonni Aagesen.
If you have required 'io/extra' and have IO#pread, cross-process file-descriptor sharing is enabled. Each GeoIP instance keeps the file descriptor open, with a Mutex for thread-safety. You should consider this if your process will fork without exec, as modrails does
require 'geoip' # Use the country database: c = GeoIP.new('GeoIP.dat').country('www.nokia.com') => ["www.nokia.com", "147.243.3.83", 69, "FI", "FIN", "Finland", "EU"] c.country_code3 => "FIN" c.to_hash => {:country_code3=>"FIN", :country_name=>"Finland", :continent_code=>"EU", :request=>"www.nokia.com", :country_code=>69, :country_code2=>"FI", :ip=>"147.243.3.83"}
Returned values are the requested hostname, the IP address as a dotted quad, Maxmind's country code, the ISO3166-1 alpha-2 country code, the ISO3166-2 alpha-3 country code, the ISO3166 country name, and the continent code.
# Use the city database: c = GeoIP.new('GeoLiteCity.dat').city('github.com') => ["github.com", "207.97.227.239", "US", "USA", "United States", "NA", "CA", "San Francisco", "94110", 37.7484, -122.4156, 807, 415, "America/Los_Angeles"] >> c.longitude => -122.4156 >> c.timezone => "America/Los_Angeles" GeoIP.new('GeoCity.dat').city('github.com') => ["github.com", "207.97.227.239", "US", "USA", "United States", "NA", "CA", "San Francisco", "94110", 37.7484, -122.4156, 807, 415, "America/Los_Angeles"] # Use the city ipv6 database: GeoIP.new('GeoLiteCityv6.dat').city('::151.38.39.114') => ["::151.38.39.114", "::151.38.39.114", "IT", "ITA", "Italy", "EU", "05", "Piacenza", "", 45.016699999999986, 9.666699999999992, nil, nil, "Europe/Rome"]
Returned values are the requested hostname, the IP address as a dotted quad, the ISO3166-1 alpha-2 country code, the ISO3166-2 alpha-3 country code, the ISO3166 country name, the continent code, the region (state or territory) name, city name, postal_code/zipcode, latitude, longitude, USA DMA code, USA area code, timezone name.
Result arrays from both city and country have mixed-in accessor methods as appropriate: request, ip, country_code, country_code2, country_code3, country_name, continent_code, region_name, city_name, postal_code, latitude, longitude, dma_code, area_code, timezone
GeoIP.new('GeoIPASNum.dat').asn("www.fsb.ru") => ["AS8342", "RTComm.RU Autonomous System"]
You need one of the free GeoLite country, city or ASN databases, or a subscription database version. The last known download locations for the GeoLite database versions are <geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz>, <geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz>, <geolite.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz>.
This API requires the file to be decompressed for searching. Other versions of this database are available for purchase which contain more detailed information, but this information is not returned by this implementation. See www.maxmind.com for more information.
sudo gem install geoip
This version Copyright (C) 2005 Clifford Heath Derived from the C version, Copyright (C) 2003 MaxMind LLC
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License, as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This follows the license applied by Maxmind to their C library, for example in the version here: <www.maxmind.com/download/geoip/api/c/GeoIP-1.4.2.tar.gz>.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。