mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 08:14:24 +00:00
73 lines
2.4 KiB
PHP
73 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\MainBundle\Controller;
|
|
|
|
use Chill\MainBundle\Form\UserPhonenumberType;
|
|
use Chill\MainBundle\Security\ChillSecurity;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
|
use Symfony\Component\Form\FormInterface;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
final class UserProfileController extends AbstractController
|
|
{
|
|
public function __construct(
|
|
private readonly TranslatorInterface $translator,
|
|
private readonly ChillSecurity $security,
|
|
private readonly \Doctrine\Persistence\ManagerRegistry $managerRegistry,
|
|
) {}
|
|
|
|
/**
|
|
* User profile that allows editing of phonenumber and visualization of certain data.
|
|
*/
|
|
#[Route(path: '/{_locale}/main/user/my-profile', name: 'chill_main_user_profile')]
|
|
public function __invoke(Request $request)
|
|
{
|
|
if (!$this->security->isGranted('ROLE_USER')) {
|
|
throw new AccessDeniedHttpException();
|
|
}
|
|
|
|
$user = $this->security->getUser();
|
|
$editForm = $this->createPhonenumberEditForm($user);
|
|
$editForm->handleRequest($request);
|
|
|
|
if ($editForm->isSubmitted() && $editForm->isValid()) {
|
|
$phonenumber = $editForm->get('phonenumber')->getData();
|
|
|
|
$user->setPhonenumber($phonenumber);
|
|
|
|
$this->managerRegistry->getManager()->flush();
|
|
$this->addFlash('success', $this->translator->trans('user.profile.Phonenumber successfully updated!'));
|
|
|
|
return $this->redirectToRoute('chill_main_user_profile');
|
|
}
|
|
|
|
return $this->render('@ChillMain/User/profile.html.twig', [
|
|
'user' => $user,
|
|
'form' => $editForm->createView(),
|
|
]);
|
|
}
|
|
|
|
private function createPhonenumberEditForm(UserInterface $user): FormInterface
|
|
{
|
|
return $this->createForm(
|
|
UserPhonenumberType::class,
|
|
$user,
|
|
)
|
|
->add('submit', SubmitType::class, ['label' => $this->translator->trans('Save')]);
|
|
}
|
|
}
|