6

我刚开始使用fosuserbundle,今天我激活了确认注册链接。效果很好,但是如果用户再次单击电子邮件中的确认链接,他会收到该错误:

具有确认令牌“3hiqollkisg0s4ck4w8g0gw4soc0wwoo8ko084o4ww4sss8o4”的用户不存在 404 Not Found - NotFoundHttpException

我认为这个错误应该由捆绑包处理,不是吗?

谢谢

4

1 回答 1

6

这是覆盖操作的代码。基本上只是复制了实际 FOS 动作的一部分并进行了修改。

在用户包的控制器文件夹中创建一个 RegistrationController.php 文件,并将覆盖的 RegistrationController 类放在那里。

假设您的用户包是 Acme\UserBundle:

<?php

// Acme\UserBundle\RegistrationController.php

namespace Acme\UserBundle\Controller;

use Symfony\Component\HttpFoundation\RedirectResponse;
use FOS\UserBundle\Controller\RegistrationController as BaseController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

class RegistrationController extends BaseController
{
    /**
     * Receive the confirmation token from user email provider, login the user
     */
    public function confirmAction(Request $request, $token)
    {
        $userManager = $this->container->get('fos_user.user_manager');

        $user = $userManager->findUserByConfirmationToken($token);

        if (null === $user) {

            /* ************************************
            *
            * User with token not found. Do whatever you want here
            *
            * e.g. redirect to login: 
            *
            * return new RedirectResponse($this->container->get('router')->generate('fos_user_security_login'));
            *
            **************************************/ 

        }
        else{
            // Token found. Letting the FOSUserBundle's action handle the confirmation 
            return parent::confirmAction($request, $token);
        }
    }
}
于 2013-09-06T07:46:23.123 回答