-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathDataObject.php
601 lines (561 loc) · 16.2 KB
/
DataObject.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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework;
/**
* Universal data container with array access implementation
*
* @api
* @SuppressWarnings(PHPMD.NumberOfChildren)
* @since 100.0.2
*/
#[\AllowDynamicProperties] //@phpstan-ignore-line
class DataObject implements \ArrayAccess
{
/**
* Object attributes
*
* @var array
*/
protected $_data = [];
/**
* Setter/Getter underscore transformation cache
*
* @var array
*/
protected static $_underscoreCache = [];
/**
* Constructor
*
* By default is looking for first argument as array and assigns it as object attributes
* This behavior may change in child classes
*
* @param array $data
*/
public function __construct(array $data = [])
{
$this->_data = $data;
}
/**
* Add data to the object.
*
* Retains previous data in the object.
*
* @param array $arr
* @return $this
*/
public function addData(array $arr)
{
if ($this->_data === []) {
$this->setData($arr);
return $this;
}
foreach ($arr as $index => $value) {
$this->setData($index, $value);
}
return $this;
}
/**
* Overwrite data in the object.
*
* The $key parameter can be string or array.
* If $key is string, the attribute value will be overwritten by $value
*
* If $key is an array, it will overwrite all the data in the object.
*
* @param string|array $key
* @param mixed $value
* @return $this
*/
public function setData($key, $value = null)
{
if ($key === (array)$key) {
$this->_data = $key;
} else {
$this->_data[$key] = $value;
}
return $this;
}
/**
* Unset data from the object.
*
* @param null|string|array $key
* @return $this
*/
public function unsetData($key = null)
{
if ($key === null) {
$this->setData([]);
} elseif (is_string($key)) {
if (isset($this->_data[$key]) || array_key_exists($key, $this->_data)) {
unset($this->_data[$key]);
}
} elseif ($key === (array)$key) {
foreach ($key as $element) {
$this->unsetData($element);
}
}
return $this;
}
/**
* Object data getter
*
* If $key is not defined will return all the data as an array.
* Otherwise it will return value of the element specified by $key.
* It is possible to use keys like a/b/c for access nested array data
*
* If $index is specified it will assume that attribute data is an array
* and retrieve corresponding member. If data is the string - it will be explode
* by new line character and converted to array.
*
* @param string $key
* @param string|int $index
* @return mixed
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
public function getData($key = '', $index = null)
{
if ('' === $key) {
return $this->_data;
}
$data = $this->_data[$key] ?? null;
if ($data === null && $key !== null && strpos($key, '/') !== false) {
/* process a/b/c key as ['a']['b']['c'] */
$data = $this->getDataByPath($key);
}
if ($index !== null) {
if ($data === (array)$data) {
$data = isset($data[$index]) ? $data[$index] : null;
} elseif (is_string($data)) {
$data = explode(PHP_EOL, $data);
$data = isset($data[$index]) ? $data[$index] : null;
} elseif ($data instanceof \Magento\Framework\DataObject) {
$data = $data->getData($index);
} else {
$data = null;
}
}
return $data;
}
/**
* Get object data by path
*
* Method consider the path as chain of keys: a/b/c => ['a']['b']['c']
*
* @param string $path
* @return mixed
*/
public function getDataByPath($path)
{
$keys = explode('/', (string)$path);
$data = $this->_data;
foreach ($keys as $key) {
if ((array)$data === $data && isset($data[$key])) {
$data = $data[$key];
} elseif ($data instanceof \Magento\Framework\DataObject) {
$data = $data->getDataByKey($key);
} else {
return null;
}
}
return $data;
}
/**
* Get object data by particular key
*
* @param string $key
* @return mixed
*/
public function getDataByKey($key)
{
return $this->_getData($key);
}
/**
* Get value from _data array without parse key
*
* @param string $key
* @return mixed
*/
protected function _getData($key)
{
if (isset($this->_data[$key])) {
return $this->_data[$key];
}
return null;
}
/**
* Set object data with calling setter method
*
* @param string $key
* @param mixed $args
* @return $this
*/
public function setDataUsingMethod($key, $args = [])
{
$method = 'set' . ($key !== null ? str_replace('_', '', ucwords($key, '_')) : '');
$this->{$method}($args);
return $this;
}
/**
* Get object data by key with calling getter method
*
* @param string $key
* @param mixed $args
* @return mixed
*/
public function getDataUsingMethod($key, $args = null)
{
$method = 'get' . ($key !== null ? str_replace('_', '', ucwords($key, '_')) : '');
return $this->{$method}($args);
}
/**
* If $key is empty, checks whether there's any data in the object
*
* Otherwise checks if the specified attribute is set.
*
* @param string $key
* @return bool
*/
public function hasData($key = '')
{
if (empty($key) || !is_string($key)) {
return !empty($this->_data);
}
return array_key_exists($key, $this->_data);
}
/**
* Convert array of object data with to array with keys requested in $keys array
*
* @param array $keys array of required keys
* @return array
*/
public function toArray(array $keys = [])
{
if (empty($keys)) {
return $this->_data;
}
$result = [];
foreach ($keys as $key) {
if (isset($this->_data[$key])) {
$result[$key] = $this->_data[$key];
} else {
$result[$key] = null;
}
}
return $result;
}
/**
* The "__" style wrapper for toArray method
*
* @param array $keys
* @return array
*/
public function convertToArray(array $keys = [])
{
return $this->toArray($keys);
}
/**
* Convert object data into XML string
*
* @param array $keys array of keys that must be represented
* @param string $rootName root node name
* @param bool $addOpenTag flag that allow to add initial xml node
* @param bool $addCdata flag that require wrap all values in CDATA
* @return string
*/
public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true)
{
$xml = '';
$data = $this->toArray($keys);
foreach ($data as $fieldName => $fieldValue) {
if ($addCdata === true) {
$fieldValue = "<![CDATA[{$fieldValue}]]>";
} else {
$fieldValue = $fieldValue !== null ? str_replace(
['&', '"', "'", '<', '>'],
['&', '"', ''', '<', '>'],
$fieldValue
) : '';
}
$xml .= "<{$fieldName}>{$fieldValue}</{$fieldName}>\n";
}
if ($rootName) {
$xml = "<{$rootName}>\n{$xml}</{$rootName}>\n";
}
if ($addOpenTag) {
$xml = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $xml;
}
return $xml;
}
/**
* The "__" style wrapper for toXml method
*
* @param array $arrAttributes array of keys that must be represented
* @param string $rootName root node name
* @param bool $addOpenTag flag that allow to add initial xml node
* @param bool $addCdata flag that require wrap all values in CDATA
* @return string
*/
public function convertToXml(
array $arrAttributes = [],
$rootName = 'item',
$addOpenTag = false,
$addCdata = true
) {
return $this->toXml($arrAttributes, $rootName, $addOpenTag, $addCdata);
}
/**
* Convert object data to JSON
*
* @param array $keys array of required keys
* @return bool|string
* @throws \InvalidArgumentException
*/
public function toJson(array $keys = [])
{
$data = $this->toArray($keys);
return \Magento\Framework\Serialize\JsonConverter::convert($data);
}
/**
* The "__" style wrapper for toJson
*
* @param array $keys
* @return bool|string
* @throws \InvalidArgumentException
*/
public function convertToJson(array $keys = [])
{
return $this->toJson($keys);
}
/**
* Convert object data into string with predefined format
*
* Will use $format as an template and substitute {{key}} for attributes
*
* @param string $format
* @return string
*/
public function toString($format = '')
{
if (empty($format)) {
$result = implode(', ', $this->getData());
} else {
preg_match_all('/\{\{([a-z0-9_]+)\}\}/is', $format, $matches);
foreach ($matches[1] as $var) {
$data = $this->getData($var) ?? '';
$format = str_replace('{{' . $var . '}}', $data, $format);
}
$result = $format;
}
return $result;
}
/**
* Set/Get attribute wrapper
*
* @param string $method
* @param array $args
* @return mixed
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function __call($method, $args)
{
// Compare 3 first letters of the method name
switch ($method[0] . ($method[1] ?? '') . ($method[2] ?? '')) {
case 'get':
if (isset($args[0]) && $args[0] !== null) {
return $this->getData(
self::$_underscoreCache[$method] ?? $this->_underscore($method),
$args[0]
);
}
return $this->getData(
self::$_underscoreCache[$method] ?? $this->_underscore($method),
$args[0] ?? null
);
case 'set':
return $this->setData(
self::$_underscoreCache[$method] ?? $this->_underscore($method),
$args[0] ?? null
);
case 'uns':
return $this->unsetData(
self::$_underscoreCache[$method] ?? $this->_underscore($method)
);
case 'has':
return isset(
$this->_data[
self::$_underscoreCache[$method] ?? $this->_underscore($method)
]
);
}
throw new \Magento\Framework\Exception\LocalizedException(
new \Magento\Framework\Phrase('Invalid method %1::%2', [get_class($this), $method])
);
}
/**
* Checks whether the object is empty
*
* @return bool
*/
public function isEmpty()
{
if (empty($this->_data)) {
return true;
}
return false;
}
/**
* Converts field names for setters and getters
*
* $this->setMyField($value) === $this->setData('my_field', $value)
* Uses cache to eliminate unnecessary preg_replace
*
* @param string $name
* @return string
*/
protected function _underscore($name)
{
if (isset(self::$_underscoreCache[$name])) {
return self::$_underscoreCache[$name];
}
$result = strtolower(
trim(
preg_replace(
'/([A-Z]|[0-9]+)/',
"_$1",
lcfirst(
substr(
$name,
3
)
)
),
'_'
)
);
self::$_underscoreCache[$name] = $result;
return $result;
}
/**
* Convert object data into string with defined keys and values.
*
* Example: key1="value1" key2="value2" ...
*
* @param array $keys array of accepted keys
* @param string $valueSeparator separator between key and value
* @param string $fieldSeparator separator between key/value pairs
* @param string $quote quoting sign
* @return string
*/
public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"')
{
$data = [];
if (empty($keys)) {
$keys = array_keys($this->_data);
}
foreach ($this->_data as $key => $value) {
if (in_array($key, $keys)) {
$data[] = $key . $valueSeparator . $quote . $value . $quote;
}
}
$res = implode($fieldSeparator, $data);
return $res;
}
/**
* Present object data as string in debug mode
*
* @param mixed $data
* @param array $objects
* @return array
*/
public function debug($data = null, &$objects = [])
{
if ($data === null) {
$hash = spl_object_hash($this);
if (!empty($objects[$hash])) {
return '*** RECURSION ***';
}
$objects[$hash] = true;
$data = $this->getData();
}
$debug = [];
foreach ($data as $key => $value) {
if (is_scalar($value)) {
$debug[$key] = $value;
} elseif (is_array($value)) {
$debug[$key] = $this->debug($value, $objects);
} elseif ($value instanceof \Magento\Framework\DataObject) {
$debug[$key . ' (' . get_class($value) . ')'] = $value->debug(null, $objects);
}
}
return $debug;
}
/**
* Implementation of \ArrayAccess::offsetSet()
*
* @param string $offset
* @param mixed $value
* @return void
* @link http://www.php.net/manual/en/arrayaccess.offsetset.php
*/
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
$this->_data[$offset] = $value;
}
/**
* Implementation of \ArrayAccess::offsetExists()
*
* @param string $offset
* @return bool
* @link http://www.php.net/manual/en/arrayaccess.offsetexists.php
*/
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return isset($this->_data[$offset]) || array_key_exists($offset, $this->_data);
}
/**
* Implementation of \ArrayAccess::offsetUnset()
*
* @param string $offset
* @return void
* @link http://www.php.net/manual/en/arrayaccess.offsetunset.php
*/
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
unset($this->_data[$offset]);
}
/**
* Implementation of \ArrayAccess::offsetGet()
*
* @param string $offset
* @return mixed
* @link http://www.php.net/manual/en/arrayaccess.offsetget.php
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
if (isset($this->_data[$offset])) {
return $this->_data[$offset];
}
return null;
}
/**
* Export only scalar and arrays properties for var_dump
*
* @return array
*/
public function __debugInfo()
{
return array_filter(
$this->_data,
function ($v) {
return is_scalar($v) || is_array($v);
}
);
}
}