api-skeletons / zf-oauth2-doctrine-permissions-acl
ACL permissions for zf-oauth2-doctrine
Installs: 35 780
Dependents: 1
Suggesters: 2
Security: 0
Stars: 1
Watchers: 1
Forks: 3
Open Issues: 1
Requires
- php: ^7.1
- api-skeletons/zf-oauth2-doctrine: ~2.0 || ^3.0
- api-skeletons/zf-oauth2-doctrine-identity: ~2.0 || ^3.0
- container-interop/container-interop: ^1.1
- gianarb/angry: ^0.1
Requires (Dev)
- api-skeletons/coding-standard: ^1.0
- dprevite/lint: dev-master
- phpstan/phpstan: ^0.9.2
- phpunit/phpunit: ^5.7
- satooshi/php-coveralls: ^1.0
- zendframework/zend-hydrator: ^2.2
- zendframework/zend-i18n: ^2.7
- zendframework/zend-test: ^3.0
- zfcampus/zf-apigility: ^1.3
- zfcampus/zf-apigility-doctrine: ^2.1
README
Versions
1.x for PHP 5.5 to 7.0. 2.x for PHP 7.1 onward.
About
This provides ACL for api-skeletons/zf-oauth2-doctrine. This replaces some components of zfcampus/zf-mvc-auth to enable multiple roles per user and auto injecting roles into the ACL.
This library is specifically for a many to many relationship between Role and User. If you have a one to many relationship where each user may have only one role this library is not for you.
This library depends on api-skeletons/zf-oauth2-doctrine-identity. Please see that library for implementation details.
Entity Relationship Diagram created with Skipper
Installation
Installation of this module uses composer. For composer documentation, please refer to getcomposer.org.
composer require api-skeletons/zf-oauth2-doctrine-permissions-acl
This will be added to your application's list of modules:
'modules' => array( ... 'ZF\OAuth2\Doctrine\Permissions\Acl', ),
Role Related Interfaces
The ERD above shows the Doctrine relationship to a Role
entity. To fetch Roles for a user the User enitity must implement ZF\OAuth2\Doctrine\Permissions\Acl\Role\ProviderInterface
. The Role
entity must implement Zend\Permissions\Acl\Role\RoleInterface
.
Roles may have parents. This is optional but the parent relationship is often important in ACL. To create a role hierarchy your Role entity must implement ZF\OAuth2\Doctrine\Permissions\Acl\Role\HierarchicalInterface
. This interface also implements Zend\Permissions\Acl\Role\RoleInterface
.
Adding Roles to the ACL
To copy roles into the ACL from your Role entity copy config/oauth2.doctrine.permisisons.acl.global.php.dist
to your application config/autoload/oauth2.doctrine.permisisons.acl.global.php
'zf-oauth2-doctrine-permissions-acl' => [ 'role' => [ 'entity' => 'Db\Entity\Role', 'object_manager' => 'doctrine.entitymanager.orm_default', ], ],
This will run at priority 1000 in the MvcAuthEvent::EVENT_AUTHORIZATION
event. If you do not want to autoload roles remove the 'role' configuration entirely.
Adding Resource Guards
With all of the above this library has set the stage to create permissions on your resources. All your roles may be loaded and you can follow the official Apigility guide: https://apigility.org/documentation/recipes/how-do-i-customize-authorization-for-a-particular-identity Be sure your listener(s) run at priority < 1000.
This is a short summary of the linked article.
Add this bootstrap to your Module:
namespace Application; use Zend\Mvc\MvcEvent; use Zend\Mvc\ModuleRouteListener; use Application\Authorization\AuthorizationListener; use ZF\MvcAuth\MvcAuthEvent; class Module { public function onBootstrap(MvcEvent $e) { $eventManager = $e->getApplication()->getEventManager(); $moduleRouteListener = new ModuleRouteListener(); $moduleRouteListener->attach($eventManager); $eventManager->attach( MvcAuthEvent::EVENT_AUTHORIZATION, new AuthorizationListener(), 100 // Less than 1000 to allow roles to be added first && >= 100 ); } }
Create your AuthorizationListener:
namespace Application\Authorization; use ZF\MvcAuth\MvcAuthEvent; use Db\Fixture\RoleFixture; class AuthorizationListener { public function __invoke(MvcAuthEvent $mvcAuthEvent) { $authorization = $mvcAuthEvent->getAuthorizationService(); // Deny from all $authorization->deny(); // Allow from all for oauth authentication $authorization->addResource('ZF\OAuth2\Controller\Auth::token'); $authorization->allow(null, 'ZF\OAuth2\Controller\Auth::token'); // Add application specific resources $authorization->addResource('FooBar\V1\Rest\Foo\Controller::collection'); $authorization->allow(RoleFixture::USER, 'FooBar\V1\Rest\Foo\Controller::collection', 'GET'); } }
Overriding the IS_AUTHORIZED event
An event manager on the AclAuthorization allows you to override any ACL call. For instance if you have another entity which requires permissions based in its value you can add new Roles to your ACL manually then create an override when the authorization is checked to allow for those other entity values now proxied as roles:
use ZF\OAuth2\Doctrine\Permissions\Acl\Event; use Zend\EventManager\Event as ZendEvent; // Allow membership as a role $events = $serviceManager->get('SharedEventManager'); $events->attach( Event::class, Event::IS_AUTHORIZED, function(ZendEvent $event) { if (! $event->getParam('identity') instanceof AuthenticatedIdentity) { return; } $membership = $event->getParam('identity')->getUser()->getMembership(); if ($event->getTarget()->isAllowed($membership->getName(), $event->getParam('resource'), $event->getParam('privilege'))) { $event->stopPropagation(); return true; } }, 100 );