-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathResetPasswordController.php
206 lines (167 loc) · 7.35 KB
/
ResetPasswordController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?php
declare(strict_types=1);
namespace Bolt\Controller\Backend;
use Bolt\Configuration\Config;
use Bolt\Controller\TwigAwareController;
use Bolt\Entity\User;
use Bolt\Form\ChangePasswordFormType;
use Bolt\Form\ResetPasswordRequestFormType;
use Symfony\Bridge\Twig\Mime\TemplatedEmail;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Mailer\MailerInterface;
use Symfony\Component\Mime\Address;
use Symfony\Component\Mime\Email;
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Contracts\Translation\TranslatorInterface;
use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
/**
* @Route("/reset-password")
*/
class ResetPasswordController extends TwigAwareController
{
use ResetPasswordControllerTrait;
/** @var ResetPasswordHelperInterface */
private $resetPasswordHelper;
/** @var TranslatorInterface */
private $translator;
public function __construct(ResetPasswordHelperInterface $resetPasswordHelper, Config $config, TranslatorInterface $translator)
{
$this->resetPasswordHelper = $resetPasswordHelper;
$this->config = $config;
$this->translator = $translator;
}
/**
* Display & process form to request a password reset.
*
* @Route("", name="bolt_forgot_password_request")
*/
public function request(Request $request, MailerInterface $mailer): Response
{
$form = $this->createForm(ResetPasswordRequestFormType::class);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
return $this->processSendingPasswordResetEmail(
$form->get('email')->getData(),
$mailer
);
}
$templates = $this->templateChooser->forResetPasswordRequest();
return $this->render($templates, [
'requestForm' => $form->createView(),
]);
}
/**
* Confirmation page after a user has requested a password reset.
*
* @Route("/check-email", name="bolt_check_email")
*/
public function checkEmail(): Response
{
// We prevent users from directly accessing this page
if (! $this->canCheckEmail()) {
return $this->redirectToRoute('bolt_forgot_password_request');
}
$templates = $this->templateChooser->forResetPasswordCheckEmail();
return $this->render($templates, [
'tokenLifetime' => $this->resetPasswordHelper->getTokenLifetime(),
]);
}
/**
* Validates and process the reset URL that the user clicked in their email.
*
* @Route("/reset/{token}", name="bolt_reset_password")
*/
public function reset(Request $request, UserPasswordHasherInterface $passwordHasher, ?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('bolt_reset_password');
}
$token = $this->getTokenFromSession();
if ($token === null) {
throw $this->createNotFoundException($this->translator->trans('reset_password.no_token'));
}
try {
$user = $this->resetPasswordHelper->validateTokenAndFetchUser($token);
} catch (ResetPasswordExceptionInterface $e) {
$this->addFlash('reset_password_error', sprintf(
$this->translator->trans('reset_password.problem_with_request'),
$this->translator->trans($e->getReason())
));
return $this->redirectToRoute('bolt_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 = $passwordHasher->hashPassword(
$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();
// Added an additional flash message to show if password reset was successful
$this->addFlash('reset_password_success', $this->translator->trans('reset_password.reset_successful'));
return $this->redirectToRoute('bolt_login');
}
$templates = $this->templateChooser->forResetPasswordReset();
return $this->render($templates, [
'resetForm' => $form->createView(),
]);
}
protected function processSendingPasswordResetEmail(string $emailFormData, MailerInterface $mailer): RedirectResponse
{
$user = $this->getDoctrine()->getRepository(User::class)->findOneBy([
'email' => $emailFormData,
]);
// Marks that you are allowed to see the bolt_check_email page.
$this->setCanCheckEmailInSession();
// Do not reveal whether a user account was found or not.
if (! $user) {
return $this->redirectToRoute('bolt_check_email');
}
// Global config/bolt/config.yml file.
$config = $this->config->get('general/reset_password_settings');
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 'bolt_forgot_password_request'.
// Caution: This may reveal if a user is registered or not.
if ($config['show_already_requested_password_notice']) {
$this->addFlash('reset_password_error', sprintf(
$this->translator->trans('reset_password.problem_with_request'),
$this->translator->trans($e->getReason())
));
}
return $this->redirectToRoute('bolt_check_email');
}
$email = $this->buildResetEmail($config, $user, $resetToken);
$mailer->send($email);
return $this->redirectToRoute('bolt_check_email');
}
protected function buildResetEmail($config, $user, $resetToken): Email
{
return (new TemplatedEmail())
->from(new Address($config['mail_from'], $config['mail_name']))
->to($user->getEmail())
->subject($config['mail_subject'])
->htmlTemplate($config['mail_template'])
->context([
'resetToken' => $resetToken,
'tokenLifetime' => $this->resetPasswordHelper->getTokenLifetime(),
]);
}
}