2018-10-04 19:10:43 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2021-02-15 00:39:40 +01:00
|
|
|
use App\Libraries\MultiDB;
|
2021-05-27 01:14:21 +02:00
|
|
|
use App\Models\Account;
|
2018-10-04 19:10:43 +02:00
|
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
2019-09-23 00:24:25 +02:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Password;
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
class ForgotPasswordController extends Controller
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Password Reset Controller
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This controller is responsible for handling password reset emails and
|
|
|
|
| includes a trait which assists in sending these notifications from
|
|
|
|
| your application to your users. Feel free to explore this trait.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
use SendsPasswordResetEmails;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest');
|
|
|
|
}
|
2019-09-23 00:24:25 +02:00
|
|
|
|
2019-10-07 08:31:26 +02:00
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
|
|
|
|
* @throws \Illuminate\Validation\ValidationException
|
2019-10-07 08:31:26 +02:00
|
|
|
*/
|
|
|
|
public function sendResetLinkEmail(Request $request)
|
2019-09-23 00:24:25 +02:00
|
|
|
{
|
2021-05-22 06:31:48 +02:00
|
|
|
MultiDB::userFindAndSetDb($request->input('email'));
|
|
|
|
$user = MultiDB::hasUser(['email' => $request->input('email')]);
|
2021-02-15 00:39:40 +01:00
|
|
|
|
2019-09-23 00:24:25 +02:00
|
|
|
$this->validateEmail($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(
|
|
|
|
$this->credentials($request)
|
2021-05-13 12:18:30 +02:00
|
|
|
);
|
|
|
|
|
2020-03-13 22:17:08 +01:00
|
|
|
if ($request->ajax()) {
|
2021-05-13 12:18:30 +02:00
|
|
|
|
|
|
|
if($response == Password::RESET_THROTTLED)
|
|
|
|
return response()->json(['message' => ctrans('passwords.throttled'), 'status' => false], 429);
|
|
|
|
|
2020-03-13 22:17:08 +01:00
|
|
|
return $response == Password::RESET_LINK_SENT
|
|
|
|
? response()->json(['message' => 'Reset link sent to your email.', 'status' => true], 201)
|
|
|
|
: response()->json(['message' => 'Email not found', 'status' => false], 401);
|
|
|
|
}
|
|
|
|
|
2019-09-23 00:24:25 +02:00
|
|
|
return $response == Password::RESET_LINK_SENT
|
2020-03-13 22:17:08 +01:00
|
|
|
? $this->sendResetLinkResponse($request, $response)
|
|
|
|
: $this->sendResetLinkFailedResponse($request, $response);
|
|
|
|
}
|
|
|
|
|
2021-06-01 01:02:30 +02:00
|
|
|
public function showLinkRequestForm(Request $request)
|
2020-03-13 22:17:08 +01:00
|
|
|
{
|
2021-06-01 01:02:30 +02:00
|
|
|
$account_id = $request->get('account_id');
|
|
|
|
$account = Account::find($account_id);
|
|
|
|
|
|
|
|
return $this->render('auth.passwords.request', ['root' => 'themes', 'account' => $account]);
|
2019-09-23 00:24:25 +02:00
|
|
|
}
|
2018-10-04 19:10:43 +02:00
|
|
|
}
|