-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeoIP2.php
115 lines (97 loc) · 3.94 KB
/
GeoIP2.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
declare(strict_types=1);
/*
* This file is part of the Geocoder package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
namespace Geocoder\Provider\GeoIP2;
use Geocoder\Collection;
use Geocoder\Exception\InvalidCredentials;
use Geocoder\Exception\QuotaExceeded;
use Geocoder\Exception\UnsupportedOperation;
use Geocoder\Model\Address;
use Geocoder\Model\AddressCollection;
use Geocoder\Provider\AbstractProvider;
use Geocoder\Provider\Provider;
use Geocoder\Query\GeocodeQuery;
use Geocoder\Query\ReverseQuery;
use GeoIp2\Exception\AddressNotFoundException;
use GeoIp2\Exception\AuthenticationException;
use GeoIp2\Exception\OutOfQueriesException;
/**
* @author Jens Wiese <jens@howtrueisfalse.de>
*/
final class GeoIP2 extends AbstractProvider implements Provider
{
/**
* @var GeoIP2Adapter
*/
private $adapter;
public function __construct(GeoIP2Adapter $adapter)
{
$this->adapter = $adapter;
}
public function geocodeQuery(GeocodeQuery $query): Collection
{
$address = $query->getText();
$locale = $query->getLocale() ?: 'en'; // Default to English
if (!filter_var($address, FILTER_VALIDATE_IP)) {
throw new UnsupportedOperation('The GeoIP2 provider does not support street addresses, only IP addresses.');
}
if ('127.0.0.1' === $address) {
return new AddressCollection([$this->getLocationForLocalhost()]);
}
$result = json_decode($this->executeQuery($address));
if (null === $result) {
return new AddressCollection([]);
}
$adminLevels = [];
if (isset($result->subdivisions) && is_array($result->subdivisions)) {
foreach ($result->subdivisions as $i => $subdivision) {
$name = (isset($subdivision->names->{$locale}) ? $subdivision->names->{$locale} : null);
$code = (isset($subdivision->iso_code) ? $subdivision->iso_code : null);
if (null !== $name || null !== $code) {
$adminLevels[] = ['name' => $name, 'code' => $code, 'level' => $i + 1];
}
}
}
return new AddressCollection([
Address::createFromArray([
'providedBy' => $this->getName(),
'countryCode' => (isset($result->country->iso_code) ? $result->country->iso_code : null),
'country' => (isset($result->country->names->{$locale}) ? $result->country->names->{$locale} : null),
'locality' => (isset($result->city->names->{$locale}) ? $result->city->names->{$locale} : null),
'latitude' => (isset($result->location->latitude) ? $result->location->latitude : null),
'longitude' => (isset($result->location->longitude) ? $result->location->longitude : null),
'timezone' => (isset($result->location->time_zone) ? $result->location->time_zone : null),
'postalCode' => (isset($result->postal->code) ? $result->postal->code : null),
'adminLevels' => $adminLevels,
]),
]);
}
public function reverseQuery(ReverseQuery $query): Collection
{
throw new UnsupportedOperation('The GeoIP2 provider is not able to do reverse geocoding.');
}
public function getName(): string
{
return 'geoip2';
}
private function executeQuery(string $address): string
{
$uri = sprintf('file://geoip?%s', $address);
try {
$result = $this->adapter->getContent($uri);
} catch (AddressNotFoundException $e) {
return '';
} catch (AuthenticationException $e) {
throw new InvalidCredentials($e->getMessage(), $e->getCode(), $e);
} catch (OutOfQueriesException $e) {
throw new QuotaExceeded($e->getMessage(), $e->getCode(), $e);
}
return $result;
}
}