-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrolesResources.php
117 lines (98 loc) · 3.39 KB
/
rolesResources.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
<?php
/**
* @Author: nguyen
* @Date: 2020-12-29 11:18:57
* @Last Modified by: Alex Dong
* @Last Modified time: 2020-12-29 14:36:26
*/
//// Setup Base
$folder = ''; //Folder Name
$file = $folder ? "$folder/app/bootstrap.php" : "app/bootstrap.php";
if(!file_exists ($file)) $file = "app/bootstrap.php";
if(file_exists ($file)){
require dirname(__FILE__) .'/' .$file;
$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
} else {die('Not found bootstrap.php');}
/* For get RoleType and UserType for create Role */;
class getAclResourcesAdmin extends \Magento\Framework\App\Http
implements \Magento\Framework\AppInterface {
/**
* Root ACL Resource
*
* @var \Magento\Framework\Acl\RootResource
*/
protected $_rootResource;
/**
* Rules collection factory
*
* @var \Magento\Authorization\Model\ResourceModel\Rules\CollectionFactory
*/
protected $_rulesCollectionFactory;
/**
* Acl resource provider
*
* @var \Magento\Framework\Acl\AclResource\ProviderInterface
*/
protected $_aclResourceProvider;
/**
* @var \Magento\Integration\Helper\Data
*/
protected $_integrationData;
public function launch()
{
$this->_rootResource = $this->_objectManager->create('\Magento\Framework\Acl\RootResource');
$this->_rulesCollectionFactory = $this->_objectManager->create('\Magento\Authorization\Model\ResourceModel\Rules\CollectionFactory');
$this->_aclResourceProvider = $this->_objectManager->create('\Magento\Framework\Acl\AclResource\ProviderInterface');
$this->_integrationData = $this->_objectManager->create('\Magento\Integration\Helper\Data');
echo '<pre>';
$resources = $this->_aclResourceProvider->getAclResources();
var_dump($this->getValueAclResources($resources));
// var_dump($this->getTree());
echo '</pre>';
echo 'done';
return $this->_response;
}
public function getValueAclResources($resources, $dataArray=[])
{
foreach ($resources as $value) {
if(!isset($value['id'])) continue;
$dataArray[] = $value['id'];
if(isset($value['children'])){
/* Keep tree */
// $dataArray[] = $this->getValueAclResources($value['children'], $dataArray);
$dataArray = $this->getValueAclResources($value['children'], $dataArray);
}
}
return $dataArray;
}
/**
* Get Json Representation of Resource Tree
*
* @return array
*/
public function getTree()
{
return $this->_integrationData->mapResources($this->getAclResources());
}
/**
* Get lit of all ACL resources declared in the system.
*
* @return array
*/
private function getAclResources()
{
$resources = $this->_aclResourceProvider->getAclResources();
$configResource = array_filter(
$resources,
function ($node) {
return isset($node['id'])
&& $node['id'] == 'Magento_Backend::admin';
}
);
$configResource = reset($configResource);
return isset($configResource['children']) ? $configResource['children'] : [];
}
}
/** @var \Magento\Framework\App\Http $app */
$app = $bootstrap->createApplication('getAclResourcesAdmin');
$bootstrap->run($app);