-
Notifications
You must be signed in to change notification settings - Fork 0
/
UrbIS.php
170 lines (142 loc) · 5.37 KB
/
UrbIS.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?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\UrbIS;
use Geocoder\Collection;
use Geocoder\Exception\InvalidArgument;
use Geocoder\Exception\InvalidServerResponse;
use Geocoder\Exception\UnsupportedOperation;
use Geocoder\Http\Provider\AbstractHttpProvider;
use Geocoder\Model\AddressBuilder;
use Geocoder\Model\AddressCollection;
use Geocoder\Provider\Provider;
use Geocoder\Query\GeocodeQuery;
use Geocoder\Query\ReverseQuery;
use Psr\Http\Client\ClientInterface;
/**
* @author Jonathan Beliën <[email protected]>
*/
final class UrbIS extends AbstractHttpProvider implements Provider
{
/**
* @var string
*/
const GEOCODE_ENDPOINT_URL = 'https://geoservices.irisnet.be/localization/Rest/Localize/getaddresses?spatialReference=4326&language=%s&address=%s';
/**
* @var string
*/
const REVERSE_ENDPOINT_URL = 'https://geoservices.irisnet.be/localization/Rest/Localize/getaddressfromxy?json=%s';
/**
* @param ClientInterface $client an HTTP adapter
*/
public function __construct(ClientInterface $client)
{
parent::__construct($client);
}
/**
* {@inheritdoc}
*/
public function geocodeQuery(GeocodeQuery $query): Collection
{
$address = $query->getText();
// This API does not support IP
if (filter_var($address, FILTER_VALIDATE_IP)) {
throw new UnsupportedOperation('The UrbIS provider does not support IP addresses, only street addresses.');
}
// Save a request if no valid address entered
if (empty($address)) {
throw new InvalidArgument('Address cannot be empty.');
}
$language = '';
if (!is_null($query->getLocale()) && preg_match('/^(fr|nl).*$/', $query->getLocale(), $matches) === 1) {
$language = $matches[1];
}
$url = sprintf(self::GEOCODE_ENDPOINT_URL, urlencode($language), urlencode($address));
$json = $this->executeQuery($url);
// no result
if (empty($json->result)) {
return new AddressCollection([]);
}
$results = [];
foreach ($json->result as $location) {
$streetName = !empty($location->address->street->name) ? $location->address->street->name : null;
$number = !empty($location->address->number) ? $location->address->number : null;
$municipality = !empty($location->address->street->municipality) ? $location->address->street->municipality : null;
$postCode = !empty($location->address->street->postCode) ? $location->address->street->postCode : null;
$builder = new AddressBuilder($this->getName());
$builder->setCoordinates($location->point->y, $location->point->x)
->setStreetNumber($number)
->setStreetName($streetName)
->setLocality($municipality)
->setPostalCode($postCode)
->setBounds($location->extent->ymin, $location->extent->xmin, $location->extent->ymax, $location->extent->xmax);
$results[] = $builder->build();
}
return new AddressCollection($results);
}
/**
* {@inheritdoc}
*/
public function reverseQuery(ReverseQuery $query): Collection
{
$coordinates = $query->getCoordinates();
$language = $query->getLocale() ?? '';
$jsonQuery = [
'language' => $language,
'point' => [
// x, y are switched in the API
'y' => $coordinates->getLongitude(),
'x' => $coordinates->getLatitude(),
],
'SRS_In' => 4326,
];
$url = sprintf(self::REVERSE_ENDPOINT_URL, urlencode(json_encode($jsonQuery)));
$json = $this->executeQuery($url);
// no result
if (empty($json->result)) {
return new AddressCollection([]);
}
$results = [];
$location = $json->result;
$streetName = !empty($location->address->street->name) ? $location->address->street->name : null;
$number = !empty($location->address->number) ? $location->address->number : null;
$municipality = !empty($location->address->street->municipality) ? $location->address->street->municipality : null;
$postCode = !empty($location->address->street->postCode) ? $location->address->street->postCode : null;
$builder = new AddressBuilder($this->getName());
$builder->setCoordinates($location->point->y, $location->point->x)
->setStreetNumber($number)
->setStreetName($streetName)
->setLocality($municipality)
->setPostalCode($postCode);
$results[] = $builder->build();
return new AddressCollection($results);
}
/**
* {@inheritdoc}
*/
public function getName(): string
{
return 'urbis';
}
/**
* @param string $url
*
* @return \stdClass
*/
private function executeQuery(string $url): \stdClass
{
$content = $this->getUrlContents($url);
$json = json_decode($content);
// API error
if (!isset($json)) {
throw InvalidServerResponse::create($url);
}
return $json;
}
}