-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathkladr.php
342 lines (298 loc) · 8.18 KB
/
kladr.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
<?php
namespace Kladr;
/**
* Контроллер для доступа к сервису
* @property-read string $Error Последняя ошибка
*/
class Api
{
private $token;
private $key;
private $domain;
private $error;
/**
* @param string $token
* @param string $key
*/
public function __construct($token, $key, $domain = false)
{
$this->token = $token;
$this->key = $key;
$this->error = NULL;
$this->domain = 'http://kladr-api.ru/';
if($domain)
$this->domain = $domain;
}
private function GetURL(Query $query)
{
if (empty($this->token)) {
$this->error = 'Токен не может быть пустым';
return FALSE;
}
if (empty($query)) {
$this->error = 'Объект запроса не может быть пустым';
return FALSE;
}
return $this->domain . 'api.php?' . $query . '&token=' . $this->token;
}
/**
* Возвращает результат запроса к сервису
* @param \Kladr\Query $query Объект запроса
* @param bool $assoc Вернуть ответ в виде ассоциативного массива
* @return bool|mixed
*/
public function QueryToJson(Query $query, $assoc = FALSE)
{
$url = $this->GetURL($query);
if (! $url) return FALSE;
$context = stream_context_create(array('http' => array('header' => 'Connection: close\r\n')));
$result = file_get_contents($url, FALSE, $context);
if (preg_match('/Error: (.*)/', $result, $matches)) {
$this->error = $matches[1];
return FALSE;
}
return json_decode($result, $assoc);
}
/**
* Возвращает результат запроса к сервису в виде массива
* @param \Kladr\Query $query Объект запроса
* @return array
*/
public function QueryToArray(Query $query)
{
$arr = $this->QueryToJson($query, TRUE);
return $arr['result'];
}
/**
* Возвращает результат запроса к сервису в виде массива объектов
* @param \Kladr\Query $query Объект запроса
* @return \Kladr\Object[]
*/
public function QueryToObjects(Query $query)
{
$obResult = $this->QueryToJson($query);
if (! $obResult) return array();
if (isset($obResult->searchContext->oneString)) {
$this->error = 'Возвращение результата в виде объектов при ' .
'поиске по всему адресу (одной строкой) невозможен';
return array();
}
$arObjects = array();
foreach ($obResult->result as $obObject) {
$arObjects[] = new Object($obObject);
}
return $arObjects;
}
public function __get($name)
{
switch ($name) {
case 'Error':
return $this->error;
}
}
}
/**
* Объект КЛАДР
* @property-read string $Id Идентификатор объекта
* @property-read string $Name Название объекта
* @property-read string $Zip Почтовый индекс объекта
* @property-read string $Type Тип объекта полностью (область, район)
* @property-read string $TypeShort Тип объекта коротко (обл, р-н)
* @property-read string $ContentType Тип объекта из перечисления ObjectType
* @property-read string $Okato ОКАТО объекта
* @property-read \Kladr\Object[] $Parents Массив родительских объектов
*/
class Object
{
private $id;
private $name;
private $zip;
private $type;
private $typeShort;
private $okato;
private $contentType;
private $arParents;
/**
* @param $obObject
*/
public function __construct($obObject)
{
$this->id = $obObject->id;
$this->name = $obObject->name;
$this->zip = $obObject->zip;
$this->type = $obObject->type;
$this->typeShort = $obObject->typeShort;
$this->okato = $obObject->okato;
$this->contentType = $obObject->contentType;
$this->arParents = array();
if (isset($obObject->parents)) {
foreach ($obObject->parents as $obParent) {
$this->arParents[] = new Object($obParent);
}
}
}
public function __get($name)
{
switch ($name) {
case 'Id':
return $this->id;
case 'Name':
return $this->name;
case 'Zip':
return $this->zip;
case 'Type':
return $this->type;
case 'TypeShort':
return $this->typeShort;
case 'Okato':
return $this->okato;
case 'ContentType':
return $this->contentType;
case 'Parents':
return $this->arParents;
}
}
}
/**
* Перечисление типов объектов
*/
class ObjectType
{
/**
* Регион
*/
const Region = 'region';
/**
* Район
*/
const District = 'district';
/**
* Населённый пункт
*/
const City = 'city';
/**
* Улица
*/
const Street = 'street';
/**
* Строение
*/
const Building = 'building';
}
/**
* Класс запроса
* @property string $ParentType Тип родительского объекта для ограничения области поиска (регион, район, город)
* @property string $ParentId Идентификатор родительского объекта
* @property string $ContentType Тип искомых объектов (регион, район, город)
* @property string $ContentName Название искомого объекта (частично либо полностью)
* @property string $Zip Почтовый индекс
* @property boolean $OneString Выполнить поиск по полной записи адреса, одной строкой
* @property boolean $WithParent Получить объекты вместе с родителями
* @property integer $Limit Ограничение количества возвращаемых объектов
*/
class Query
{
private $parentType;
private $parentId;
private $contentType;
private $contentName;
private $zip;
private $oneString;
private $withParent;
private $limit;
public function __construct()
{
$this->parentType = NULL;
$this->parentId = NULL;
$this->contentType = NULL;
$this->contentName = NULL;
$this->zip = NULL;
$this->oneString = NULL;
$this->withParent = NULL;
$this->limit = NULL;
}
public function __get($name)
{
switch ($name) {
case 'ParentType':
return $this->parentType;
case 'ParentId':
return $this->parentId;
case 'ContentType':
return $this->contentType;
case 'ContentName':
return $this->contentName;
case 'Zip':
return $this->zip;
case 'OneString':
return $this->oneString;
case 'WithParent':
return $this->withParent;
case 'Limit':
return $this->limit;
default:
NULL;
}
}
public function __set($name, $value)
{
switch ($name) {
case 'ParentType':
$this->parentType = $value;
break;
case 'ParentId':
$this->parentId = $value;
break;
case 'ContentType':
$this->contentType = $value;
break;
case 'ContentName':
$this->contentName = $value;
break;
case 'Zip':
$this->zip = $value;
break;
case 'OneString':
$this->oneString = $value;
break;
case 'WithParent':
$this->withParent = $value;
break;
case 'Limit':
$this->limit = $value;
break;
}
}
public function __toString()
{
$string = '';
if ($this->parentType && $this->parentId) {
$string .= $this->parentType . 'Id=' . $this->parentId;
}
if ($this->contentName) {
if (! empty($string)) $string .= '&';
$string .= 'query=' . urlencode($this->contentName);
}
if ($this->contentType) {
if (! empty($string)) $string .= '&';
$string .= 'contentType=' . $this->contentType;
}
if ($this->zip) {
if (! empty($string)) $string .= '&';
$string .= 'zip=' . $this->zip;
}
if ($this->oneString) {
if (! empty($string)) $string .= '&';
$string .= 'oneString=1';
}
if ($this->withParent) {
if (! empty($string)) $string .= '&';
$string .= 'withParent=1';
}
if ($this->limit) {
if (! empty($string)) $string .= '&';
$string .= 'limit=' . $this->limit;
}
return $string;
}
}