2018-10-15 07:00:48 +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
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-15 07:00:48 +02:00
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
2020-06-18 23:07:54 +02:00
|
|
|
use App\Events\Contact\ContactLoggedIn;
|
2018-10-15 07:00:48 +02:00
|
|
|
use App\Http\Controllers\Controller;
|
2019-11-04 01:22:59 +01:00
|
|
|
use App\Models\ClientContact;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2018-10-15 07:00:48 +02:00
|
|
|
use Auth;
|
2019-07-16 04:38:11 +02:00
|
|
|
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
|
|
|
use Illuminate\Http\Request;
|
2018-10-15 07:00:48 +02:00
|
|
|
use Route;
|
|
|
|
|
|
|
|
class ContactLoginController extends Controller
|
|
|
|
{
|
2019-07-16 04:38:11 +02:00
|
|
|
use AuthenticatesUsers;
|
|
|
|
|
|
|
|
protected $redirectTo = '/client/dashboard';
|
2018-10-15 07:00:48 +02:00
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
2019-11-04 01:22:59 +01:00
|
|
|
$this->middleware('guest:contact', ['except' => ['logout']]);
|
2018-10-15 07:00:48 +02:00
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
2018-10-15 07:00:48 +02:00
|
|
|
public function showLoginForm()
|
|
|
|
{
|
2020-03-23 18:10:42 +01:00
|
|
|
return $this->render('auth.login');
|
2018-10-15 07:00:48 +02:00
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
2018-10-15 07:00:48 +02:00
|
|
|
public function login(Request $request)
|
|
|
|
{
|
2019-07-17 05:09:37 +02:00
|
|
|
Auth::shouldUse('contact');
|
2019-07-16 04:38:11 +02:00
|
|
|
|
|
|
|
$this->validateLogin($request);
|
2019-07-17 05:09:37 +02:00
|
|
|
// If the class is using the ThrottlesLogins trait, we can automatically throttle
|
|
|
|
// the login attempts for this application. We'll key this by the username and
|
|
|
|
// the IP address of the client making these requests into this application.
|
|
|
|
if (method_exists($this, 'hasTooManyLoginAttempts') &&
|
|
|
|
$this->hasTooManyLoginAttempts($request)) {
|
2019-07-16 04:38:11 +02:00
|
|
|
$this->fireLockoutEvent($request);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-07-17 05:09:37 +02:00
|
|
|
return $this->sendLockoutResponse($request);
|
2019-07-16 04:38:11 +02:00
|
|
|
}
|
2019-07-17 05:09:37 +02:00
|
|
|
if ($this->attemptLogin($request)) {
|
|
|
|
return $this->sendLoginResponse($request);
|
2019-07-16 04:38:11 +02:00
|
|
|
}
|
2019-07-17 05:09:37 +02:00
|
|
|
// If the login attempt was unsuccessful we will increment the number of attempts
|
|
|
|
// to login and redirect the user back to the login form. Of course, when this
|
|
|
|
// user surpasses their maximum number of attempts they will get locked out.
|
|
|
|
$this->incrementLoginAttempts($request);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-07-17 05:09:37 +02:00
|
|
|
return $this->sendFailedLoginResponse($request);
|
|
|
|
}
|
2019-07-16 04:38:11 +02:00
|
|
|
|
2019-11-04 01:22:59 +01:00
|
|
|
public function authenticated(Request $request, ClientContact $client)
|
|
|
|
{
|
|
|
|
Auth::guard('contact')->login($client, true);
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
event(new ContactLoggedIn($client, $client->company, Ninja::eventVars()));
|
2020-06-18 23:07:54 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (session()->get('url.intended')) {
|
2019-11-04 01:22:59 +01:00
|
|
|
return redirect(session()->get('url.intended'));
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
2019-11-04 21:50:10 +01:00
|
|
|
return redirect(route('client.dashboard'));
|
2019-11-04 01:22:59 +01:00
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
2018-10-15 07:00:48 +02:00
|
|
|
public function logout()
|
|
|
|
{
|
|
|
|
Auth::guard('contact')->logout();
|
2019-07-16 04:38:11 +02:00
|
|
|
|
|
|
|
return redirect('/client/login');
|
2018-10-15 07:00:48 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|