1

我想使用 isGranted('EDIT', $userObject) 允许所有管理员和经理以及那个用户编辑给定的用户数据。

我应该使用 ACL 来控制编辑 $userObject 吗?我已经编写了额外的 Voter 来检查登录的用户和给定的对象是否相同或者用户是经理或管理员。

在 acl 中,我必须为所有管理员、经理和那个用户添加 userObject 的 ACE。

推荐哪种方式?我是 Symfony 的新手..

以下是选民代码:

function vote(TokenInterface $token, $object, array $attributes)
{
    $intersect=array_intersect(array('EDIT','VIEW' ), $attributes);
    if (!empty($intersect))
    {
        //intersect is not empty, it seems to edit or view are in $attributes
        //voter grants privileges for [user->granted object]
        //manager->every customer, child-manager
        //admin->every customer and manager
        if ($token->getUser()->isAdmin())
        {
            return VoterInterface::ACCESS_GRANTED;
        }
        elseif ($token->getUser()->isCustomer())
        {
            //voter not want to think about customer grants, because customer grants currently are held in ACL
            return VoterInterface::ACCESS_ABSTAIN;
        }
        /* @var $object \PSB\StoreBundle\Entity\Customer */
        if (is_a($object, '\PSB\StoreBundle\Entity\Customer'))
        {

            if ($token->getUser()->isManager())
            {
                //managers also edit customers
                return VoterInterface::ACCESS_GRANTED;
            }
        }
        elseif (is_a($object, '\PSB\StoreBundle\Entity\Manager'))
        {
            /* @var $object \PSB\StoreBundle\Entity\Manager */
            if ($token->getUser()->isManager())
            {
                //manager can edit own children
                if ($token->getUser() == $object->getParent())
                {
                    return VoterInterface::ACCESS_GRANTED;
                }
            }
        }
    }
    return VoterInterface::ACCESS_ABSTAIN;
}
4

1 回答 1

4

当您的模型已经存储了知道是否应该授予操作所需的数据时,让 ACL 与您的真实数据保持同步真的很烦人。

因此,您显然应该为此实施自己的选民。

PS:你应该使用$object instanceof Class而不是is_a($object, 'Class')

于 2013-01-09T20:43:32.007 回答