访问控制列表 ACL(Access Control Lists ACL)

Phalcon在权限方面通过 Phalcon\Acl 提供了一个轻量级的 ACL(访问控制列表)。Access Control Lists (ACL)允许系统对用户的访问权限进行控制,比如允许访问某些资源而不允许访问其它资源等。这里我们建议开发者了解一些关于ACL的技术。

ACL有两部分组成即角色和资源。资源即是ACL定义的权限所依附的对象。角色即是ACL所字义的请求者的身份,ACL决定了角色对资源的访问权限,允许访问或拒绝访问。

创建 ACL(Creating An ACL)

这个组件起先是设计工作在内存中的, 这样做提供了更高的访问速度。 Phalcon\Acl 构造器的第一个参数用于设置取得ACL的方式。 下面是使用内存适配器的例子:

  1. <?php
  2.  
  3. use Phalcon\Acl\Adapter\Memory as AclList;
  4.  
  5. $acl = new AclList();

默认情况下 Phalcon\Acl 允许我们访问未定义的资源中的action,为了提高安全性, 我们设置默认访问级别为‘拒绝’。

  1. <?php
  2.  
  3. // 设置默认访问级别为拒绝
  4. $acl->setDefaultAction(Phalcon\Acl::DENY);

添加角色(Adding Roles to the ACL)

角色即是权限的集合体,其中定义了我们对资源的访问权限。 例如, 我们会把一个组织内的不同的人定义为不同的角色。 The Phalcon\Acl\Role类使用一种更有组织的方式来定义角色。 这里我们创建一些角色:

  1. <?php
  2.  
  3. use Phalcon\Acl\Role;
  4.  
  5. // 创建角色
  6. // The first parameter is the name, the second parameter is an optional description.
  7. $roleAdmins = new Role("Administrators", "Super-User role");
  8. $roleGuests = new Role("Guests");
  9.  
  10. // 添加 "Guests" 角色到ACL
  11. $acl->addRole($roleGuests);
  12.  
  13. // 添加"Designers"到ACL, 仅使用此字符串。
  14. $acl->addRole("Designers");

上面我们看到,我们可以直接使用字符串来定义角色。

添加资源(Adding Resources)

资源即是访问控制要控制的对象之一。 正常情况下在mvc中资源一般是控制器。 Phalcon中我们使用 Phalcon\Acl\Resource 来定义资源。非常重要的一点即是我们把相关的action或操作添加到资源中这样ACL才知道控制什么资源。

  1. <?php
  2.  
  3. use Phalcon\Acl\Resource;
  4.  
  5. // 定义 "Customers" 资源
  6. $customersResource = new Resource("Customers");
  7.  
  8. // 为 "customers"资源添加一组操作
  9. $acl->addResource($customersResource, "search");
  10. $acl->addResource($customersResource, array("create", "update"));

定义访问控制(Defining Access Controls)

至此我们定义了角色及资源, 现在是定义ACL的时候了,即是定义角色对资源的访问。 这个部分是极其重要的,特别是在我们设定了默认的访问级别后。

  1. <?php
  2.  
  3. // 设置角色对资源的访问级别
  4. $acl->allow("Guests", "Customers", "search");
  5. $acl->allow("Guests", "Customers", "create");
  6. $acl->deny("Guests", "Customers", "update");

allow()方法指定了允许角色对资源的访问, deny()方法则反之。

我们还可以指定第四个参数,设置回调函数,来处理来自 isAllowed() 方法的数据:

  1. <?php
  2.  
  3. // 设置角色对资源的访问级别
  4. $acl->allow("Guests", "Customers", "search", function ($role, $resource, $access, $data, $allow) {
  5. return $data % 2 === 0;
  6. });
  7.  
  8. // Returns true
  9. $acl->isAllowed("Guests", "Customers", "search", 4);

查询 ACL(Querying an ACL)

一旦访问控制表定义之后, 我们就可以通过它来检查角色是否有访问权限了。

  1. <?php
  2.  
  3. // 查询角色是否有访问权限
  4. $acl->isAllowed("Guests", "Customers", "edit"); // Returns 0
  5. $acl->isAllowed("Guests", "Customers", "search"); // Returns 1
  6. $acl->isAllowed("Guests", "Customers", "create"); // Returns 1

使用角色感知对象与资源感知对象(Objects as role name and resource name)

角色感知类必须实现 Phalcon\Acl\RoleAware 接口,资源感知类必须实现 Phalcon\Acl\ResourceAware 接口。

角色感知类 UserRoles

  1. <?php
  2.  
  3. class UserRoles extends Phalcon\Mvc\Model implements Phalcon\Acl\RoleAware
  4. {
  5. public function getId()
  6. {
  7. return $this->id;
  8. }
  9.  
  10. // Implemented function from RoleAware Interface
  11. public function getRoleName()
  12. {
  13. return $this->rolename;
  14. }
  15. }

资源感知类 AclResources

  1. <?php
  2.  
  3. class AclResources extends Phalcon\Mvc\Model implements Phalcon\Acl\ResourceAware
  4. {
  5. public function getId()
  6. {
  7. return $this->id;
  8. }
  9.  
  10. public function getUserId()
  11. {
  12. return $this->user_id;
  13. }
  14.  
  15. // Implemented function from ResourceAware Interface
  16. public function getResourceName()
  17. {
  18. return $this->resourcename;
  19. }
  20. }

