简体   繁体   English

Symfony2 ACL-isGranted始终返回false

[英]Symfony2 ACL - isGranted always returns false

I've spent a few hours already trying to make Symfony's ACL working in my project but I'm simply not able to find a solution. 我已经花了几个小时试图使Symfony的ACL在我的项目中工作,但是我根本找不到解决方案。 This is my testing example: 这是我的测试示例:

$competition = $this->getDoctrine()->getManager()
    ->getRepository('MyBundle:Competition')->find(158);

$objectIdentity = ObjectIdentity::fromDomainObject($competition);
$aclProvider = $this->get('security.acl.provider');
try {
    $acl = $aclProvider->findAcl($objectIdentity);
} catch (\Symfony\Component\Security\Acl\Exception\AclNotFoundException $e) {
    $acl = $aclProvider->createAcl($objectIdentity);
}

// retrieving the security identity of the currently logged-in user
$securityIdentity = UserSecurityIdentity::fromAccount(
        $this->get('security.context')->getToken()->getUser());

// grant owner access
$acl->insertObjectAce($securityIdentity, MaskBuilder::MASK_EDIT);
$aclProvider->updateAcl($acl);

.

$competition = $this->getDoctrine()->getManager()
    ->getRepository('MyBundle:Competition')->find(158);

$foo = $this->get('security.context')->isGranted(MaskBuilder::MASK_EDIT, $competition);

var_dump($foo); // always bool(false)

I can see data showing up in the tables but isGranted always returns false. 我可以看到表中显示了数据,但isGranted始终返回false。 Any idea what am I doing wrong? 知道我在做什么错吗?

acl_classes : acl_classes

id  class_type
2   Me\MyBundle\Entity\Competition

acl_entries : acl_entries

id  class_id    object_identity_id  security_identity_id    field_name  ace_order   mask    granting    granting_strategy   audit_success   audit_failure
1   2           3                   2                       NULL        0           4       1           all                 0               0

acl_object_identities : acl_object_identities

id  parent_object_identity_id   class_id    object_identifier   entries_inheriting
3   NULL                        2           158                 1

acl_object_identity_ancestors : acl_object_identity_ancestors

object_identity_id  ancestor_id
3                   3

acl_security_identities : acl_security_identities

id  identifier                  username
2   Me\MyBundle\Entity\User-Me  1

I had the same problem in my entity which implements ObjectIdentityInterface... 我在实现ObjectIdentityInterface的实体中遇到了同样的问题...

My implementation of getType was: 我对getType的实现是:

public function getType() {
      return __CLASS__;
}

this was returning the name of the class where it was declared(static), and fails in the comparisson 这将返回声明了它的类的名称(静态),并且比较失败

so i changed it to dinamically: 所以我将其更改为动态:

public function getType() {
      return get_class($this);
} 

hope it helps 希望能帮助到你

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM