<?php
namespace App\Controller;
use App\Entity\User;
use App\Form\ChangePasswordFormType;
use App\Form\ResetPasswordRequestFormType;
use App\Repository\MailjetApiRepository;
use App\Services\CustomMailer;
use App\Services\MailjetApiEncryptionService;
use Symfony\Bridge\Twig\Mime\TemplatedEmail;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Mailer\Mailer;
use Symfony\Component\Mime\Address;
use Symfony\Component\Mime\Email;
use Symfony\Component\Mime\Message;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
use Twig\Environment;
#[Route(path: '/reset-password')]
class ResetPasswordController extends AbstractController
{
use ResetPasswordControllerTrait;
private ResetPasswordHelperInterface $resetPasswordHelper;
private TokenStorageInterface $tokenStorage;
private string $notAnswerMail;
private Mailer $mailer;
private Environment $twig;
private MailjetApiEncryptionService $mailjetApiEncryptionService;
public function __construct(Environment $twig, CustomMailer $mailer, ResetPasswordHelperInterface $resetPasswordHelper, TokenStorageInterface $tokenStorage, ParameterBagInterface $parameterBag, MailjetApiEncryptionService $mailjetApiEncryptionService, MailjetApiRepository $mailjetApiRepository)
{
$this->resetPasswordHelper = $resetPasswordHelper;
$this->tokenStorage = $tokenStorage;
$this->twig = $twig;
$this->notAnswerMail = $parameterBag->get('not_answer_mail');
$this->mailjetApiEncryptionService = $mailjetApiEncryptionService;
$mailjetApi = $this->mailjetApiEncryptionService->decryptMailjetApi($mailjetApiRepository->findOneBy(['id' => '2']));
$this->mailer = $mailer->getMailer($mailjetApi->getUsername(), $mailjetApi->getPassword());
}
/**
* Display & process form to request a password reset.
*
*/
#[Route(path: '', name: 'app_forgot_password_request')]
public function request(Request $request): Response
{
if ($email = $request->get('email')) {
$this->destroySession($request);
}
$form = $this->createForm(ResetPasswordRequestFormType::class);
$form->handleRequest($request);
if ($form->isSubmitted() && ($form->isValid() || $form->get('email')->getData()) && $request->getMethod() == 'POST') {
return $this->processSendingPasswordResetEmail($form->get('email')->getData());
}
return $this->render('reset_password/request.html.twig', [
'requestForm' => $form->createView(),
'email' => $email,
]);
}
/**
* Confirmation page after a user has requested a password reset.
*
*/
#[Route(path: '/check-email', name: 'app_check_email')]
public function checkEmail(Request $request): Response
{
$this->destroySession($request);
// Generate a fake token if the user does not exist or someone hit this page directly.
// This prevents exposing whether or not a user was found with the given email address or not
if (null === ($resetToken = $this->getTokenObjectFromSession())) {
$resetToken = $this->resetPasswordHelper->generateFakeResetToken();
}
return $this->render('reset_password/check_email.html.twig', [
'resetToken' => $resetToken,
]);
}
/**
* Validates and process the reset URL that the user clicked in their email.
*
*/
#[Route(path: '/reset/{token}', name: 'app_reset_password')]
public function reset(Request $request, UserPasswordEncoderInterface $passwordEncoder, string $token = null): Response
{
if ($token) {
// We store the token in session and remove it from the URL, to avoid the URL being
// loaded in a browser and potentially leaking the token to 3rd party JavaScript.
$this->storeTokenInSession($token);
return $this->redirectToRoute('app_reset_password');
}
$token = $this->getTokenFromSession();
if (null === $token) {
throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
}
try {
$user = $this->resetPasswordHelper->validateTokenAndFetchUser($token);
} catch (ResetPasswordExceptionInterface $e) {
$this->addFlash('reset_password_error', sprintf(
'Un problème est survenu lors de la validation de votre demande de réinitialisation - %s',
$e->getReason()
));
return $this->redirectToRoute('app_forgot_password_request');
}
// The token is valid; allow the user to change their password.
$form = $this->createForm(ChangePasswordFormType::class);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
// A password reset token should be used only once, remove it.
$this->resetPasswordHelper->removeResetRequest($token);
// Encode the plain password, and set it.
$encodedPassword = $passwordEncoder->encodePassword(
$user,
$form->get('plainPassword')->getData()
);
$user->setPassword($encodedPassword);
$this->getDoctrine()->getManager()->flush();
// The session is cleaned up after the password has been changed.
$this->cleanSessionAfterReset();
if ($this->getUser()) {
return $this->redirectToRoute('app_logout');
}
return $this->redirectToRoute('app_home');
}
return $this->render('reset_password/reset.html.twig', [
'resetForm' => $form->createView(),
]);
}
private function processSendingPasswordResetEmail(string $emailFormData): RedirectResponse
{
$user = $this->getDoctrine()->getRepository(User::class)->findOneBy([
'email' => $emailFormData,
]);
// Do not reveal whether a user account was found or not.
if (!$user) {
return $this->redirectToRoute('app_check_email');
}
try {
$resetToken = $this->resetPasswordHelper->generateResetToken($user);
} catch (ResetPasswordExceptionInterface $e) {
// If you want to tell the user why a reset email was not sent, uncomment
// the lines below and change the redirect to 'app_forgot_password_request'.
// Caution: This may reveal if a user is registered or not.
//
// $this->addFlash('reset_password_error', sprintf(
// 'There was a problem handling your password reset request - %s',
// $e->getReason()
// ));
return $this->redirectToRoute('app_check_email');
}
$template = $this->twig->render('reset_password/email.html.twig', [
'resetToken' => $resetToken,
]);
$email = (new Email())
->from(new Address($this->notAnswerMail, 'L\'agence expert'))
->to($user->getEmail())
->subject('Réinitialisation du mot de passe de votre espace web l’agence expert.')
->html($template)
;
$this->mailer->send($email);
// Store the token object in session for retrieval in check-email route.
$this->setTokenObjectInSession($resetToken);
return $this->redirectToRoute('app_check_email');
}
private function destroySession(Request $request)
{
if ($this->getUser()) {
$this->tokenStorage->setToken(null);
$request->getSession()->invalidate();
}
}
#[Route(path: '/send-mail', name: 'send-mail')]
public function sendEmail(): JsonResponse
{
$template = $this->twig->render('reset_password/_email.html.twig', [
'resetToken' => 'TEST',
]);
$email = (new Email())
->from(new Address($this->notAnswerMail, 'l\'agence.expert'))
//->to($user->getEmail())
->to('testdevclaire@yopmail.com')
->subject('Your password reset request')
->html($template)
;
//dd($template, $email);
try {
$result = $this->mailer->send($email);
} catch (\Exception $exception) {
$result = $exception->getMessage();
}
return $this->json(['send' => $result]);
}
}