-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGoogleMapsPlaces.php
More file actions
443 lines (361 loc) · 13.5 KB
/
GoogleMapsPlaces.php
File metadata and controls
443 lines (361 loc) · 13.5 KB
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<?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\GoogleMapsPlaces;
use Geocoder\Collection;
use Geocoder\Exception\InvalidArgument;
use Geocoder\Exception\InvalidCredentials;
use Geocoder\Exception\InvalidServerResponse;
use Geocoder\Exception\QuotaExceeded;
use Geocoder\Exception\UnsupportedOperation;
use Geocoder\Http\Provider\AbstractHttpProvider;
use Geocoder\Model\AddressBuilder;
use Geocoder\Model\AddressCollection;
use Geocoder\Provider\GoogleMapsPlaces\Model\GooglePlace;
use Geocoder\Provider\GoogleMapsPlaces\Model\OpeningHours;
use Geocoder\Provider\GoogleMapsPlaces\Model\Photo;
use Geocoder\Provider\GoogleMapsPlaces\Model\PlusCode;
use Geocoder\Provider\Provider;
use Geocoder\Query\GeocodeQuery;
use Geocoder\Query\Query;
use Geocoder\Query\ReverseQuery;
use Psr\Http\Client\ClientInterface;
/**
* @author atymic <atymicq@gmail.com>
*/
final class GoogleMapsPlaces extends AbstractHttpProvider implements Provider
{
/**
* @var string
*/
public const SEARCH_ENDPOINT_URL_SSL = 'https://maps.googleapis.com/maps/api/place/textsearch/json';
/**
* @var string
*/
public const FIND_ENDPOINT_URL_SSL = 'https://maps.googleapis.com/maps/api/place/findplacefromtext/json';
/**
* @var string
*/
public const NEARBY_ENDPOINT_URL_SSL = 'https://maps.googleapis.com/maps/api/place/nearbysearch/json';
/**
* @var string
*/
public const GEOCODE_MODE_FIND = 'find';
/**
* @var string
*/
public const GEOCODE_MODE_SEARCH = 'search';
/**
* @var string
*/
public const GEOCODE_MODE_NEARBY = 'nearby';
/**
* @var string
*/
public const DEFAULT_GEOCODE_MODE = self::GEOCODE_MODE_FIND;
/**
* @var string
*/
public const DEFAULT_FIELDS = 'formatted_address,geometry,icon,name,permanently_closed,photos,place_id,plus_code,types';
/**
* @var string|null
*/
private $apiKey;
/**
* @param ClientInterface $client An HTTP adapter
* @param string $apiKey Google Maps Places API Key
*/
public function __construct(ClientInterface $client, string $apiKey)
{
parent::__construct($client);
$this->apiKey = $apiKey;
}
/**
* @throws UnsupportedOperation
* @throws InvalidArgument
*/
public function geocodeQuery(GeocodeQuery $query): Collection
{
if (filter_var($query->getText(), FILTER_VALIDATE_IP)) {
throw new UnsupportedOperation('The GoogleMapsPlaces provider does not support IP addresses');
}
if (self::GEOCODE_MODE_FIND === $query->getData('mode', self::DEFAULT_GEOCODE_MODE)) {
return $this->fetchUrl(self::FIND_ENDPOINT_URL_SSL, $this->buildFindPlaceQuery($query));
}
if (self::GEOCODE_MODE_SEARCH === $query->getData('mode', self::DEFAULT_GEOCODE_MODE)) {
return $this->fetchUrl(self::SEARCH_ENDPOINT_URL_SSL, $this->buildPlaceSearchQuery($query));
}
throw new InvalidArgument(sprintf('Mode must be one of `%s, %s`', self::GEOCODE_MODE_FIND, self::GEOCODE_MODE_SEARCH));
}
/**
* @throws InvalidArgument
*/
public function reverseQuery(ReverseQuery $query): Collection
{
// for backward compatibility: use SEARCH as default mode (includes formatted_address)
if (self::GEOCODE_MODE_SEARCH === $query->getData('mode', self::GEOCODE_MODE_SEARCH)) {
$url = self::SEARCH_ENDPOINT_URL_SSL;
} else {
$url = self::NEARBY_ENDPOINT_URL_SSL;
}
return $this->fetchUrl($url, $this->buildNearbySearchQuery($query));
}
public function getName(): string
{
return 'google_maps_places';
}
/**
* Build query for the find place API.
*
* @return array<string, mixed>
*/
private function buildFindPlaceQuery(GeocodeQuery $geocodeQuery): array
{
$query = [
'input' => $geocodeQuery->getText(),
'inputtype' => 'textquery',
'fields' => self::DEFAULT_FIELDS,
];
if (null !== $geocodeQuery->getLocale()) {
$query['language'] = $geocodeQuery->getLocale();
}
// If query has bounds, set location bias to those bounds
if (null !== $bounds = $geocodeQuery->getBounds()) {
$query['locationbias'] = sprintf(
'rectangle:%s,%s|%s,%s',
$bounds->getSouth(),
$bounds->getWest(),
$bounds->getNorth(),
$bounds->getEast()
);
}
if (null !== $geocodeQuery->getData('fields')) {
$query['fields'] = $geocodeQuery->getData('fields');
}
return $query;
}
/**
* Build query for the place search API.
*
* @return array<string, mixed>
*/
private function buildPlaceSearchQuery(GeocodeQuery $geocodeQuery): array
{
$query = [
'query' => $geocodeQuery->getText(),
];
if (null !== $geocodeQuery->getLocale()) {
$query['language'] = $geocodeQuery->getLocale();
}
$query = $this->applyDataFromQuery($geocodeQuery, $query, [
'region',
'type',
'opennow',
'minprice',
'maxprice',
]);
if (null !== $geocodeQuery->getData('location') && null !== $geocodeQuery->getData('radius')) {
$query['location'] = (string) $geocodeQuery->getData('location');
$query['radius'] = (int) $geocodeQuery->getData('radius');
}
return $query;
}
/**
* Build query for the nearby search api.
*
* @return array<string, mixed>
*/
private function buildNearbySearchQuery(ReverseQuery $reverseQuery): array
{
// for backward compatibility: use SEARCH as default mode (includes formatted_address)
$mode = $reverseQuery->getData('mode', self::GEOCODE_MODE_SEARCH);
$query = [
'location' => sprintf(
'%s,%s',
$reverseQuery->getCoordinates()->getLatitude(),
$reverseQuery->getCoordinates()->getLongitude()
),
'rankby' => 'prominence',
];
if (null !== $reverseQuery->getLocale()) {
$query['language'] = $reverseQuery->getLocale();
}
$validParameters = [
'keyword',
'type',
'name',
'minprice',
'maxprice',
'name',
'opennow',
'radius',
];
if (self::GEOCODE_MODE_NEARBY === $mode) {
$validParameters[] = 'rankby';
}
$query = $this->applyDataFromQuery($reverseQuery, $query, $validParameters);
if (self::GEOCODE_MODE_NEARBY === $mode) {
// mode:nearby, rankby:prominence, parameter:radius
if ('prominence' === $query['rankby'] && !isset($query['radius'])) {
throw new InvalidArgument('`radius` is required to be set in the Query data for Reverse Geocoding when ranking by prominence');
}
// mode:nearby, rankby:distance, parameter:type/keyword/name
if ('distance' === $query['rankby']) {
if (isset($query['radius'])) {
unset($query['radius']);
}
$requiredParameters = array_intersect(['keyword', 'type', 'name'], array_keys($query));
if (1 !== count($requiredParameters)) {
throw new InvalidArgument('One of `type`, `keyword`, `name` is required to be set in the Query data for Reverse Geocoding when ranking by distance');
}
}
}
if (self::GEOCODE_MODE_SEARCH === $mode) {
// mode:search, parameter:type
if (!isset($query['type'])) {
throw new InvalidArgument('`type` is required to be set in the Query data for Reverse Geocoding when using search mode');
}
}
return $query;
}
/**
* @param array<string, mixed> $request
* @param string[] $keys
*
* @return array<string, mixed>
*/
private function applyDataFromQuery(Query $query, array $request, array $keys)
{
foreach ($keys as $key) {
if (null === $query->getData($key)) {
continue;
}
$request[$key] = $query->getData($key);
}
return $request;
}
/**
* @param array<string, mixed> $query
*/
private function fetchUrl(string $url, array $query): AddressCollection
{
$query['key'] = $this->apiKey;
$url = sprintf('%s?%s', $url, http_build_query($query));
$content = $this->getUrlContents($url);
$json = $this->validateResponse($url, $content);
if (empty($json->candidates) && empty($json->results) || 'OK' !== $json->status) {
return new AddressCollection([]);
}
$results = [];
$apiResults = isset($json->results) ? $json->results : $json->candidates;
foreach ($apiResults as $result) {
$builder = new AddressBuilder($this->getName());
$this->parseCoordinates($builder, $result);
if (isset($result->place_id)) {
$builder->setValue('id', $result->place_id);
}
/** @var GooglePlace $address */
$address = $builder->build(GooglePlace::class);
$address = $address->withId($builder->getValue('id'));
if (isset($result->name)) {
$address = $address->withName($result->name);
}
if (isset($result->formatted_address)) {
$address = $address->withFormattedAddress($result->formatted_address);
}
if (isset($result->vicinity)) {
$address = $address->withVicinity($result->vicinity);
}
if (isset($result->types)) {
$address = $address->withType($result->types);
}
if (isset($result->icon)) {
$address = $address->withIcon($result->icon);
}
if (isset($result->plus_code)) {
$address = $address->withPlusCode(new PlusCode(
$result->plus_code->global_code,
$result->plus_code->compound_code
));
}
if (isset($result->photos)) {
$address = $address->withPhotos(Photo::getPhotosFromResult($result->photos));
}
if (isset($result->price_level)) {
$address = $address->withPriceLevel($result->price_level);
}
if (isset($result->rating)) {
$address = $address->withRating((float) $result->rating);
}
if (isset($result->formatted_phone_number)) {
$address = $address->withFormattedPhoneNumber($result->formatted_phone_number);
}
if (isset($result->international_phone_number)) {
$address = $address->withInternationalPhoneNumber($result->international_phone_number);
}
if (isset($result->website)) {
$address = $address->withWebsite($result->website);
}
if (isset($result->opening_hours)) {
$address = $address->withOpeningHours(OpeningHours::fromResult($result->opening_hours));
}
if (isset($result->permanently_closed)) {
$address = $address->setPermanentlyClosed();
}
$results[] = $address;
}
return new AddressCollection($results);
}
/**
* Decode the response content and validate it to make sure it does not have any errors.
*
* @param string $content
*
* @throws InvalidCredentials
* @throws InvalidServerResponse
* @throws QuotaExceeded
*/
private function validateResponse(string $url, $content): \stdClass
{
$json = json_decode($content);
// API error
if (!isset($json)) {
throw InvalidServerResponse::create($url);
}
if ('INVALID_REQUEST' === $json->status) {
throw new InvalidArgument(sprintf('Invalid Request %s', $url));
}
if ('REQUEST_DENIED' === $json->status && 'The provided API key is invalid.' === $json->error_message) {
throw new InvalidCredentials(sprintf('API key is invalid %s', $url));
}
if ('REQUEST_DENIED' === $json->status) {
throw new InvalidServerResponse(sprintf('API access denied. Request: %s - Message: %s', $url, $json->error_message));
}
if ('OVER_QUERY_LIMIT' === $json->status) {
throw new QuotaExceeded(sprintf('Daily quota exceeded %s', $url));
}
return $json;
}
/**
* Parse coordinates and bounds.
*/
private function parseCoordinates(AddressBuilder $builder, \stdClass $result): void
{
$coordinates = $result->geometry->location;
$builder->setCoordinates($coordinates->lat, $coordinates->lng);
if (isset($result->geometry->viewport)) {
$builder->setBounds(
$result->geometry->viewport->southwest->lat,
$result->geometry->viewport->southwest->lng,
$result->geometry->viewport->northeast->lat,
$result->geometry->viewport->northeast->lng
);
}
}
}