-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from Divyesh000/newtable
Implement reset password functionality
- Loading branch information
Showing
7 changed files
with
401 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Steamy\Controller; | ||
|
||
use Exception; | ||
use Steamy\Core\Mailer; | ||
use Steamy\Model\User; | ||
use Steamy\Core\Controller; | ||
|
||
/** | ||
* Controller responsible for managing the entire password reset user flow. It is invoked | ||
* for relative urls of the form /password. It | ||
* displays a form asking for user email, handles email submission, sends email, | ||
* handles submission for new password. | ||
*/ | ||
class Password | ||
{ | ||
use Controller; | ||
|
||
private array $view_data = []; | ||
|
||
public function __construct() | ||
{ | ||
$this->view_data['email_submit_success'] = false; | ||
$this->view_data['error'] = false; | ||
$this->view_data['password_change_success'] = false; | ||
} | ||
|
||
/** | ||
* Sends an email with a password reset link | ||
* @throws Exception | ||
*/ | ||
private function sendResetEmail(string $email, string $resetLink): void | ||
{ | ||
//Implement logic to send reset email using Mailer class | ||
$mailer = new Mailer(); | ||
$subject = "Reset Your Password | Steamy Sips"; | ||
$htmlMessage = "Click the link below to reset your password:<br><a href='$resetLink'>$resetLink</a>"; | ||
$plainMessage = "Click the link below to reset your password:\n$resetLink"; | ||
$mailer->sendMail($email, $subject, $htmlMessage, $plainMessage); | ||
} | ||
|
||
/** | ||
* Invoked when user submits an email on form. | ||
* @throws Exception Email could not be sent | ||
*/ | ||
private function handleEmailSubmission(): void | ||
{ | ||
$submitted_email = filter_var($_POST['email'] ?? "", FILTER_VALIDATE_EMAIL); | ||
|
||
if (empty($submitted_email)) { | ||
$this->view_data['error'] = 'Invalid email'; | ||
return; | ||
} | ||
// email is valid | ||
|
||
// get user ID corresponding to user email | ||
$userId = User::getUserIdByEmail($submitted_email); | ||
|
||
// check if account is not present in database | ||
if (empty($userId)) { | ||
$this->view_data['error'] = 'Email does not exist'; | ||
return; | ||
} | ||
|
||
// Generate a token for a password change request | ||
try { | ||
$token_info = User::generatePasswordResetToken($userId); | ||
} catch (Exception) { | ||
$this->view_data['error'] = 'Mailing service is not operational. Try again later'; | ||
return; | ||
} | ||
|
||
// Send email to user with password reset link and user id | ||
$passwordResetLink = ROOT . "/password/reset?token=" . $token_info['token'] . | ||
"&id=" . $token_info['request_id']; | ||
$this->sendResetEmail($submitted_email, $passwordResetLink); | ||
} | ||
|
||
/** | ||
* Checks if password reset link contains the necessary token and id query parameters. | ||
* @return bool True if valid | ||
*/ | ||
private function validatePasswordResetLink(): bool | ||
{ | ||
// check if query parameters are present | ||
if (empty($_GET['token']) || empty($_GET['id'])) { | ||
return false; | ||
} | ||
|
||
// validate request id data type | ||
if (!filter_var($_GET['id'], FILTER_VALIDATE_INT)) { | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
/** | ||
* This function is invoked when user opens password reset link from email | ||
* and submits form. | ||
* @return void | ||
*/ | ||
private function handlePasswordSubmission(): void | ||
{ | ||
if (!$this->validatePasswordResetLink()) { | ||
$this->view_data['error'] = 'Invalid password reset link'; | ||
return; | ||
} | ||
|
||
if (!isset($_POST['pwd'], $_POST['pwd-repeat'])) { | ||
$this->view_data['error'] = 'You must enter new password twice'; | ||
return; | ||
} | ||
|
||
$password = $_POST['pwd']; | ||
$passwordRepeat = $_POST['pwd-repeat']; | ||
$token = $_GET['token']; | ||
$requestID = filter_var($_GET['id'], FILTER_VALIDATE_INT); | ||
|
||
// Check if passwords match | ||
if ($password !== $passwordRepeat) { | ||
$this->view_data['error'] = 'Passwords do not match'; | ||
return; | ||
} | ||
|
||
// check if password valid | ||
$password_errors = User::validatePlainPassword($password); | ||
if (!empty($password_errors)) { | ||
$this->view_data['error'] = $password_errors[0]; | ||
return; | ||
} | ||
|
||
$success = User::resetPassword($requestID, $token, $password); | ||
|
||
if ($success) { | ||
$this->view_data['password_change_success'] = true; | ||
} else { | ||
$this->view_data['error'] = 'Failed to change password. Try generating a new token.'; | ||
} | ||
} | ||
|
||
public function index(): void | ||
{ | ||
// check if url is of form /password | ||
if ($_GET['url'] === 'password') { | ||
if ($_SERVER['REQUEST_METHOD'] == 'POST') { | ||
// user has submitted his email | ||
try { | ||
$this->handleEmailSubmission(); | ||
} catch (Exception) { | ||
$this->view_data['error'] = 'Mailing service is not operational. Please try again later.'; | ||
} | ||
} | ||
// display form asking for user email | ||
// this form should be displayed before and after email submission | ||
$this->view( | ||
view_name: 'ResetPassword', | ||
view_data: $this->view_data, | ||
template_title: 'Reset Password' | ||
); | ||
return; | ||
} | ||
|
||
// check if url is of form /password/reset | ||
if ($_GET['url'] === 'password/reset') { | ||
if ($_SERVER['REQUEST_METHOD'] == 'POST') { | ||
$this->handlePasswordSubmission(); | ||
} | ||
// display form asking user for his new password | ||
$this->view( | ||
view_name: 'NewPassword', | ||
view_data: $this->view_data, | ||
template_title: 'New Password' | ||
); | ||
return; | ||
} | ||
|
||
// if url follows some other format display error page | ||
$this->view( | ||
view_name: '404' | ||
); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.