Symfony 3关于FOSUserBundle配置文件编辑的电子邮件确认

Symfony 3关于FOSUserBundle配置文件编辑的电子邮件确认,symfony,fosuserbundle,Symfony,Fosuserbundle,我试着跟随这个论坛,通过电子邮件讨论如何编辑fos用户包。 我创建文件 /src/AppBundle/EventListener.php namespace AppBundle\EventListener; use FOS\UserBundle\FOSUserEvents; use FOS\UserBundle\Event\GetResponseUserEvent; use FOS\UserBundle\Event\FormEvent; use FOS\UserBundle\Mailer\M

我试着跟随这个论坛,通过电子邮件讨论如何编辑fos用户包。 我创建文件

/src/AppBundle/EventListener.php

namespace AppBundle\EventListener;

use FOS\UserBundle\FOSUserEvents;
use FOS\UserBundle\Event\GetResponseUserEvent;
use FOS\UserBundle\Event\FormEvent;
use FOS\UserBundle\Mailer\MailerInterface;
use FOS\UserBundle\Util\TokenGeneratorInterface;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;

class ChangeProfileListener implements EventSubscriberInterface
{
    private $mailer;
    private $tokenGenerator;
    private $router;
    private $session;
    private $tokenStorage;

    public function __construct(
        MailerInterface $mailer,
        TokenGeneratorInterface $tokenGenerator,
        UrlGeneratorInterface $router,
        SessionInterface $session, TokenStorageInterface $tokenStorage
    ) {
        $this->mailer = $mailer;
        $this->tokenGenerator = $tokenGenerator;
        $this->router = $router;
        $this->session = $session;
        $this->tokenStorage = $tokenStorage;
    }

    public static function getSubscribedEvents()
    {
        return array(
            FOSUserEvents::PROFILE_EDIT_INITIALIZE => 'onProfileEditInitialize',
            FOSUserEvents::PROFILE_EDIT_SUCCESS => 'onProfileEditSuccess',
        );
    }

    public function onProfileEditInitialize(GetResponseUserEvent $event)
    {
        // required, because when Success's event is called, session already contains new email
        $this->email = $event->getUser()->getEmail();
    }

    public function onProfileEditSuccess(FormEvent $event)
    {
        $user = $event->getForm()->getData();
        if ($user->getEmail() !== $this->email)
        {
            // disable user
            $user->setEnabled(false);

            // send confirmation token to new email
            $user->setConfirmationToken($this->tokenGenerator->generateToken());
            $this->mailer->sendConfirmationEmailMessage($user);

            // force user to log-out
            $this->tokenStorage->setToken();

            // redirect user to check email page
            $this->session->set('fos_user_send_confirmation_email/email', $user->getEmail());
            $url = $this->router->generate('fos_user_registration_check_email');
            $event->setResponse(new RedirectResponse($url));
        }
    }
}
在职后

parameters:
    #parameter_name: value
    oc_user.email_change.listener.class: AppBundle\EventListener\ChangeProfileListener

services:
    app.form.registration:
        class: AppBundle\Form\RegistrationType
        tags:
            - { name: form.type, alias: app_user_registration }
    app.form.profileedit:
        class: AppBundle\Form\ProfileType
        tags:
            - { name: form.type, alias: app_profile_edit }
...

    oc_user.email_change.listener:
        class: %oc_user.email_change.listener.class%
        arguments: ['@fos_user.mailer', '@fos_user.util.token_generator', '@router', '@session', '@security.token_storage']
        tags:
          - { name: kernel.event_subscriber }
但我总是犯这个错误

1/1自动布线故障异常 无法自动连线服务AppBundle\EventListener\ChangeProfileListener:method\uu构造的参数$mailer引用了接口FOS\UserBundle\mailer\MailerInterface,但不存在此类服务。您可能应该将此接口别名为这些现有服务之一:fos_user.mailer.default、fos_user.mailer.twig_swift、fos_user.mailer.noop

我也重写了表单,但它可以工作

你能帮我吗

我的配置文件

# app/config/config.yml
fos_user:
    db_driver: orm # other valid values are 'mongodb' and 'couchdb'
    firewall_name: main
    user_class: AppBundle\Entity\User
    from_email:
        address: "%mailer_user%"
        sender_name: "%mailer_user%"
    registration:
        form:

            type: AppBundle\Form\RegistrationType
            # if you are using Symfony < 2.8 you should use the type name instead
            # type: app_user_registration
        confirmation:
            enabled: true
    profile:
        form:
            type: AppBundle\Form\ProfileType
fos_user.mailer:
   alias: 'fos_user.mailer.default'

错误消息laready指出:

您可能应该将此接口别名为这些现有服务之一:fos_user.mailer.default、fos_user.mailer.twig_swift、fos_user.mailer.noop


该错误发生在您的配置服务中,标记为->感谢帮助,但我不确定是否理解。。我已经启用了注册。。。。。我试着把:fos_user.mailer:alias:'fos_user.mailer.default'放在我的配置文件中???您是否遵循了以下说明:希望这样就足够了。
oc_user.email_change.listener:
    class: %oc_user.email_change.listener.class%
    arguments: [--> '@fos_user.mailer', <-- '@fos_user.util.token_generator', '@router', '@session', '@security.token_storage']
    tags:
      - { name: kernel.event_subscriber }
# app/config/config.yml
fos_user:
    # ...
    registration:
        confirmation:
            enabled: true
fos_user.mailer:
    alias: 'fos_user.mailer.default'