forked from geocoder-php/Geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOIORestProvider.php
More file actions
120 lines (98 loc) · 3.39 KB
/
Copy pathOIORestProvider.php
File metadata and controls
120 lines (98 loc) · 3.39 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
<?php
/**
* 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;
use Geocoder\Exception\UnsupportedException;
use Geocoder\Exception\NoResultException;
/**
* @author Antoine Corcy <contact@sbin.dk>
*/
class OIORestProvider extends AbstractProvider implements ProviderInterface
{
/**
* @var string
*/
const GEOCODE_ENDPOINT_URL = 'http://geo.oiorest.dk/adresser.json?q=%s';
/**
* @var string
*/
const REVERSE_ENDPOINT_URL = 'http://geo.oiorest.dk/adresser/%F,%F.json';
/**
* {@inheritDoc}
*/
public function getGeocodedData($address)
{
// This API doesn't handle IPs
if (filter_var($address, FILTER_VALIDATE_IP)) {
throw new UnsupportedException('The OIORestProvider does not support IP addresses.');
}
$address = rawurlencode($address);
$query = sprintf(self::GEOCODE_ENDPOINT_URL, $address);
$data = $this->executeQuery($query);
$results = array();
foreach ($data as $item) {
$results[] = $this->getResultArray($item);
}
return $results;
}
/**
* {@inheritDoc}
*/
public function getReversedData(array $coordinates)
{
$query = sprintf(self::REVERSE_ENDPOINT_URL, $coordinates[0], $coordinates[1]);
$data = $this->executeQuery($query);
return array($this->getResultArray($data));
}
/**
* {@inheritDoc}
*/
public function getName()
{
return 'oio_rest';
}
/**
* @param string $query
*
* @return array
*/
protected function executeQuery($query)
{
$content = $this->getAdapter()->getContent($query);
if (null === $content) {
throw new NoResultException(sprintf('Could not execute query %s', $query));
}
$data = (array) json_decode($content, true);
if (empty($data) || false === $data) {
throw new NoResultException(sprintf('Could not execute query %s', $query));
}
return $data;
}
/**
* @param array $data
*
* @return array
*/
protected function getResultArray(array $data)
{
return array_merge($this->getDefaults(), array(
'latitude' => isset($data['wgs84koordinat']['bredde']) ? $data['wgs84koordinat']['bredde'] : null,
'longitude' => isset($data['wgs84koordinat']['længde']) ? $data['wgs84koordinat']['længde'] : null,
'streetNumber' => isset($data['husnr']) ? $data['husnr'] : null,
'streetName' => isset($data['vejnavn']['navn']) ? $data['vejnavn']['navn'] : null,
'city' => isset($data['postnummer']['navn']) ? $data['postnummer']['navn'] : null,
'zipcode' => isset($data['postnummer']['nr']) ? $data['postnummer']['nr'] : null,
'cityDistrict' => isset($data['kommune']['navn']) ? $data['kommune']['navn'] : null,
'region' => isset($data['region']['navn']) ? $data['region']['navn'] : null,
'regionCode' => isset($data['region']['nr']) ? $data['region']['nr'] : null,
'country' => 'Denmark',
'countryCode' => 'DK',
'timezone' => 'Europe/Copenhagen'
));
}
}