-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathAbstractXml.php
152 lines (139 loc) · 3.95 KB
/
AbstractXml.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
<?php
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Configuration XML-files merger
*/
namespace Magento\Framework\Config;
abstract class AbstractXml
{
/**
* Data extracted from the merged configuration files
*
* @var array
*/
protected $_data;
/**
* Dom configuration model
* @var \Magento\Framework\Config\Dom
*/
protected $_domConfig = null;
/**
* Instantiate with the list of files to merge
*
* @param array $configFiles
* @throws \InvalidArgumentException
*/
public function __construct($configFiles)
{
if (empty($configFiles)) {
throw new \InvalidArgumentException('There must be at least one configuration file specified.');
}
$this->_data = $this->_extractData($this->_merge($configFiles));
}
/**
* Get absolute path to the XML-schema file
*
* @return string
*/
abstract public function getSchemaFile();
/**
* Get absolute path to per-file XML-schema file
*
* @return string
*/
public function getPerFileSchemaFile()
{
return null;
}
/**
* Extract configuration data from the DOM structure
*
* @param \DOMDocument $dom
* @return array
*/
abstract protected function _extractData(\DOMDocument $dom);
/**
* Merge the config XML-files
*
* @param array $configFiles
* @return \DOMDocument
* @throws \Magento\Framework\Exception\LocalizedException If a non-existing or invalid XML-file passed
*/
protected function _merge($configFiles)
{
foreach ($configFiles as $key => $content) {
try {
$this->_getDomConfigModel()->merge($content);
} catch (\Magento\Framework\Config\Dom\ValidationException $e) {
throw new \Magento\Framework\Exception\LocalizedException(
new \Magento\Framework\Phrase("Invalid XML in file %1:\n%2", [$key, $e->getMessage()])
);
}
}
if ($this->_isRuntimeValidated()) {
$this->_performValidate();
}
return $this->_getDomConfigModel()->getDom();
}
/**
* Perform xml validation
*
* @param string $file
* @return $this
* @throws \Magento\Framework\Exception\LocalizedException If invalid XML-file passed
*/
protected function _performValidate($file = null)
{
if (!$this->_getDomConfigModel()->validate($this->getSchemaFile(), $errors)) {
$message = is_null($file) ? "Invalid Document \n" : "Invalid XML-file: {$file}\n";
throw new \Magento\Framework\Exception\LocalizedException(
new \Magento\Framework\Phrase($message . implode("\n", $errors))
);
}
return $this;
}
/**
* Get if xml files must be runtime validated
*
* @return boolean
*/
protected function _isRuntimeValidated()
{
return true;
}
/**
* Get Dom configuration model
*
* @return \Magento\Framework\Config\Dom
* @throws \Magento\Framework\Config\Dom\ValidationException
*/
protected function _getDomConfigModel()
{
if (is_null($this->_domConfig)) {
$schemaFile = $this->getPerFileSchemaFile() &&
$this->_isRuntimeValidated() ? $this->getPerFileSchemaFile() : null;
$this->_domConfig = new \Magento\Framework\Config\Dom(
$this->_getInitialXml(),
$this->_getIdAttributes(),
null,
$schemaFile
);
}
return $this->_domConfig;
}
/**
* Get XML-contents, initial for merging
*
* @return string
*/
abstract protected function _getInitialXml();
/**
* Get list of paths to identifiable nodes
*
* @return array
*/
abstract protected function _getIdAttributes();
}