12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- /*
- * This file is part of the Sonata package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- */
- namespace Sonata\UserBundle\Form\Handler;
- use Symfony\Component\Form\Form;
- use Symfony\Component\HttpFoundation\Request;
- use FOS\UserBundle\Model\UserInterface;
- use FOS\UserBundle\Model\UserManagerInterface;
- /**
- *
- * This file is an adapted version of FOS User Bundle ProfileFormHandler class
- *
- * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
- */
- class ProfileFormHandler
- {
- /**
- * @var \Symfony\Component\HttpFoundation\Request
- */
- protected $request;
- /**
- * @var \FOS\UserBundle\Model\UserManagerInterface
- */
- protected $userManager;
- /**
- * @var \Symfony\Component\Form\Form
- */
- protected $form;
- /**
- * @param Form $form
- * @param \Symfony\Component\HttpFoundation\Request $request
- * @param UserManagerInterface $userManager
- */
- public function __construct(Form $form, Request $request, UserManagerInterface $userManager)
- {
- $this->form = $form;
- $this->request = $request;
- $this->userManager = $userManager;
- }
- /**
- * @param UserInterface $user
- *
- * @return bool
- */
- public function process(UserInterface $user)
- {
- $this->form->setData($user);
- if ('POST' == $this->request->getMethod()) {
- $this->form->bindRequest($this->request);
- if ($this->form->isValid()) {
- $this->onSuccess($user);
- return true;
- }
- // Reloads the user to reset its username. This is needed when the
- // username or password have been changed to avoid issues with the
- // security layer.
- $this->userManager->reloadUser($user);
- }
- return false;
- }
- /**
- * @param UserInterface $user
- */
- protected function onSuccess(UserInterface $user)
- {
- $this->userManager->updateUser($user);
- }
- }
|