BookStack/app/Access/Controllers/ForgotPasswordController.php

61 lines
1.9 KiB
PHP
Raw Normal View History

2015-07-12 15:01:42 -04:00
<?php
2023-05-17 12:56:55 -04:00
namespace BookStack\Access\Controllers;
2015-07-12 15:01:42 -04:00
2023-05-17 12:56:55 -04:00
use BookStack\Activity\ActivityType;
use BookStack\Http\Controller;
2016-11-12 06:40:54 -05:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Password;
2015-07-12 15:01:42 -04:00
class ForgotPasswordController extends Controller
2015-07-12 15:01:42 -04:00
{
public function __construct()
{
$this->middleware('guest');
$this->middleware('guard:standard');
2015-07-12 15:01:42 -04:00
}
2016-11-12 06:40:54 -05:00
/**
* Display the form to request a password reset link.
*/
public function showLinkRequestForm()
{
return view('auth.passwords.email');
}
2016-11-12 06:40:54 -05:00
/**
* Send a reset link to the given user.
*/
public function sendResetLinkEmail(Request $request)
{
$this->validate($request, [
2021-11-04 20:28:41 -04:00
'email' => ['required', 'email'],
]);
2016-11-12 06:40:54 -05:00
// We will send the password reset link to this user. Once we have attempted
// to send the link, we will examine the response then see the message we
// need to show to the user. Finally, we'll send out a proper response.
$response = Password::broker()->sendResetLink(
2016-11-12 06:40:54 -05:00
$request->only('email')
);
if ($response === Password::RESET_LINK_SENT) {
$this->logActivity(ActivityType::AUTH_PASSWORD_RESET, $request->get('email'));
}
if (in_array($response, [Password::RESET_LINK_SENT, Password::INVALID_USER, Password::RESET_THROTTLED])) {
$message = trans('auth.reset_password_sent', ['email' => $request->get('email')]);
$this->showSuccessNotification($message);
2021-06-26 11:23:15 -04:00
return redirect('/password/email')->with('status', trans($response));
2016-11-12 06:40:54 -05:00
}
// If an error was returned by the password broker, we will get this message
// translated so we can notify a user of the problem. We'll redirect back
// to where the users came from so they can attempt this process again.
return redirect('/password/email')->withErrors(
2016-11-12 06:40:54 -05:00
['email' => trans($response)]
);
}
}