-
Notifications
You must be signed in to change notification settings - Fork 521
Expand file tree
/
Copy pathGeonames.php
More file actions
278 lines (224 loc) · 8.5 KB
/
Geonames.php
File metadata and controls
278 lines (224 loc) · 8.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
<?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\Geonames;
use Geocoder\Collection;
use Geocoder\Exception\InvalidCredentials;
use Geocoder\Exception\InvalidServerResponse;
use Geocoder\Exception\UnsupportedOperation;
use Geocoder\Http\Provider\AbstractHttpProvider;
use Geocoder\Model\AddressBuilder;
use Geocoder\Model\AddressCollection;
use Geocoder\Model\AdminLevelCollection;
use Geocoder\Provider\Geonames\Model\CountryInfo;
use Geocoder\Provider\Geonames\Model\GeonamesAddress;
use Geocoder\Provider\Provider;
use Geocoder\Query\GeocodeQuery;
use Geocoder\Query\ReverseQuery;
use Psr\Http\Client\ClientInterface;
/**
* @author Giovanni Pirrotta <giovanni.pirrotta@gmail.com>
*/
final class Geonames extends AbstractHttpProvider implements Provider
{
/**
* @var string
*/
public const PREMIUM_WEBSERVICE_BASE_URL = 'https://secure.geonames.net';
/**
* @var string
*/
public const FREE_WEBSERVICE_BASE_URL = 'http://api.geonames.org';
/**
* @var string
*/
public const GEOCODE_ENDPOINT_PATH = '%s/searchJSON?q=%s&maxRows=%d&style=full&username=%s';
/**
* @var string
*/
public const REVERSE_ENDPOINT_PATH = '%s/findNearbyPlaceNameJSON?lat=%F&lng=%F&style=full&maxRows=%d&username=%s';
/**
* @var string
*/
private $username;
/**
* @var string|null
*/
private $token;
/**
* @var string
*/
private $baseUrl;
/**
* @param ClientInterface $client An HTTP adapter
* @param string $username Username login (Free registration at http://www.geonames.org/login)
* @param string|null $token Optional token for premium accounts
* @param bool $secure Use secure endpoint (https://secure.geonames.net) for premium accounts
*/
public function __construct(ClientInterface $client, string $username, ?string $token = null, bool $secure = false)
{
if (empty($username)) {
throw new InvalidCredentials('No username provided.');
}
$this->username = $username;
$this->token = $token;
// Determine base URL based on secure flag.
if ($secure === true) {
$this->baseUrl = self::PREMIUM_WEBSERVICE_BASE_URL;
} else {
$this->baseUrl = self::FREE_WEBSERVICE_BASE_URL;
}
parent::__construct($client);
}
public function geocodeQuery(GeocodeQuery $query): Collection
{
$address = $query->getText();
// This API doesn't handle IPs
if (filter_var($address, FILTER_VALIDATE_IP)) {
throw new UnsupportedOperation('The Geonames provider does not support IP addresses.');
}
$url = sprintf(
self::GEOCODE_ENDPOINT_PATH,
$this->baseUrl,
urlencode($address),
$query->getLimit(),
$this->username
);
$url = $this->appendToken($url);
return $this->executeQuery($url, $query->getLocale());
}
public function reverseQuery(ReverseQuery $query): Collection
{
$coordinates = $query->getCoordinates();
$longitude = $coordinates->getLongitude();
$latitude = $coordinates->getLatitude();
$url = sprintf(
self::REVERSE_ENDPOINT_PATH,
$this->baseUrl,
$latitude,
$longitude,
$query->getLimit(),
$this->username
);
$url = $this->appendToken($url);
return $this->executeQuery($url, $query->getLocale());
}
/**
* @return CountryInfo[]
*/
public function getCountryInfo(?string $country = null, ?string $locale = null): array
{
$url = sprintf('%s/countryInfoJSON?username=%s', $this->baseUrl, $this->username);
if (isset($country)) {
$url = sprintf('%s&country=%s', $url, $country);
}
$url = sprintf('%s&style=FULL', $url);
if (null !== $locale) {
// Locale code transformation: for example from it_IT to it
$url = sprintf('%s&lang=%s', $url, substr($locale, 0, 2));
}
$url = $this->appendToken($url);
$content = $this->getUrlContents($url);
if (null === $json = json_decode($content)) {
throw InvalidServerResponse::create($url);
}
if (!isset($json->geonames)) {
return [];
}
$data = $json->geonames;
if (empty($data)) {
return [];
}
$results = [];
foreach ($data as $item) {
$countryInfo = new CountryInfo();
$results[] = $countryInfo
->setBounds($item->south, $item->west, $item->north, $item->east)
->withContinent($item->continent ?? null)
->withCapital($item->capital ?? null)
->withLanguages($item->langesuages ?? '')
->withGeonameId($item->geonameId ?? null)
->withIsoAlpha3($item->isoAlpha3 ?? null)
->withFipsCode($item->fipsCode ?? null)
->withPopulation($item->population ?? null)
->withIsoNumeric($item->isoNumeric ?? null)
->withAreaInSqKm($item->areaInSqKm ?? null)
->withCountryCode($item->countryCode ?? null)
->withCountryName($item->countryName ?? null)
->withContinentName($item->continentName ?? null)
->withCurrencyCode($item->currencyCode ?? null);
}
return $results;
}
public function getName(): string
{
return 'geonames';
}
private function executeQuery(string $url, ?string $locale = null): AddressCollection
{
if (null !== $locale) {
// Locale code transformation: for example from it_IT to it
$url = sprintf('%s&lang=%s', $url, substr($locale, 0, 2));
}
$content = $this->getUrlContents($url);
if (null === $json = json_decode($content)) {
throw InvalidServerResponse::create($url);
}
if (isset($json->totalResultsCount) && empty($json->totalResultsCount)) {
return new AddressCollection([]);
}
if (!isset($json->geonames)) {
return new AddressCollection([]);
}
$data = $json->geonames;
if (empty($data)) {
return new AddressCollection([]);
}
$results = [];
foreach ($data as $item) {
$builder = new AddressBuilder($this->getName());
if (isset($item->bbox)) {
$builder->setBounds($item->bbox->south, $item->bbox->west, $item->bbox->north, $item->bbox->east);
}
for ($level = 1; $level <= AdminLevelCollection::MAX_LEVEL_DEPTH; ++$level) {
$adminNameProp = 'adminName'.$level;
$adminCodeProp = 'adminCode'.$level;
if (!empty($item->$adminNameProp)) {
$builder->addAdminLevel($level, $item->$adminNameProp, $item->$adminCodeProp ?? null);
}
}
$builder->setCoordinates($item->lat ?? null, $item->lng ?? null);
$builder->setLocality($item->name ?? null);
$builder->setCountry($item->countryName ?? null);
$builder->setCountryCode($item->countryCode ?? null);
$builder->setTimezone($item->timezone->timeZoneId ?? null);
/** @var GeonamesAddress $address */
$address = $builder->build(GeonamesAddress::class);
$address = $address->withName($item->name ?? null);
$address = $address->withAsciiName($item->asciiName ?? null);
$address = $address->withFclName($item->fclName ?? null);
$address = $address->withAlternateNames($item->alternateNames ?? []);
$address = $address->withPopulation($item->population ?? null);
$address = $address->withGeonameId($item->geonameId ?? null);
$address = $address->withFcode($item->fcode ?? null);
$results[] = $address;
}
return new AddressCollection($results);
}
/**
* Append token parameter to URL if token is provided.
*/
private function appendToken(string $url): string
{
if (null !== $this->token && '' !== $this->token) {
$url = sprintf('%s&token=%s', $url, $this->token);
}
return $url;
}
}