mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
* Some tests * More tests! * Tests 3 * Move getScores from Candidate to Quiz * Add some suggestions for future refactoring * - **Add Gedmo doctrine-extensions and Stof bundle integration** - Added `stof/doctrine-extensions-bundle` and `gedmo/doctrine-extensions` dependencies. - Integrated `Timestampable` behavior for `Created` fields in entities. - Updated `bundles.php` to register StofDoctrineExtensionsBundle. - Added configuration for the Stof bundle. - Simplified `SeasonVoter` with `match` expression and added new tests. - Minor fixes and adjustments across various files. * WIP * All the tests * Base64 tests * Symfomny 7.4.0 * Update * Update recipe * PHP 8.5 * Rector changes * More 8.5 * Things
99 lines
3.8 KiB
PHP
99 lines
3.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Controller;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
use Symfony\Bridge\Twig\Mime\TemplatedEmail;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Mailer\Exception\TransportExceptionInterface;
|
|
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
use SymfonyCasts\Bundle\VerifyEmail\Exception\VerifyEmailExceptionInterface;
|
|
use Tvdt\Entity\User;
|
|
use Tvdt\Form\RegistrationFormType;
|
|
use Tvdt\Repository\UserRepository;
|
|
use Tvdt\Security\EmailVerifier;
|
|
|
|
final class RegistrationController extends AbstractController
|
|
{
|
|
public function __construct(private readonly EmailVerifier $emailVerifier, private readonly TranslatorInterface $translator, private readonly UserPasswordHasherInterface $userPasswordHasher, private readonly Security $security, private readonly LoggerInterface $logger, private readonly UserRepository $userRepository) {}
|
|
|
|
#[Route('/register', name: 'tvdt_register')]
|
|
public function register(
|
|
Request $request,
|
|
EntityManagerInterface $entityManager,
|
|
): Response {
|
|
$user = new User();
|
|
$form = $this->createForm(RegistrationFormType::class, $user);
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
/** @var string $plainPassword */
|
|
$plainPassword = $form->get('plainPassword')->getData();
|
|
|
|
$user->password = $this->userPasswordHasher->hashPassword($user, $plainPassword);
|
|
|
|
$entityManager->persist($user);
|
|
$entityManager->flush();
|
|
|
|
try {
|
|
// generate a signed url and email it to the user
|
|
$this->emailVerifier->sendEmailConfirmation('tvdt_verify_email', $user,
|
|
new TemplatedEmail()
|
|
->to($user->email)
|
|
->subject($this->translator->trans('Please Confirm your Email'))
|
|
->htmlTemplate('backoffice/registration/confirmation_email.html.twig'),
|
|
);
|
|
} catch (TransportExceptionInterface $e) {
|
|
$this->logger->error($e->getMessage());
|
|
}
|
|
|
|
$response = $this->security->login($user, 'form_login', 'main');
|
|
\assert($response instanceof Response);
|
|
|
|
return $response;
|
|
}
|
|
|
|
return $this->render('backoffice/registration/register.html.twig', [
|
|
'registrationForm' => $form,
|
|
]);
|
|
}
|
|
|
|
#[Route('/verify/email', name: 'tvdt_verify_email')]
|
|
public function verifyUserEmail(Request $request): RedirectResponse
|
|
{
|
|
$id = $request->query->get('id');
|
|
|
|
if (null === $id) {
|
|
return $this->redirectToRoute('tvdt_register');
|
|
}
|
|
|
|
$user = $this->userRepository->find($id);
|
|
|
|
if (null === $user) {
|
|
return $this->redirectToRoute('tvdt_register');
|
|
}
|
|
|
|
// validate email confirmation link, sets User::isVerified=true and persists
|
|
try {
|
|
$this->emailVerifier->handleEmailConfirmation($request, $user);
|
|
} catch (VerifyEmailExceptionInterface $verifyEmailException) {
|
|
$this->addFlash('verify_email_error', $this->translator->trans($verifyEmailException->getReason(), [], 'VerifyEmailBundle'));
|
|
|
|
return $this->redirectToRoute('tvdt_register');
|
|
}
|
|
|
|
$this->addFlash('success', $this->translator->trans('Your email address has been verified.'));
|
|
|
|
return $this->redirectToRoute('tvdt_backoffice_index');
|
|
}
|
|
}
|