103 lines
2.6 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace App\Http\Controllers\Auth;
2019-11-16 10:21:14 +03:00
use App\Abstracts\Http\Controller;
2017-09-14 22:21:00 +03:00
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
use App\Http\Requests\Auth\Forgot as Request;
2017-09-14 22:21:00 +03:00
use Illuminate\Support\Facades\Password;
class Forgot extends Controller
{
use SendsPasswordResetEmails;
/**
* Where to redirect users after reset.
*
* @var string
*/
protected $redirectTo = 'auth/forgot';
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest');
}
/**
* Display the form to request a password reset link.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('auth.forgot.create');
}
/**
* Send a reset link to the given user.
*
* @param \App\Http\Requests\Auth\Forgot $request
2017-09-14 22:21:00 +03:00
* @return \Illuminate\Http\RedirectResponse
*/
public function store(Request $request)
{
// 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 = $this->broker()->sendResetLink(
$request->only('email')
);
return $response == Password::RESET_LINK_SENT
? $this->sendResetLinkResponse($response)
: $this->sendResetLinkFailedResponse($request, $response);
}
/**
* Get the response for a successful password reset link.
*
* @param string $response
* @return \Illuminate\Http\RedirectResponse
*/
protected function sendResetLinkResponse($response)
{
2020-02-12 18:40:00 +03:00
$response = [
'status' => null,
'success' => true,
'error' => false,
'message' => trans('passwords.sent'),
'data' => null,
'redirect' => null,
];
2017-09-14 22:21:00 +03:00
2020-02-12 18:40:00 +03:00
return response()->json($response);
2017-09-14 22:21:00 +03:00
}
/**
* Get the response for a failed password reset link.
*
* @param \Illuminate\Http\Request
* @param string $response
* @return \Illuminate\Http\RedirectResponse
*/
2020-02-12 18:40:00 +03:00
protected function sendResetLinkFailedResponse($response)
2017-09-14 22:21:00 +03:00
{
2020-02-12 18:40:00 +03:00
$response = [
'status' => null,
2020-02-12 18:48:30 +03:00
'success' => false,
2020-02-12 18:40:00 +03:00
'error' => true,
'message' => trans('passwords.user'),
'data' => null,
'redirect' => route('forgot'),
2020-02-12 18:40:00 +03:00
];
return response()->json($response);
2017-09-14 22:21:00 +03:00
}
}