-
Notifications
You must be signed in to change notification settings - Fork 0
/
ItemsList.php
427 lines (379 loc) · 11 KB
/
ItemsList.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
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
<?php
/**
* Ветка дерева элементов.
* @author Kurianov S.A. <massivbarn@gmail.com>
* @package ItemsList
* @version 1.0.0
*/
class ItemsList
{
/**
* Массив вложенных
* @var array ItemsList
*/
private $items = [];
/**
* @var string
*/
private $name;
/**
* Массив значений
* @var array Item
*/
private $options = [];
/**
* ItemsList constructor.
* @param string $name
*/
public function __construct($name = '')
{
$this->name = $name;
}
/**
* Добавить итем
* @param Item $item
*/
public function addOption(Item $item)
{
$this->options[] = &$item;
}
/**
* @return string
*/
public function getName() : string
{
return $this->name;
}
/**
* Ищем в массиве $options
*
* @param array $arr маршрут
* @param int $id текущее положение
* @param string $filter фильтр
* @return mixed
*/
public function searchValue(array $arr, int $id, string $filter)
{
// если в фильтре возвращаем null
if($this->filter($this->getName(), $filter))
return null;
$count = count($arr)-1;
// если последний элемент
if($count == $id)
{
$options = $this->options;
foreach ($options as $option)
{
if($option->getName() == $arr[$id] && !$this->filter($option->getName(), $filter))
{
return $option->getValue();
}
}
return null;
}
// Ищем во вложенных
foreach ($this->items as $item)
{
if($item->getName() == $arr[$id])
{
return $item->searchValue($arr, $id + 1, $filter);
}
}
return null;
}
/**
* Получить значение
*
* @param string $key
* @param string $filter
* @param string $delimiter
* @return mixed
*/
public function getValue(string $key, string $filter, string $delimiter='_')
{
$arr = explode($delimiter, $key);
return $this->searchValue($arr,0, $filter);
}
/**
* ищем ItemsList с созданием если еще нет
* @param array $arr
* @param int $id
* @return ItemsList
*/
public function &search(array $arr, int $id)
{
$res = null;
foreach ($this->items as &$item)
{
if ($item->getName() == $arr[$id] ) {
$res =& $item;
}
}
if(!$res)
{
$count =count($arr);
if($count==1)
{
$res =&$this;
}
else if(isset($arr[$id+1]) && ($id+1)<$count)
{
$res = new ItemsList($arr[$id]);
$this->items[] = &$res;
}
else
{
$res =&$this;
}
}
if(isset($arr[$id+1]))
{
return $res->search($arr,$id+1);
}
else
{
return $res;
}
}
/**
* Ищем ItemsList для извлечения параметров
* @param array $arr
* @param int $id
* @param string $filter
* @return ItemsList
*/
public function &searchItems(array $arr, int $id, string $filter) : ItemsList
{
$res = null;
foreach ($this->items as &$item)
{
if ($item->getName() == $arr[$id] && ($this->filter($item->getName(), $filter)==false))
{
$res =&$item;
}
}
if(isset($arr[$id+1]) && isset($res))
{
$count = count($arr);
if($id == $count-2)
return $res;
return $res->searchItems($arr, $id+1, $filter);
}
if($res)
{
return $res;
}
$res = new ItemsList("NULL");
return $res;
}
/**
* Ищем ItemsList
* @param array $arr
* @param int $id
* @param string $filter
* @return ItemsList
*/
public function &searchItemsBranch(array $arr, int $id, string $filter) : ItemsList
{
$res = null;
foreach ($this->items as &$item)
{
if ($item->getName() == $arr[$id] && ($this->filter($item->getName(), $filter)==false))
{
$res =&$item;
}
}
if(isset($arr[$id+1]) && isset($res))
{
return $res->searchItemsBranch($arr, $id+1, $filter);
}
if($res)
{
return $res;
}
$res = new ItemsList("NULL");
return $res;
}
/**
* Ищем параметр в текущем элементе
*
* @param string $name
* @param string $filter
* @return Item
*/
public function &searchOption(string $name, string $filter)
{
foreach ($this->options as &$option)
{
if($option->getName() == $name && ($this->filter($option->getName(), $filter)==false))
return $option;
}
$res = new Item();
return $res;
}
/**
* Ищем параметр по ключу
*
* @param string $key
* @param string $filter
* @param string $delimiter
* @return Item
*/
public function &getOptionItem(string $key, string $filter, string $delimiter='_')
{
$arr = explode($delimiter, $key);
$items = &$this->searchItems($arr,0, $filter);
if($items->getName()=='NULL')
{
$res = new Item();
return $res;
}
$option = &$items->searchOption($arr[count($arr)-1], $filter);
return $option;
}
/**
* Назанчит функцию обратоки для Item->value
*
* @param string $key
* @param $func
* @param string $delimiter
*/
public function setParseFunction(string $key, $func, string $delimiter='_')
{
$option = &$this->getOptionItem($key, '', $delimiter);
if($option->getId()>0)
{
$option->setParseFunction($func);
}
}
/**
* Назначить тип
* @param string $key
* @param string $type
* @param string $delimiter
*/
public function setTypeValue(string $key, string $type, string $delimiter='_')
{
$option = &$this->getOptionItem($key, '', $delimiter);
if($option->getId()>0)
{
$option->setTypeValue($type);
}
}
/**
* Получить массив имея: значение текущего элемента
* @param string $filter
* @return array
*/
public function getOptions(string $filter = '') : array
{
$result =[];
$arrFilter = explode(',', $filter);
foreach ($this->options as $option)
{
if(!in_array($option->getName(), $arrFilter, true))
{
$result[] = ['name'=>$option->getName(), 'value'=>$option->getValue()];
}
}
return $result;
}
/**
* Ищем ветку
*
* @param string $key
* @param string $filter
* @param string $delimiter
* @return ItemsList
*/
public function &getBranch(string $key, string $filter, string $delimiter='_') : ItemsList
{
$arr = explode($delimiter, $key);
$items = &$this->searchItemsBranch($arr,0, $filter);
return $items;
}
/**
* Экранируем спец.символы
* @param string $str
* @return string
*/
public function formatStrJSON(string $str) : string
{
$escapers = array("\\", "/", "\"", "\n", "\r", "\t", "\x08", "\x0c");
$replacements = array("\\\\", "\\/", "\\\"", "\\n", "\\r", "\\t", "\\f", "\\b");
return str_replace($escapers, $replacements, $str);
}
/**
* Проверить на присутсвие в фильтре
*
* @param string $name
* @param string $filter
* @return bool
*/
public function filter(string $name, string $filter) : bool
{
if(strlen($filter)<1)
return false;
$arr = explode(',',$filter);
return in_array($name, $arr, true);
}
/**
* Генерируем json массив
* @param string $filter
* @param string $pref
* @return string
*/
public function getJSON(string $filter, string $pref='')
{
// проверяем есть ли в фильтре
if($this->filter($this->name, $filter))
return '';
$result ='';
//если первый элемент
if(strlen($this->name)>0)
{
$result .= $pref . "\"" . $this->name . "\":\r\n";
}
$result .= $pref."{\r\n";
// фильтр для параметром, добавляем дубликаты в фильтр чтобы небыло ошибок
if($filter)
{
$filterOptions = $filter.',tabs,person,whatRequired,docs,incases,likbez';
}
else
{
$filterOptions = 'tabs,person,whatRequired,docs,incases,likbez';
}
$options = $this->getOptions($filterOptions);
$count = count($options);
// из текущего элемента паарметры
for($i=0;$i<$count;$i++)
{
$value = $this->formatStrJSON($options[$i]['value']);
//$value = json_encode($value);
$name = $options[$i]['name'];
$result .=' '.$pref.'"'.$name.'":"'.$value."\"";
if($i != ($count-1)) $result .=",\r\n";
else $result .="";
}
$old_count=$count;
$count = count($this->items);
// если последний то ненадо запятую
if($count>0 && $old_count>0) $result .=",\r\n";
else $result .="\r\n";
// вложенные элементы
for($i=0;$i<$count;$i++)
{
$res = $this->items[$i]->getJSON($filter, $pref.' ');
if(strlen($res)>1)
{
if($i>0) $result .=",\r\n";
else $result .= "\r\n";
$result .= $this->items[$i]->getJSON($filter, $pref . ' ');
}
}
$result .= "\r\n";
$result .= $pref."}";
return $result;
}
}