-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSPW.php
192 lines (157 loc) · 6.34 KB
/
SPW.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
<?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\SPW;
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 proj4php\Point;
use proj4php\Proj;
use proj4php\Proj4php;
use Psr\Http\Client\ClientInterface;
use SoapClient;
/**
* @author Jonathan Beliën <jbe@geo6.be>
*/
final class SPW extends AbstractHttpProvider implements Provider
{
/**
* @var string
*/
const WSDL_ENDPOINT_URL = 'https://geoservices.wallonie.be/geolocalisation/soap/?wsdl';
/**
* @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 SPW 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.');
}
$result = $this->executeQuery('searchPositionScored', ['search' => $address]);
// no result
if (!isset($result->x) || !isset($result->y)) {
return new AddressCollection([]);
}
$results = [];
$proj4 = new Proj4php();
$proj31370 = new Proj('EPSG:31370', $proj4);
$proj4326 = new Proj('EPSG:4326', $proj4);
$pointSrc = new Point($result->x, $result->y, $proj31370);
$coordinates = $proj4->transform($proj4326, $pointSrc);
$streetName = !empty($result->rue->nom) ? $result->rue->nom : null;
$number = !empty($result->num) ? $result->num : null;
$municipality = !empty($result->rue->commune) ? $result->rue->commune : null;
$postCode = !empty($result->rue->cps) ? (is_array($result->rue->cps) ? implode(', ', $result->rue->cps) : (string) $result->rue->cps) : null;
$subLocality = !empty($result->rue->localites) ? (is_array($result->rue->localites) ? implode(', ', $result->rue->localites) : $result->rue->localites) : null;
$lowerLeftSrc = new Point($result->rue->xMin, $result->rue->yMin, $proj31370);
$lowerLeft = $proj4->transform($proj4326, $lowerLeftSrc);
$upperRightSrc = new Point($result->rue->xMax, $result->rue->yMax, $proj31370);
$upperRight = $proj4->transform($proj4326, $upperRightSrc);
$builder = new AddressBuilder($this->getName());
$builder->setCoordinates($coordinates->y, $coordinates->x)
->setStreetNumber($number)
->setStreetName($streetName)
->setLocality($municipality)
->setPostalCode($postCode)
->setSubLocality($subLocality)
->setBounds(
$lowerLeft->y,
$lowerLeft->x,
$upperRight->y,
$upperRight->x
);
$results[] = $builder->build();
return new AddressCollection($results);
}
/**
* {@inheritdoc}
*/
public function reverseQuery(ReverseQuery $query): Collection
{
$coordinates = $query->getCoordinates();
$proj4 = new Proj4php();
$proj31370 = new Proj('EPSG:31370', $proj4);
$proj4326 = new Proj('EPSG:4326', $proj4);
$queryPointSrc = new Point($coordinates->getLongitude(), $coordinates->getLatitude(), $proj4326);
$queryCoordinates = $proj4->transform($proj31370, $queryPointSrc);
$result = $this->executeQuery('getNearestPosition', [
'x' => $queryCoordinates->x,
'y' => $queryCoordinates->y,
]);
$results = [];
$pointSrc = new Point($result->x, $result->y, $proj31370);
$coordinates = $proj4->transform($proj4326, $pointSrc);
$streetName = !empty($result->rue->nom) ? $result->rue->nom : null;
$number = !empty($result->num) ? $result->num : null;
$municipality = !empty($result->rue->commune) ? $result->rue->commune : null;
$postCode = !empty($result->rue->cps) ? (is_array($result->rue->cps) ? implode(', ', $result->rue->cps) : (string) $result->rue->cps) : null;
$subLocality = !empty($result->rue->localites) ? (is_array($result->rue->localites) ? implode(', ', $result->rue->localites) : $result->rue->localites) : null;
$lowerLeftSrc = new Point($result->rue->xMin, $result->rue->yMin, $proj31370);
$lowerLeft = $proj4->transform($proj4326, $lowerLeftSrc);
$upperRightSrc = new Point($result->rue->xMax, $result->rue->yMax, $proj31370);
$upperRight = $proj4->transform($proj4326, $upperRightSrc);
$builder = new AddressBuilder($this->getName());
$builder->setCoordinates($coordinates->y, $coordinates->x)
->setStreetNumber($number)
->setStreetName($streetName)
->setLocality($municipality)
->setPostalCode($postCode)
->setSubLocality($subLocality)
->setBounds(
$lowerLeft->y,
$lowerLeft->x,
$upperRight->y,
$upperRight->x
);
$results[] = $builder->build();
return new AddressCollection($results);
}
/**
* {@inheritdoc}
*/
public function getName(): string
{
return 'spw';
}
/**
* @param string $url
*
* @return \stdClass
*/
private function executeQuery(string $function, array $data): \stdClass
{
$client = new SoapClient(self::WSDL_ENDPOINT_URL);
$result = $client->__soapCall($function, [$data]);
// API error
if (!isset($result->return)) {
throw InvalidServerResponse::create(implode(', ', $data));
}
return $result->return;
}
}