1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Controllers/Auth/ContactResetPasswordController.php

128 lines
3.9 KiB
PHP
Raw Normal View History

2019-07-17 06:15:25 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-07-17 06:15:25 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-07-17 06:15:25 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-07-17 06:15:25 +02:00
*/
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Libraries\MultiDB;
use App\Models\Account;
use App\Models\ClientContact;
use Illuminate\Auth\Events\PasswordReset;
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\ResetsPasswords;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Password;
use Illuminate\Support\Str;
2020-10-28 11:10:49 +01:00
use Illuminate\View\View;
2019-07-17 06:15:25 +02:00
class ContactResetPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/
use ResetsPasswords;
/**
* Where to redirect users after resetting their password.
*
* @var string
*/
protected $redirectTo = '/client/dashboard';
2019-07-17 06:15:25 +02:00
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest:contact');
}
/**
* Display the password reset view for the given token.
*
* If no token is present, display the link request form.
*
2020-10-28 11:10:49 +01:00
* @param Request $request
* @param string|null $token
2020-10-28 11:10:49 +01:00
* @return Factory|View
*/
public function showResetForm(Request $request, $token = null)
{
2021-11-16 00:35:04 +01:00
$account_id = $request->has('account_id') ? $request->get('account_id') : 1;
$account = Account::find($account_id);
$db = $account->companies->first()->db;
$company = $account->companies->first();
2020-03-23 18:10:42 +01:00
return $this->render('auth.passwords.reset')->with(
['token' => $token, 'email' => $request->email, 'account' => $account, 'db' => $db, 'company' => $company]
);
2019-07-17 06:15:25 +02:00
}
2019-07-17 06:52:54 +02:00
2021-07-29 04:19:56 +02:00
public function reset(Request $request)
{
if($request->has('company_key'))
MultiDB::findAndSetDbByCompanyKey($request->input('company_key'));
2021-07-29 04:19:56 +02:00
$request->validate($this->rules(), $this->validationErrorMessages());
$user = ClientContact::where($request->only(['email','token']))->first();
if(!$user)
return $this->sendResetFailedResponse($request, PASSWORD::INVALID_USER);
$hashed_password = Hash::make($request->input('password'));
ClientContact::where('email', $user->email)->update([
'password' => $hashed_password,
'remember_token' => Str::random(60)
]);
event(new PasswordReset($user));
auth()->login($user, true);
$response = Password::PASSWORD_RESET;
2021-07-29 04:19:56 +02:00
// Added this because it collides the session between
// client & main portal giving unlimited redirects.
auth()->logout();
// If the password was successfully reset, we will redirect the user back to
// the application's home authenticated view. If there is an error we can
// redirect them back to where they came from with their error message.
return $response == Password::PASSWORD_RESET
? $this->sendResetResponse($request, $response)
: $this->sendResetFailedResponse($request, $response);
}
2019-07-17 06:52:54 +02:00
protected function guard()
{
return Auth::guard('contact');
}
2019-07-19 06:32:51 +02:00
public function broker()
{
return Password::broker('contacts');
}
2019-07-17 06:15:25 +02:00
}