scorpsan / yii2-geoip
An extension that allows you to obtain the visitor's IP address and location information from any IP address. Uses http://sypexgeo.net/ for online and http://www.ip2location.com/ library for offline data retrieval.
Installs: 2 464
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- guzzlehttp/guzzle: ^7.2
- ip2location/ip2location-php: ^9.0
- yiisoft/yii2: *
README
An extension that allows you to obtain the visitor's location information from any IP address. Uses http://sypexgeo.net/ for online and http://www.ip2location.com/ library for offline data retrieval.
Расширение, позволяющее получать информацию о местоположении посетителя с любого IP-адреса. Использует http://sypexgeo.net/ для онлайн и http://www.ip2location.com/ библиотеки для офлайн получения данных.
Installation
The preferred way to install this extension through composer.
You can set the console
$ composer require "scorpsan/yii2-geoip"
or add
"scorpsan/yii2-geoip": "*"
in require
section in composer.json
file.
Using
Once the extension is installed, simply use it in your code by :
Add following code to your configuration file of application:
... 'components' => [ ... 'geoIp' => [ 'class' => 'scorpsan\geoip\GeoIp', // uncomment next line if you register on sypexgeo.net and paste your key // 'keySypex' => 'key-sypexgeo-net-this', // if need more timeout (default 5 = 5000 millisecond) // 'timeout' => 6, ], ... ], ...
Get information from Ip User: Online
var_dump(Yii::$app->geoIp->info);
Offline
var_dump(Yii::$app->geoIp->infoDb);
Get information from Select Ip: Online
var_dump(Yii::$app->geoIp->getInfo('255.255.255.255'));
Offline
var_dump(Yii::$app->geoIp->getInfoDb('255.255.255.255'));
Get User Ip:
var_dump(Yii::$app->geoIp->ip);
Return Data
Online
* Returned information by IP address with following paramters: * - `ip` - Visitor IP address, or IP address specified as parameter. * - `city` - Object City information * -- [id] => 625144 * -- [lat] => 53.9 * -- [lon] => 27.56667 * -- [name_ru] => Минск * -- [name_en] => Minsk * -- [name_de] => Minsk * -- [name_fr] => Minsk * -- [name_it] => Minsk * -- [name_es] => Minsk * -- [name_pt] => Minsk * -- [okato] => 5000000000 * -- [vk] => 282 * -- [population] => 1742124 * - `region` - Object Region information * -- [id] => 625143 * -- [lat] => 53.9 * -- [lon] => 27.57 * -- [name_ru] => Минск * -- [name_en] => Horad Minsk * -- [name_de] => Minsk * -- [name_fr] => Minsk * -- [name_it] => Minsk * -- [name_es] => Minsk * -- [name_pt] => Minsk * -- [iso] => BY-HM * -- [timezone] => Europe/Minsk * -- [okato] => 5 * -- [auto] => 7 * -- [vk] => 0 * -- [utc] => 3 * - `country` - Object Country information * -- [id] => 36 * -- [iso] => BY * -- [continent] => EU * -- [lat] => 53 * -- [lon] => 28 * -- [name_ru] => Беларусь * -- [name_en] => Belarus * -- [name_de] => Weißrussland * -- [name_fr] => Biélorussie * -- [name_it] => Bielorussia * -- [name_es] => Bielorrusia * -- [name_pt] => Bielorrússia * -- [timezone] => Europe/Minsk * -- [area] => 207600 * -- [population] => 9685000 * -- [capital_id] => 625144 * -- [capital_ru] => Минск * -- [capital_en] => Minsk * -- [cur_code] => BYR * -- [phone] => 375 * -- [neighbours] => PL,LT,UA,RU,LV * -- [vk] => 3 * -- [utc] => 3 * - `error` - Error data. * - `request` - Request code. * - `created` - Date created info in database. * - `timestamp` - Timestamp request. * * @return array|false */
Offline
* Returned information by IP address with following paramters: * - `ipAddress` - Visitor IP address, or IP address specified as parameter. * - `countryName` - Name Country in English. * - `countryCode` - Two-letter ISO 3166-1 alpha-2 country code. * * @return array|false */
Usage Session for minimize requests to Sypexgeo
PHP for controller (for examle)
/** Get User Location */ //unset($session['_location']); if (isset($session['_location']) && !empty($session['_location']['userCountry'])) { $app->params['userCountry'] = $session['_location']['userCountry']; $app->params['userCountryCode'] = $session['_location']['userCountryCode']; $app->params['userCountryRegion'] = $session['_location']['userCountryRegion']; $app->params['userCountryCity'] = $session['_location']['userCountryCity']; $app->params['userPhoneCode'] = $session['_location']['userPhoneCode']; } else { //$geoip = $app->geoip->getInfo('93.176.236.137'); $geoip = $app->geoip->info; if (isset($geoip->ip)) : $app->params['userCountry'] = $geoip->country->name_en; $app->params['userCountryCode'] = $geoip->country->iso; $app->params['userCountryRegion'] = $geoip->region->name_en; $app->params['userCountryCity'] = $geoip->city->name_en; $app->params['userPhoneCode'] = $geoip->country->phone; else : $geoip = $app->geoip->infoDb; if (isset($geoip['ipAddress'])) : $app->params['userCountry'] = $geoip['countryName']; $app->params['userCountryCode'] = $geoip['countryCode']; $app->params['userCountryRegion'] = $geoip['regionName']; $app->params['userCountryCity'] = $geoip['cityName']; $app->params['userPhoneCode'] = $geoip['iddCode']; endif; endif; $session['_location'] = [ 'userCountry' => $app->params['userCountry'], 'userCountryCode' => $app->params['userCountryCode'], 'userCountryRegion' => $app->params['userCountryRegion'], 'userCountryCity' => $app->params['userCountryCity'], 'userPhoneCode' => $app->params['userPhoneCode'], ]; }
params.php
return [ ... 'userCountry' => 'World', 'userCountryCode' => 'wl', 'userCountryRegion' => '', 'userCountryCity' => '', 'userPhoneCode' => '1', ... ];
License
yii2-geoip is released under the BSD 3-Clause License.