94 lines
3.0 KiB
PHP
94 lines
3.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the FOSUserBundle package.
|
|
*
|
|
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace FOS\UserBundle\Controller;
|
|
|
|
use FOS\UserBundle\Event\FilterUserResponseEvent;
|
|
use FOS\UserBundle\Event\FormEvent;
|
|
use FOS\UserBundle\Event\GetResponseUserEvent;
|
|
use FOS\UserBundle\Form\Factory\FactoryInterface;
|
|
use FOS\UserBundle\FOSUserEvents;
|
|
use FOS\UserBundle\Model\UserInterface;
|
|
use FOS\UserBundle\Model\UserManagerInterface;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
|
|
|
|
/**
|
|
* Controller managing the password change.
|
|
*
|
|
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
|
|
* @author Christophe Coevoet <stof@notk.org>
|
|
*/
|
|
class ChangePasswordController extends Controller
|
|
{
|
|
private $eventDispatcher;
|
|
private $formFactory;
|
|
private $userManager;
|
|
|
|
public function __construct(EventDispatcherInterface $eventDispatcher, FactoryInterface $formFactory, UserManagerInterface $userManager)
|
|
{
|
|
$this->eventDispatcher = $eventDispatcher;
|
|
$this->formFactory = $formFactory;
|
|
$this->userManager = $userManager;
|
|
}
|
|
|
|
/**
|
|
* Change user password.
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function changePasswordAction(Request $request)
|
|
{
|
|
$user = $this->getUser();
|
|
if (!is_object($user) || !$user instanceof UserInterface) {
|
|
throw new AccessDeniedException('This user does not have access to this section.');
|
|
}
|
|
|
|
$event = new GetResponseUserEvent($user, $request);
|
|
$this->eventDispatcher->dispatch(FOSUserEvents::CHANGE_PASSWORD_INITIALIZE, $event);
|
|
|
|
if (null !== $event->getResponse()) {
|
|
return $event->getResponse();
|
|
}
|
|
|
|
$form = $this->formFactory->createForm();
|
|
$form->setData($user);
|
|
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
$event = new FormEvent($form, $request);
|
|
$this->eventDispatcher->dispatch(FOSUserEvents::CHANGE_PASSWORD_SUCCESS, $event);
|
|
|
|
$this->userManager->updateUser($user);
|
|
|
|
if (null === $response = $event->getResponse()) {
|
|
$url = $this->generateUrl('fos_user_profile_show');
|
|
$response = new RedirectResponse($url);
|
|
}
|
|
|
|
$this->eventDispatcher->dispatch(FOSUserEvents::CHANGE_PASSWORD_COMPLETED, new FilterUserResponseEvent($user, $request, $response));
|
|
|
|
return $response;
|
|
}
|
|
|
|
return $this->render('@FOSUser/ChangePassword/change_password.html.twig', array(
|
|
'form' => $form->createView(),
|
|
));
|
|
}
|
|
}
|