我们可以在 isAllowed() 方法中使用它们:

  1. <?php
  2.  
  3. $acl = new Phalcon\Acl\Adapter\Memory;
  4. $acl->allow("Guests", "Customers", "search");
  5. $acl->allow("Guests", "Customers", "create");
  6. $acl->deny("Guests", "Customers", "update");
  7.  
  8. // resourcename is "Customers", user_id is 2
  9. $customer = AclResources::findFirst(1);
  10.  
  11. // rolename is "Designers"
  12. $designer = UserRoles::findFirst(1);
  13. // rolename is "Guests"
  14. $guest = UserRoles::findFirst(2);
  15. // rolename is "Guests"
  16. $anotherGuest = UserRoles::findFirst(3);
  17.  
  18. // Returns false
  19. $acl->isAllowed($designer, $customer, "search");
  20.  
  21. // Returns true
  22. $acl->isAllowed($guest, $customer, "search");
  23.  
  24. // Returns true
  25. $acl->isAllowed($anotherGuest, $customer, "search");

我们还可以在 allow()deny() 方法自定义回调函数,来处理角色和资源:

  1. <?php
  2.  
  3. $acl = new Phalcon\Acl\Adapter\Memory;
  4. $acl->allow("Guests", "Customers", "search", function (UserRoles $user, AclResources $resource) {
  5. return $user->getId() == $resource->getUserId();
  6. });
  7.  
  8. // Returns false
  9. $acl->isAllowed($designer, $customer, "search");

角色继承(Roles Inheritance)

我们可以使用 Phalcon\Acl\Role 提供的继承机制来构造更复杂的角色。 Phalcon中的角色可以继承来自其它角色的权限, 这样就可以实现更巧妙的资源访问控制。 如果要继承权限用户, 我们需要在添加角色函数的第二个参数中写上要继承的那个角色实例。

  1. <?php
  2.  
  3. use Phalcon\Acl\Role;
  4.  
  5. // ...
  6.  
  7. // 创建角色
  8. $roleAdmins = new Role("Administrators", "Super-User role");
  9. $roleGuests = new Role("Guests");
  10.  
  11. // 添加 "Guests" 到 ACL
  12. $acl->addRole($roleGuests);
  13.  
  14. // 使Administrators继承Guests的访问权限
  15. $acl->addRole($roleAdmins, $roleGuests);

序列化 ACL 列表(Serializing ACL lists)

为了提高性能, Phalcon\Acl 的实例可以被实例化到APC, session, 文本或数据库中, 这样开发者就不需要重复的定义acl了。 下面展示了如何去做:

  1. <?php
  2.  
  3. use Phalcon\Acl\Adapter\Memory as AclList;
  4.  
  5. // ...
  6.  
  7. // 检查ACL数据是否存在
  8. if (!is_file("app/security/acl.data")) {
  9.  
  10. $acl = new AclList();
  11.  
  12. // ... Define roles, resources, access, etc
  13.  
  14. // 保存实例化的数据到文本文件中
  15. file_put_contents("app/security/acl.data", serialize($acl));
  16. } else {
  17.  
  18. // 返序列化
  19. $acl = unserialize(file_get_contents("app/security/acl.data"));
  20. }
  21.  
  22. // 使用ACL
  23. if ($acl->isAllowed("Guests", "Customers", "edit")) {
  24. echo "Access granted!";
  25. } else {
  26. echo "Access denied :(";
  27. }

It’s recommended to use the Memory adapter during development and use one of the other adapters in production.

ACL 事件(ACL Events)

如果需要的话 Phalcon\Acl 可以发送事件到 EventsManager 。 这里我们为acl绑定事件。其中一些事件的处理结果如果返回了false则表示正在处理的操作会被中止。支持如下的事件:

事件名 触发条件 能否中止操作
beforeCheckAccess 在权限检查之前触发 Yes
afterCheckAccess 在权限检查之后触发 No

下面的例子中展示了如何绑定事件到此组件:

  1. <?php
  2.  
  3. use Phalcon\Acl\Adapter\Memory as AclList;
  4. use Phalcon\Events\Manager as EventsManager;
  5.  
  6. // ...
  7.  
  8. // 创建事件管理器
  9. $eventsManager = new EventsManager();
  10.  
  11. // 绑定事件类型为acl
  12. $eventsManager->attach("acl", function ($event, $acl) {
  13. if ($event->getType() == "beforeCheckAccess") {
  14. echo $acl->getActiveRole(),
  15. $acl->getActiveResource(),
  16. $acl->getActiveAccess();
  17. }
  18. });
  19.  
  20. $acl = new AclList();
  21.  
  22. // Setup the $acl
  23. // ...
  24.  
  25. // 绑定eventsManager到ACL组件
  26. $acl->setEventsManager($eventManagers);

自定义适配器(Implementing your own adapters)

开发者要创建自己的扩展或已存在适配器则需要实现此 Phalcon\Acl\AdapterInterface 接口。

原文: http://www.myleftstudio.com/reference/acl.html