-
-
Notifications
You must be signed in to change notification settings - Fork 436
/
Config.php
309 lines (274 loc) · 7.88 KB
/
Config.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
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage_Api
* @copyright Copyright (c) 2006-2020 Magento, Inc. (http://www.magento.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Webservice api config model
*
* @category Mage
* @package Mage_Api
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Api_Model_Config extends Varien_Simplexml_Config
{
const CACHE_TAG = 'config_api';
/**
* @inheritDoc
*/
public function __construct($sourceData = null)
{
$this->setCacheId('config_api');
$this->setCacheTags(array(self::CACHE_TAG));
$this->setCacheChecksum(null);
parent::__construct($sourceData);
$this->_construct();
}
/**
* Init configuration for webservices api
*
* @return $this
*/
protected function _construct()
{
if (Mage::app()->useCache('config_api')) {
if ($this->loadCache()) {
return $this;
}
}
$config = Mage::getConfig()->loadModulesConfiguration('api.xml');
$this->setXml($config->getNode('api'));
if (Mage::app()->useCache('config_api')) {
$this->saveCache();
}
return $this;
}
/**
* Retrieve adapter aliases from config.
*
* @return array
*/
public function getAdapterAliases()
{
$aliases = array();
foreach ($this->getNode('adapter_aliases')->children() as $alias => $adapter) {
$aliases[$alias] = array(
(string) $adapter->suggest_class, // model class name
(string) $adapter->suggest_method // model method name
);
}
return $aliases;
}
/**
* Retrieve all adapters
*
* @return array
*/
public function getAdapters()
{
$adapters = array();
foreach ($this->getNode('adapters')->children() as $adapterName => $adapter) {
/* @var Varien_SimpleXml_Element $adapter */
if (isset($adapter->use)) {
$adapter = $this->getNode('adapters/' . (string) $adapter->use);
}
$adapters[$adapterName] = $adapter;
}
return $adapters;
}
/**
* Retrieve active adapters
*
* @return array
*/
public function getActiveAdapters()
{
$adapters = array();
foreach ($this->getAdapters() as $adapterName => $adapter) {
if (!isset($adapter->active) || $adapter->active == '0') {
continue;
}
if (isset($adapter->required) && isset($adapter->required->extensions)) {
foreach ($adapter->required->extensions->children() as $extension => $data) {
if (!extension_loaded($extension)) {
continue;
}
}
}
$adapters[$adapterName] = $adapter;
}
return $adapters;
}
/**
* Retrieve handlers
*
* @return SimpleXMLElement
*/
public function getHandlers()
{
return $this->getNode('handlers')->children();
}
/**
* Retrieve resources
*
* @return SimpleXMLElement
*/
public function getResources()
{
return $this->getNode('resources')->children();
}
/**
* Retrieve resources alias
*
* @return SimpleXMLElement
*/
public function getResourcesAlias()
{
return $this->getNode('resources_alias')->children();
}
/**
* Load Acl resources from config
*
* @param Mage_Api_Model_Acl $acl
* @param Mage_Core_Model_Config_Element $resource
* @param string $parentName
* @return $this
*/
public function loadAclResources(Mage_Api_Model_Acl $acl, $resource = null, $parentName = null)
{
$resourceName = null;
if (is_null($resource)) {
$resource = $this->getNode('acl/resources');
} else {
$resourceName = (is_null($parentName) ? '' : $parentName.'/').$resource->getName();
$acl->add(Mage::getModel('api/acl_resource', $resourceName), $parentName);
}
$children = $resource->children();
if (empty($children)) {
return $this;
}
foreach ($children as $res) {
if ($res->getName() != 'title' && $res->getName() != 'sort_order') {
$this->loadAclResources($acl, $res, $resourceName);
}
}
return $this;
}
/**
* Get acl assert config
*
* @param string $name
* @return bool|Mage_Core_Model_Config_Element|SimpleXMLElement
*/
public function getAclAssert($name = '')
{
$asserts = $this->getNode('acl/asserts');
if (''===$name) {
return $asserts;
}
if (isset($asserts->$name)) {
return $asserts->$name;
}
return false;
}
/**
* Retrieve privilege set by name
*
* @param string $name
* @return bool|Mage_Core_Model_Config_Element|SimpleXMLElement
*/
public function getAclPrivilegeSet($name = '')
{
$sets = $this->getNode('acl/privilegeSets');
if (''===$name) {
return $sets;
}
if (isset($sets->$name)) {
return $sets->$name;
}
return false;
}
/**
* @param string|null $resourceName
* @return array
*/
public function getFaults($resourceName = null)
{
if (is_null($resourceName)
|| !isset($this->getResources()->$resourceName)
|| !isset($this->getResources()->$resourceName->faults)) {
$faultsNode = $this->getNode('faults');
} else {
$faultsNode = $this->getResources()->$resourceName->faults;
}
/* @var Varien_Simplexml_Element $faultsNode */
$translateModule = 'api';
if (isset($faultsNode['module'])) {
$translateModule = (string) $faultsNode['module'];
}
$faults = array();
foreach ($faultsNode->children() as $faultName => $fault) {
$faults[$faultName] = array(
'code' => (string) $fault->code,
'message' => Mage::helper($translateModule)->__((string)$fault->message)
);
}
return $faults;
}
/**
* Retrieve cache object
*
* @return Zend_Cache_Core
*/
public function getCache()
{
return Mage::app()->getCache();
}
/**
* @param string $id
* @return bool|mixed
*/
protected function _loadCache($id)
{
return Mage::app()->loadCache($id);
}
/**
* @param string $data
* @param string $id
* @param array $tags
* @param bool $lifetime
* @return bool|Mage_Core_Model_App
*/
protected function _saveCache($data, $id, $tags = array(), $lifetime = false)
{
return Mage::app()->saveCache($data, $id, $tags, $lifetime);
}
/**
* @param string $id
* @return Mage_Core_Model_App
*/
protected function _removeCache($id)
{
return Mage::app()->removeCache($id);
}
} // Class Mage_Api_Model_Config End