15

例如,我向控制器中当前经过身份验证的用户授予一个新角色,如下所示:

$em = $this->getDoctrine()->getManager();
$loggedInUser = $this->get('security.context')->getToken()->getUser();
$loggedInUser->addRole('ROLE_XYZ');

$em->persist($loggedInUser);
$em->flush();

在下一页加载时,当我再次获取经过身份验证的用户时:

$loggedInUser = $this->get('security.context')->getToken()->getUser();

他们没有被授予角色。我猜这是因为用户存储在会话中并且需要刷新。

我该怎么做呢?

如果这有所作为,我正在使用 FOSUserBundle。

编辑:这个问题最初是在 Symfony 2.3 版的上下文中提出的,但下面也有更新版本的答案。

4

5 回答 5

23

尝试这个:

$em = $this->getDoctrine()->getManager();
$loggedInUser = $this->get('security.context')->getToken()->getUser();
$loggedInUser->addRole('ROLE_XYZ');

$em->persist($loggedInUser);
$em->flush();

$token = new \Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken(
  $loggedInUser,
  null,
  'main',
  $loggedInUser->getRoles()
);

$this->container->get('security.context')->setToken($token);
于 2013-10-31T22:19:58.877 回答
15

在上一个答案中不需要重置令牌。只需在您的安全配置文件(security.yml 等)中,添加以下内容:

security:
    always_authenticate_before_granting: true
于 2015-02-28T12:47:39.153 回答
14

当一个答案被接受时,Symfony 实际上有一种刷新用户对象的本地方式。本文感谢 Joeri Timmermans 。

刷新用户对象的步骤:

  1. 让你的用户实体实现接口

Symfony\Component\Security\Core\User\EquatableInterface

  1. 实现抽象函数isEqualTo:

public function isEqualTo(UserInterface $user)
{
    if ($user instanceof User) {
        // Check that the roles are the same, in any order
        $isEqual = count($this->getRoles()) == count($user->getRoles());
        if ($isEqual) {
            foreach($this->getRoles() as $role) {
                $isEqual = $isEqual && in_array($role, $user->getRoles());
            }
        }
        return $isEqual;
    }

    return false;
}

如果添加了任何新角色,上面的代码会刷新 User 对象。同样的原则也适用于您比较的其他领域。

于 2015-08-23T21:46:48.580 回答
4
$user = $this->getUser();
$userManager = $this->get('fos_user.user_manager');
$user->addRole('ROLE_TEACHER');
$userManager->updateUser($user);
$newtoken = new \Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken($user,null,'main', $user->getRoles());
$token = $this->get('security.token_storage')->setToken($newtoken);
于 2017-10-16T18:13:46.967 回答
3

在 Symfony 4 中

public function somename(ObjectManager $om, TokenStorageInterface $ts)
    {
        $user = $this->getUser();
        if ($user) {
            $user->setRoles(['ROLE_VIP']); //change/update role
            // persist if need
            $om->flush();
            $ts->setToken(
                new PostAuthenticationGuardToken($user, 'main', $user->getRoles())
            );
            //...
        } else {
            //...
        }
    }
于 2019-08-27T14:26:06.793 回答