-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathAuthorization.php
49 lines (45 loc) · 1.36 KB
/
Authorization.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
<?php
/**
* Magento Authorization component. Can be used to add authorization facility to any application
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework;
class Authorization implements \Magento\Framework\AuthorizationInterface
{
/**
* ACL policy
*
* @var \Magento\Framework\Authorization\PolicyInterface
*/
protected $_aclPolicy;
/**
* ACL role locator
*
* @var \Magento\Framework\Authorization\RoleLocatorInterface
*/
protected $_aclRoleLocator;
/**
* @param \Magento\Framework\Authorization\PolicyInterface $aclPolicy
* @param \Magento\Framework\Authorization\RoleLocatorInterface $roleLocator
*/
public function __construct(
\Magento\Framework\Authorization\PolicyInterface $aclPolicy,
\Magento\Framework\Authorization\RoleLocatorInterface $roleLocator
) {
$this->_aclPolicy = $aclPolicy;
$this->_aclRoleLocator = $roleLocator;
}
/**
* Check current user permission on resource and privilege
*
* @param string $resource
* @param string $privilege
* @return boolean
*/
public function isAllowed($resource, $privilege = null)
{
return $this->_aclPolicy->isAllowed($this->_aclRoleLocator->getAclRoleId(), $resource, $privilege);
}
}