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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Element\UiComponent\Config;
use Magento\Framework\Config\Dom;
use Magento\Framework\Config\ValidationStateInterface;
/**
* Class DomMerger
*/
class DomMerger implements DomMergerInterface
{
/**
* Format of items in errors array to be used by default. Available placeholders - fields of \LibXMLError.
*/
const ERROR_FORMAT_DEFAULT = "Message: %message%\nLine: %line%\n";
/**
* @var \Magento\Framework\Config\ValidationStateInterface
*/
private $validationState;
/**
* Location schema file
*
* @var string
*/
protected $schemaFilePath;
/**
* Result DOM document
*
* @var \DOMDocument
*/
protected $domDocument;
/**
* Id attribute list
*
* @var array
*/
protected $idAttributes = [];
/**
* Context XPath
*
* @var array
*/
protected $contextXPath = [];
/**
* Is merge simple XML Element
*
* @var bool
*/
protected $isMergeSimpleXMLElement;
/**
* @var string
*/
private $schema;
/**
* Build DOM with initial XML contents and specifying identifier attributes for merging
*
* Format of $schema: Absolute schema file path or URN
* Format of $idAttributes: array('name', 'id')
* Format of $contextXPath: array('/config/ui')
* The path to ID attribute name should not include any attribute notations or modifiers -- only node names
*
* @param ValidationStateInterface $validationState
* @param string $schema
* @param bool $isMergeSimpleXMLElement
* @param array $contextXPath
* @param array $idAttributes
*/
public function __construct(
ValidationStateInterface $validationState,
$schema,
$isMergeSimpleXMLElement = false,
array $contextXPath = [],
array $idAttributes = []
) {
$this->validationState = $validationState;
$this->schema = $schema;
$this->isMergeSimpleXMLElement = $isMergeSimpleXMLElement;
$this->contextXPath = $contextXPath;
$this->idAttributes = $idAttributes;
}
/**
* Is id attribute
*
* @param string $attributeName
* @return bool
*/
protected function isIdAttribute($attributeName)
{
return in_array($attributeName, $this->idAttributes);
}
/**
* Is merge context
*
* @param string $xPath
* @return bool
*/
protected function isMergeContext($xPath)
{
foreach ($this->contextXPath as $context) {
if (strpos($xPath, $context) === 0) {
return true;
}
}
return false;
}
/**
* Is context XPath
*
* @param array $xPath
* @return bool
*/
protected function isContextXPath(array $xPath)
{
return count(array_intersect($xPath, $this->contextXPath)) === count($xPath);
}
/**
* Merges attributes of the merge node to the base node
*
* @param \DOMElement $baseNode
* @param \DOMNode $mergeNode
* @return void
*/
protected function mergeAttributes(\DOMElement $baseNode, \DOMNode $mergeNode)
{
foreach ($mergeNode->attributes as $name => $attribute) {
$baseNode->setAttribute($name, $attribute->value);
}
}
/**
* Create XPath
*
* @param \DOMNode $node
* @return string
*/
protected function createXPath(\DOMNode $node)
{
$parentXPath = '';
$currentXPath = $node->getNodePath();
if ($node->parentNode !== null && !$node->isSameNode($node->parentNode)) {
$parentXPath = $this->createXPath($node->parentNode);
$pathParts = explode('/', $currentXPath);
$currentXPath = '/' . end($pathParts);
}
$attributesXPath = '';
if ($node->hasAttributes()) {
$attributes = [];
foreach ($node->attributes as $name => $attribute) {
if ($this->isIdAttribute($name)) {
$attributes[] = sprintf('@%s="%s"', $name, $attribute->value);
break;
}
}
if (!empty($attributes)) {
if (substr($currentXPath, -1) === ']') {
$currentXPath = substr($currentXPath, 0, strrpos($currentXPath, '['));
}
$attributesXPath = '[' . implode(' and ', $attributes) . ']';
}
}
return '/' . trim($parentXPath . $currentXPath . $attributesXPath, '/');
}
/**
* Merge nested xml nodes
*
* @param \DOMXPath $rootDomXPath
* @param \DOMNodeList $insertedNodes
* @param \DOMNode $contextNode
* @return void
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.NPathComplexity)
*/
protected function nestedMerge(\DOMXPath $rootDomXPath, \DOMNodeList $insertedNodes, \DOMNode $contextNode)
{
for ($i = 0, $iLength = $insertedNodes->length; $i < $iLength; ++$i) {
$insertedItem = $insertedNodes->item($i);
switch ($insertedItem->nodeType) {
case XML_TEXT_NODE:
case XML_COMMENT_NODE:
case XML_CDATA_SECTION_NODE:
if (trim($insertedItem->textContent) !== '') {
$this->insertBefore($contextNode, $insertedItem);
}
break;
default:
$insertedXPath = $this->createXPath($insertedItem);
$rootMatchList = $rootDomXPath->query($insertedXPath, $contextNode);
$jLength = $rootMatchList->length;
if ($jLength > 0) {
for ($j = 0; $j < $jLength; ++$j) {
$rootItem = $rootMatchList->item($j);
$rootItemXPath = $this->createXPath($rootItem);
if ($this->isMergeContext($insertedXPath)) {
if ($this->isTextNode($insertedItem) && $this->isTextNode($rootItem)) {
$rootItem->nodeValue = $insertedItem->nodeValue;
} elseif (!$this->isContextXPath([$rootItemXPath, $insertedXPath])
&& !$this->hasIdAttribute($rootItem)
&& !$this->hasIdAttribute($insertedItem)
) {
if ($this->isMergeSimpleXMLElement) {
$this->nestedMerge($rootDomXPath, $insertedItem->childNodes, $rootItem);
$this->mergeAttributes($rootItem, $insertedItem);
} else {
$this->appendChild($contextNode, $insertedItem);
}
} else {
$this->nestedMerge($rootDomXPath, $insertedItem->childNodes, $rootItem);
$this->mergeAttributes($rootItem, $insertedItem);
}
} else {
$this->appendChild($contextNode, $insertedItem);
}
}
} else {
$this->appendChild($contextNode, $insertedItem);
}
break;
}
}
}
/**
* Append child node
*
* @param \DOMNode $parentNode
* @param \DOMNode $childNode
* @return void
*/
protected function appendChild(\DOMNode $parentNode, \DOMNode $childNode)
{
$importNode = $this->getDom()->importNode($childNode, true);
$parentNode->appendChild($importNode);
}
/**
* Insert before
*
* @param \DOMNode $parentNode
* @param \DOMNode $childNode
* @return void
*/
protected function insertBefore(\DOMNode $parentNode, \DOMNode $childNode)
{
$importNode = $this->getDom()->importNode($childNode, true);
$parentNode->insertBefore($importNode);
}
/**
* Check if the node content is text
*
* @param \DOMNode $node
* @return bool
*/
protected function isTextNode(\DOMNode $node)
{
return $node->childNodes->length == 1 && $node->childNodes->item(0) instanceof \DOMText;
}
/**
* Has ID attribute
*
* @param \DOMNode $node
* @return bool
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
protected function hasIdAttribute(\DOMNode $node)
{
if (!$node->hasAttributes()) {
return false;
}
foreach ($node->attributes as $name => $attribute) {
if (in_array($name, $this->idAttributes)) {
return true;
}
}
return false;
}
/**
* Recursive merging of the \DOMElement into the original document
*
* Algorithm:
* 1. Find the same node in original document
* 2. Extend and override original document node attributes and scalar value if found
* 3. Append new node if original document doesn't have the same node
*
* @param \DOMElement $node
* @throws \Magento\Framework\Exception\LocalizedException
* @return void
*/
public function mergeNode(\DOMElement $node)
{
$parentDoom = $this->getDom();
$this->nestedMerge(new \DOMXPath($parentDoom), $node->childNodes, $parentDoom->documentElement);
}
/**
* Create DOM document based on $xml parameter
*
* @param string $xml
* @return \DOMDocument
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function createDomDocument($xml)
{
$domDocument = new \DOMDocument();
$domDocument->loadXML($xml);
if ($this->validationState->isValidationRequired() && $this->schema) {
$errors = $this->validateDomDocument($domDocument);
if (count($errors)) {
throw new \Magento\Framework\Exception\LocalizedException(
new \Magento\Framework\Phrase(implode("\n", $errors))
);
}
}
return $domDocument;
}
/**
* Validate dom document
*
* @param \DOMDocument $domDocument
* @param string|null $schema
* @return array of errors
* @throws \Exception
*/
protected function validateDomDocument(\DOMDocument $domDocument, $schema = null)
{
$schema = $schema !== null ? $schema : $this->schema;
libxml_use_internal_errors(true);
try {
$errors = \Magento\Framework\Config\Dom::validateDomDocument($domDocument, $schema);
} catch (\Exception $exception) {
libxml_use_internal_errors(false);
throw $exception;
}
libxml_use_internal_errors(false);
return $errors;
}
/**
* Render error message string by replacing placeholders '%field%' with properties of \LibXMLError
*
* @param \LibXMLError $errorInfo
* @return string
* @throws \Magento\Framework\Exception\LocalizedException
*/
protected function renderErrorMessage(\LibXMLError $errorInfo)
{
$result = static::ERROR_FORMAT_DEFAULT;
foreach ($errorInfo as $field => $value) {
$result = str_replace('%' . $field . '%', trim((string)$value), $result);
}
if (strpos($result, '%') !== false) {
throw new \Magento\Framework\Exception\LocalizedException(
new \Magento\Framework\Phrase(
'Error format "' . static::ERROR_FORMAT_DEFAULT . '" contains unsupported placeholders.'
)
);
}
return $result;
}
/**
* Merge string $xml into DOM document
*
* @param string $xml
* @return void
*/
public function merge($xml)
{
if (!isset($this->domDocument)) {
$this->domDocument = $this->createDomDocument($xml);
} else {
$this->mergeNode($this->createDomDocument($xml)->documentElement);
}
}
/**
* Get DOM document
*
* @return \DOMDocument
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function getDom()
{
if (!isset($this->domDocument)) {
throw new \Magento\Framework\Exception\LocalizedException(
new \Magento\Framework\Phrase('Object DOMDocument should be created.')
);
}
return $this->domDocument;
}
/**
* Set DOM document
*
* @param \DOMDocument $domDocument
* @return void
*/
public function setDom(\DOMDocument $domDocument)
{
$this->domDocument = $domDocument;
}
/**
* Unset DOM document
*
* @return void
*/
public function unsetDom()
{
unset($this->domDocument);
}
/**
* Validate self contents towards to specified schema
*
* @param string|null $schemaFilePath
* @return array
*/
public function validate($schemaFilePath = null)
{
if (!$this->validationState->isValidationRequired()) {
return [];
}
return $this->validateDomDocument($this->getDom(), $schemaFilePath);
}
}