2019-07-17 06:15:25 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-07-17 06:15:25 +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-07-17 06:15:25 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2021-02-15 00:39:40 +01:00
|
|
|
use App\Libraries\MultiDB;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Contracts\View\Factory;
|
2019-07-17 06:15:25 +02:00
|
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
2021-02-15 00:39:40 +01:00
|
|
|
use Illuminate\Http\Request;
|
2019-07-18 01:45:18 +02:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
use Illuminate\Support\Facades\Password;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\View\View;
|
2019-07-17 06:15:25 +02:00
|
|
|
|
|
|
|
class ContactForgotPasswordController 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()
|
|
|
|
{
|
2019-07-18 01:45:18 +02:00
|
|
|
$this->middleware('guest:contact');
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Show the reset email form.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return Factory|View
|
2020-09-06 11:38:10 +02:00
|
|
|
*/
|
2019-12-30 22:59:12 +01:00
|
|
|
public function showLinkRequestForm()
|
|
|
|
{
|
2020-03-23 18:10:42 +01:00
|
|
|
return $this->render('auth.passwords.request', [
|
2019-07-18 01:45:18 +02:00
|
|
|
'title' => 'Client Password Reset',
|
2020-09-06 11:38:10 +02:00
|
|
|
'passwordEmailRoute' => 'client.password.email',
|
2019-07-18 01:45:18 +02:00
|
|
|
]);
|
2019-07-17 06:15:25 +02:00
|
|
|
}
|
2019-07-17 06:52:54 +02:00
|
|
|
|
|
|
|
protected function guard()
|
|
|
|
{
|
|
|
|
return Auth::guard('contact');
|
|
|
|
}
|
2019-07-18 01:45:18 +02:00
|
|
|
|
|
|
|
public function broker()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
return Password::broker('contacts');
|
2019-07-18 01:45:18 +02:00
|
|
|
}
|
2021-02-15 00:39:40 +01:00
|
|
|
|
|
|
|
public function sendResetLinkEmail(Request $request)
|
|
|
|
{
|
|
|
|
//MultiDB::userFindAndSetDb($request->input('email'));
|
|
|
|
|
|
|
|
$user = MultiDB::hasContact(['email' => $request->input('email')]);
|
|
|
|
|
|
|
|
$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)
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($request->ajax()) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $response == Password::RESET_LINK_SENT
|
|
|
|
? $this->sendResetLinkResponse($request, $response)
|
|
|
|
: $this->sendResetLinkFailedResponse($request, $response);
|
|
|
|
}
|
|
|
|
|
2019-07-17 06:15:25 +02:00
|
|
|
}
|