aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/UserBundle/EventListener/PasswordResettingListener.php
blob: 7df093f1bc3298de413c8dbf881506086ad197d0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                            
                                   
                                 




                                                               
                                                                                       












                                                                                   
                    


                                                
                
                                                                                   
          








                                                                
<?php

namespace Wallabag\UserBundle\EventListener;

use FOS\UserBundle\Event\FormEvent;
use FOS\UserBundle\FOSUserEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;

/**
 * Listener responsible to change the redirection at the end of the password resetting.
 *
 * @see http://symfony.com/doc/current/bundles/FOSUserBundle/controller_events.html
 */
class PasswordResettingListener implements EventSubscriberInterface
{
    private $router;

    public function __construct(UrlGeneratorInterface $router)
    {
        $this->router = $router;
    }

    /**
     * {@inheritdoc}
     */
    public static function getSubscribedEvents()
    {
        return [
            FOSUserEvents::RESETTING_RESET_SUCCESS => 'onPasswordResettingSuccess',
        ];
    }

    public function onPasswordResettingSuccess(FormEvent $event)
    {
        $url = $this->router->generate('homepage');

        $event->setResponse(new RedirectResponse($url));
    }
}