-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaxMindBinary.php
114 lines (93 loc) · 3.83 KB
/
MaxMindBinary.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
<?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\MaxMindBinary;
use Geocoder\Collection;
use Geocoder\Exception\FunctionNotFound;
use Geocoder\Exception\InvalidArgument;
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;
final class MaxMindBinary extends AbstractProvider implements Provider
{
/**
* @var string
*/
private $datFile;
/**
* @var int|null
*/
private $openFlag;
/**
* @throws FunctionNotFound if maxmind's lib not installed
* @throws InvalidArgument if dat file is not correct (optional)
*/
public function __construct(string $datFile, ?int $openFlag = null)
{
if (false === function_exists('geoip_open')) {
throw new FunctionNotFound('geoip_open', 'The MaxMindBinary requires maxmind\'s lib to be installed and loaded. Have you included geoip.inc file?');
}
if (false === function_exists('GeoIP_record_by_addr')) {
throw new FunctionNotFound('GeoIP_record_by_addr', 'The MaxMindBinary requires maxmind\'s lib to be installed and loaded. Have you included geoipcity.inc file?');
}
if (false === is_file($datFile)) {
throw new InvalidArgument(sprintf('Given MaxMind dat file "%s" does not exist.', $datFile));
}
if (false === is_readable($datFile)) {
throw new InvalidArgument(sprintf('Given MaxMind dat file "%s" does not readable.', $datFile));
}
$this->datFile = $datFile;
$this->openFlag = null === $openFlag ? GEOIP_STANDARD : $openFlag;
}
public function geocodeQuery(GeocodeQuery $query): Collection
{
$address = $query->getText();
if (false === filter_var($address, FILTER_VALIDATE_IP)) {
throw new UnsupportedOperation('The MaxMindBinary provider does not support street addresses.');
}
// This API does not support IPv6
if (filter_var($address, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) {
throw new UnsupportedOperation('The MaxMindBinary provider does not support IPv6 addresses.');
}
$geoIp = geoip_open($this->datFile, $this->openFlag);
$geoIpRecord = GeoIP_record_by_addr($geoIp, $address);
geoip_close($geoIp);
if (false === $geoIpRecord instanceof \GeoIpRecord) {
return new AddressCollection([]);
}
$adminLevels = [];
if ($geoIpRecord->region) {
$adminLevels[] = ['name' => $geoIpRecord->region, 'level' => 1];
}
return new AddressCollection([
Address::createFromArray([
'providedBy' => $this->getName(),
'countryCode' => $geoIpRecord->country_code,
'country' => null === $geoIpRecord->country_name ? null : mb_convert_encoding($geoIpRecord->country_name, 'UTF-8', 'ISO-8859-1'),
'adminLevels' => $adminLevels,
'locality' => null === $geoIpRecord->city ? null : mb_convert_encoding($geoIpRecord->city, 'UTF-8', 'ISO-8859-1'),
'latitude' => $geoIpRecord->latitude,
'longitude' => $geoIpRecord->longitude,
'postalCode' => $geoIpRecord->postal_code,
]),
]);
}
public function reverseQuery(ReverseQuery $query): Collection
{
throw new UnsupportedOperation('The MaxMindBinary is not able to do reverse geocoding.');
}
public function getName(): string
{
return 'maxmind_binary';
}
}