forked from geocoder-php/mapbox-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mapbox.php
424 lines (352 loc) · 11.5 KB
/
Mapbox.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<?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\Mapbox;
use Geocoder\Collection;
use Geocoder\Exception\InvalidArgument;
use Geocoder\Exception\InvalidServerResponse;
use Geocoder\Exception\UnsupportedOperation;
use Geocoder\Model\AddressCollection;
use Geocoder\Model\AddressBuilder;
use Geocoder\Query\GeocodeQuery;
use Geocoder\Query\ReverseQuery;
use Geocoder\Http\Provider\AbstractHttpProvider;
use Geocoder\Provider\Mapbox\Model\MapboxAddress;
use Geocoder\Provider\Provider;
use Http\Client\HttpClient;
final class Mapbox extends AbstractHttpProvider implements Provider
{
/**
* @var string
*/
const GEOCODE_ENDPOINT_URL_SSL = 'https://api.mapbox.com/geocoding/v5/%s/%s.json';
/**
* @var string
*/
const REVERSE_ENDPOINT_URL_SSL = 'https://api.mapbox.com/geocoding/v5/%s/%F,%F.json';
/**
* @var string
*/
const GEOCODING_MODE_PLACES = 'mapbox.places';
/**
* @var string
*/
const GEOCODING_MODE_PLACES_PERMANENT = 'mapbox.places-permanent';
/**
* @var array
*/
const GEOCODING_MODES = [
self::GEOCODING_MODE_PLACES,
self::GEOCODING_MODE_PLACES_PERMANENT,
];
/**
* @var string
*/
const TYPE_COUNTRY = 'country';
/**
* @var string
*/
const TYPE_REGION = 'region';
/**
* @var string
*/
const TYPE_POSTCODE = 'postcode';
/**
* @var string
*/
const TYPE_DISTRICT = 'district';
/**
* @var string
*/
const TYPE_PLACE = 'place';
/**
* @var string
*/
const TYPE_LOCALITY = 'locality';
/**
* @var string
*/
const TYPE_NEIGHBORHOOD = 'neighborhood';
/**
* @var string
*/
const TYPE_ADDRESS = 'address';
/**
* @var string
*/
const TYPE_POI = 'poi';
/**
* @var string
*/
const TYPE_POI_LANDMARK = 'poi.landmark';
/**
* @var array
*/
const TYPES = [
self::TYPE_COUNTRY,
self::TYPE_REGION,
self::TYPE_POSTCODE,
self::TYPE_DISTRICT,
self::TYPE_PLACE,
self::TYPE_LOCALITY,
self::TYPE_NEIGHBORHOOD,
self::TYPE_ADDRESS,
self::TYPE_POI,
self::TYPE_POI_LANDMARK,
];
const DEFAULT_TYPE = self::TYPE_ADDRESS;
/**
* @var HttpClient
*/
private $client;
/**
* @var string
*/
private $accessToken;
/**
* @var string|null
*/
private $country;
/**
* @var string
*/
private $geocodingMode;
/**
* @param HttpClient $client An HTTP adapter
* @param string $accessToken Your Mapbox access token
* @param string|null $country
* @param string $geocodingMode
*/
public function __construct(
HttpClient $client,
string $accessToken,
string $country = null,
string $geocodingMode = self::GEOCODING_MODE_PLACES
) {
parent::__construct($client);
if (!in_array($geocodingMode, self::GEOCODING_MODES)) {
throw new InvalidArgument('The Mapbox geocoding mode should be either mapbox.places or mapbox.places-permanent.');
}
$this->client = $client;
$this->accessToken = $accessToken;
$this->country = $country;
$this->geocodingMode = $geocodingMode;
}
public function geocodeQuery(GeocodeQuery $query): Collection
{
// Mapbox API returns invalid data if IP address given
// This API doesn't handle IPs
if (filter_var($query->getText(), FILTER_VALIDATE_IP)) {
throw new UnsupportedOperation('The Mapbox provider does not support IP addresses, only street addresses.');
}
$url = sprintf(self::GEOCODE_ENDPOINT_URL_SSL, $this->geocodingMode, rawurlencode($query->getText()));
$urlParameters = [];
if ($query->getBounds()) {
// Format is "minLon,minLat,maxLon,maxLat"
$urlParameters['bbox'] = sprintf(
'%s,%s,%s,%s',
$query->getBounds()->getWest(),
$query->getBounds()->getSouth(),
$query->getBounds()->getEast(),
$query->getBounds()->getNorth()
);
}
if (null !== $locationType = $query->getData('location_type')) {
$urlParameters['types'] = is_array($locationType) ? implode(',', $locationType) : $locationType;
} else {
$urlParameters['types'] = self::DEFAULT_TYPE;
}
if (null !== $fuzzyMatch = $query->getData('fuzzy_match')) {
$urlParameters['fuzzyMatch'] = $fuzzyMatch ? 'true' : 'false';
}
if ($urlParameters) {
$url .= '?'.http_build_query($urlParameters);
}
return $this->fetchUrl($url, $query->getLimit(), $query->getLocale(), $query->getData('country', $this->country));
}
public function reverseQuery(ReverseQuery $query): Collection
{
$coordinate = $query->getCoordinates();
$url = sprintf(
self::REVERSE_ENDPOINT_URL_SSL,
$this->geocodingMode,
$coordinate->getLongitude(),
$coordinate->getLatitude()
);
if (null !== $locationType = $query->getData('location_type')) {
$urlParameters['types'] = is_array($locationType) ? implode(',', $locationType) : $locationType;
} else {
$urlParameters['types'] = self::DEFAULT_TYPE;
}
if ($urlParameters) {
$url .= '?'.http_build_query($urlParameters);
}
return $this->fetchUrl($url, $query->getLimit(), $query->getLocale(), $query->getData('country', $this->country));
}
/**
* {@inheritdoc}
*/
public function getName(): string
{
return 'mapbox';
}
/**
* @param string $url
* @param int $limit
* @param string|null $locale
* @param string|null $country
*
* @return string query with extra params
*/
private function buildQuery(string $url, int $limit, string $locale = null, string $country = null): string
{
$parameters = array_filter([
'country' => $country,
'language' => $locale,
'limit' => $limit,
'access_token' => $this->accessToken,
]);
$separator = parse_url($url, PHP_URL_QUERY) ? '&' : '?';
return $url.$separator.http_build_query($parameters);
}
/**
* @param string $url
* @param int $limit
* @param string|null $locale
* @param string|null $country
*
* @return AddressCollection
*/
private function fetchUrl(string $url, int $limit, string $locale = null, string $country = null): AddressCollection
{
$url = $this->buildQuery($url, $limit, $locale, $country);
$content = $this->getUrlContents($url);
$json = $this->validateResponse($url, $content);
// no result
if (!isset($json['features']) || !count($json['features'])) {
return new AddressCollection([]);
}
$results = [];
foreach ($json['features'] as $result) {
if (!array_key_exists('context', $result)) {
break;
}
$builder = new AddressBuilder($this->getName());
$this->parseCoordinates($builder, $result);
// set official Mapbox place id
if (isset($result['id'])) {
$builder->setValue('id', $result['id']);
}
// set official Mapbox place id
if (isset($result['text'])) {
$builder->setValue('street_name', $result['text']);
}
// update address components
foreach ($result['context'] as $component) {
$this->updateAddressComponent($builder, $component['id'], $component);
}
/** @var MapboxAddress $address */
$address = $builder->build(MapboxAddress::class);
$address = $address->withId($builder->getValue('id'));
if (isset($result['address'])) {
$address = $address->withStreetNumber($result['address']);
}
if (isset($result['place_type'])) {
$address = $address->withResultType($result['place_type']);
}
if (isset($result['place_name'])) {
$address = $address->withFormattedAddress($result['place_name']);
}
$address = $address->withStreetName($builder->getValue('street_name'));
$address = $address->withNeighborhood($builder->getValue('neighborhood'));
$results[] = $address;
if (count($results) >= $limit) {
break;
}
}
return new AddressCollection($results);
}
/**
* Update current resultSet with given key/value.
*
* @param AddressBuilder $builder
* @param string $type Component type
* @param array $value The component value
*/
private function updateAddressComponent(AddressBuilder $builder, string $type, array $value)
{
$typeParts = explode('.', $type);
$type = reset($typeParts);
switch ($type) {
case 'postcode':
$builder->setPostalCode($value['text']);
break;
case 'locality':
$builder->setLocality($value['text']);
break;
case 'country':
$builder->setCountry($value['text']);
if (isset($value['short_code'])) {
$builder->setCountryCode(strtoupper($value['short_code']));
}
break;
case 'neighborhood':
$builder->setValue($type, $value['text']);
break;
case 'place':
$builder->addAdminLevel(1, $value['text']);
$builder->setLocality($value['text']);
break;
case 'region':
$code = null;
if (!empty($value['short_code']) && preg_match('/[A-z]{2}-/', $value['short_code'])) {
$code = preg_replace('/[A-z]{2}-/', '', $value['short_code']);
}
$builder->addAdminLevel(2, $value['text'], $code);
break;
default:
}
}
/**
* Decode the response content and validate it to make sure it does not have any errors.
*
* @param string $url
* @param string $content
*
* @return array
*/
private function validateResponse(string $url, $content): array
{
$json = json_decode($content, true);
// API error
if (!isset($json) || JSON_ERROR_NONE !== json_last_error()) {
throw InvalidServerResponse::create($url);
}
return $json;
}
/**
* Parse coordinats and bounds.
*
* @param AddressBuilder $builder
* @param array $result
*/
private function parseCoordinates(AddressBuilder $builder, array $result)
{
$coordinates = $result['geometry']['coordinates'];
$builder->setCoordinates($coordinates[1], $coordinates[0]);
if (isset($result['bbox'])) {
$builder->setBounds(
$result['bbox'][1],
$result['bbox'][0],
$result['bbox'][3],
$result['bbox'][2]
);
}
}
}