dev-master
9999999-dev http://www.GoDisco.netSymfony2 Bundle for hierarchy relationship between entities with ACL Permissions.
MIT
by AlmogBaku
acl symfony tree parent relations child
Symfony2 Bundle for hierarchy relationship between entities with ACL Permissions.
AclTree Bundle allows you to create hierarchy relationship between your entities for ACL Permissions., (*1)
For example, If I have Edit
permissions for Dan Brown books
entity, I will able to edit also the author Dan Brown
, and all of his books., (*2)
Add the following line into your composer.json
, at the require
section:, (*3)
"require": { "godisco/acltree-bundle": "dev-master"
Add the AclTree Bundle to your AppKernel
(at the registerBundles()
section):, (*4)
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new GoDisco\AclTreeBundle\AclTreeBundle(), }
Using the AclTree is pretty simple! First, you need to Define your entities parents, then just use the voter to know if access is granted to user, or apply the helpers for complex queries., (*5)
, (*6)
Just add the @AclParent
annotation to the parent member of your entity., (*7)
use GoDisco\AclTreeBundle\Annotation\AclParent; use Acme\AuthorBundle\Entity\Author; /** * Book * @ORM\Table * @ORM\Entity */ class Book { /** * @var Author * * @ORM\ManyToOne(targetEntity="Acme\AuthorBundle\Entity\Author") * @ORM\JoinColumn(name="author_id", referencedColumnName="id") * @AclParent */ private $author; }
*** Don't forget to include the annotation by adding the use GoDisco\AclTreeBundle\Annotation\AclParent;
part! ***, (*8)
You can use the regular Symfony ACL voter, in order to know if access is granted to the user:, (*9)
$vote= $this->get('security.context')->isGranted('VIEW', $entity);
(*) For more Information about using voters, visit the Symfony documentation., (*10)
, (*11)
In addition, you can also use the voter as annotation (duh?):, (*12)
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security; class BookController extends Controller { /** * @Security("is_granted('VIEW', post)") */ public function showAction(Post $post) { //... } }
(*) For more Information about using security annotations, visit the Symfony documentation., (*13)
For filtering only entities the user have access to, apply the @acl.tree.helper service on your QueryBuilder
object:, (*14)
QueryBuilder
object which select all the entities, before the filtering.VIEW
Query
object./** @var \Doctrine\ORM\EntityManager\EntityManager $em */ $em = $this->getDoctrine()->getManager(); /** @var \GoDisco\AclTreeBundle\Security\Helper\AclTreeHelper $aclHelper */ $aclHelper = $this->get("acl.tree.helper"); $qb = $em->createQueryBuilder(); $qb = $qb->select('e') ->from('GoDisco\EventBundle\Entity\Event', 'e') ->join("e.line", "l"); // The query object returned here is a clone obj so, you can always use $qb->getQuery() to get the original query obj $query = $aclHelper->apply($qb); // showing for current logged-in user $result = $query->getArrayResult(); return $result;
For showing all the users who have directly access to the entity, apply the acl.object.users
service on your Entity
object:, (*15)
EDIT
/** @var \Doctrine\ORM\EntityManager\EntityManager $em */ $em = $this->getDoctrine()->getManager(); $repo = $em->getRepository("VenueBundle:Venue"); $entity = $repo->find(1); /** @var \GoDisco\AclTreeBundle\Security\Helper\AclUsersHelper $aclHelper */ $aclHelper = $this->get("acl.object.users"); $users = $aclUsers->get($entity, 'Acme\UserBundle\Entity\User'); // showing for current logged-in user return $users;
In some cases, you may wish to change the default MaskBuilder
, to a custom mask map.
You can just modify the MaskBuilder by overriding the security.acl.mask_builder
parameter., (*16)
For instance, example for changing the AclTree to use The Sonata's ACL MaskBuilder:, (*17)
parameters: security.acl.mask_builder: Sonata\AdminBundle\Security\Acl\Permission\MaskBuilder
Symfony2 Bundle for hierarchy relationship between entities with ACL Permissions.
MIT
acl symfony tree parent relations child