FOSUserBundle 向用户添加一个组不会做任何事情

FOSUserBundle adding a group to the user wont do anything

我正在将 FOSuser 与 SonataUserBundle 一起使用,我试图在每次有人注册时将用户添加到客户组,但它不起作用。我没有收到任何错误,但我也没有添加该组...我尝试了两种方法:

1) 我覆盖了 registrationController 并使 confirmAction 像这样保存新组:

    /**
     * Tell the user his account is now confirmed
     */
    public function confirmedAction()
    {
     $repository = $em->getRepository('ApplicationSonataUserBundle:Group');
        $group = $repository->findOneByName('Clients');
        $em = $this->getDoctrine()->getEntityManager();
        $user = $this->getUser();
        $user->addGroup($group);
        $this->em->flush();
        $userManager = $this->get('fos_user.user_manager');
        $userManager->updateUser($user);
    }
}

2) 我创建了一个 eventListener 并在那里进行了分组:

<?php

namespace Application\Sonata\UserBundle\EventListener;

use FOS\UserBundle\FOSUserEvents;
use FOS\UserBundle\Event\FormEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Doctrine\ORM\EntityManager;

/**
 * Listener responsible to change the redirection at the end of the password resetting
 */
class GrouppingListener implements EventSubscriberInterface
{
    protected $em;
    protected $user;

    public function __construct(EntityManager $em)
    {
        $this->em = $em;
    }

    /**
     * {@inheritDoc}
     */
    public static function getSubscribedEvents()
    {
        return array(
            FOSUserEvents::REGISTRATION_SUCCESS => 'onRegistrationSuccess',
        );
    }

    public function onRegistrationSuccess(FormEvent $event)
    {
        $this->user = $event->getForm()->getData();
        $entity = $this->em->getRepository('ApplicationSonataUserBundle:Group')->findOneByName('Clients'); // You could do that by Id, too
        $this->user->addGroup($entity);
        $this->em->flush();

    }
}

我的群组实体正在这样扩展:

<?php

/**
 * This file is part of the <name> project.
 *
 * (c) <yourname> <youremail>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Application\Sonata\UserBundle\Entity;

use Sonata\UserBundle\Entity\BaseGroup as BaseGroup;

/**
 * This file has been generated by the Sonata EasyExtends bundle ( http://sonata-project.org/bundles/easy-extends )
 *
 * References :
 *   working with object : http://www.doctrine-project.org/projects/orm/2.0/docs/reference/working-with-objects/en
 *
 * @author <yourname> <youremail>
 */
class Group extends BaseGroup
{
    /**
     * @var integer $id
     */
    protected $id;

    /**
     * Get id
     *
     * @return integer $id
     */
    public function getId()
    {
        return $this->id;
    }
}

None 这些选项有效...我根据其他 Whosebug 答案做了这个...为什么它不起作用?

您的两个案例中都缺少 persist。为了使实体变得易于管理,首先需要将其持久化。

$user->addGroup($group);
$this->em->flush();

在您的控制器操作中将此更改为:

$user->addGroup($group);
$this->em->persist($user);
$this->em->flush();

Doctrine 中的一段 manual:

An entity can be made persistent by passing it to the EntityManager#persist($entity) method. By applying the persist operation on some entity, that entity becomes MANAGED, which means that its persistence is from now on managed by an EntityManager. As a result the persistent state of such an entity will subsequently be properly synchronized with the database when EntityManager#flush() is invoked.