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
|
|
|
*
|
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-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;
|
2021-09-01 09:01:39 +02:00
|
|
|
use App\Libraries\MultiDB;
|
2021-05-27 01:14:21 +02:00
|
|
|
use App\Models\Account;
|
2019-11-04 01:22:59 +01:00
|
|
|
use App\Models\ClientContact;
|
2021-06-01 14:06:47 +02:00
|
|
|
use App\Models\Company;
|
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
|
|
|
|
2021-05-27 01:14:21 +02:00
|
|
|
public function showLoginForm(Request $request)
|
2018-10-15 07:00:48 +02:00
|
|
|
{
|
2021-07-04 12:53:32 +02:00
|
|
|
//if we are on the root domain invoicing.co do not show any company logos
|
2021-09-04 03:09:34 +02:00
|
|
|
// if(Ninja::isHosted() && count(explode('.', request()->getHost())) == 2){
|
|
|
|
// $company = null;
|
|
|
|
// }else
|
|
|
|
|
|
|
|
if (strpos($request->getHost(), 'invoicing.co') !== false) {
|
2021-07-01 18:29:32 +02:00
|
|
|
$subdomain = explode('.', $request->getHost())[0];
|
2021-09-01 09:01:39 +02:00
|
|
|
|
|
|
|
MultiDB::findAndSetDbByDomain(['subdomain' => $subdomain]);
|
|
|
|
|
2021-07-01 18:29:32 +02:00
|
|
|
$company = Company::where('subdomain', $subdomain)->first();
|
2021-09-01 09:36:36 +02:00
|
|
|
|
2021-09-01 09:01:39 +02:00
|
|
|
} elseif(Ninja::isHosted()){
|
|
|
|
|
|
|
|
MultiDB::findAndSetDbByDomain(['portal_domain' => $request->getSchemeAndHttpHost()]);
|
|
|
|
|
|
|
|
$company = Company::where('portal_domain', $request->getSchemeAndHttpHost())->first();
|
2021-07-07 04:54:59 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
elseif (Ninja::isSelfHost()) {
|
2021-06-01 14:06:47 +02:00
|
|
|
$company = Account::first()->default_company;
|
|
|
|
} else {
|
|
|
|
$company = null;
|
|
|
|
}
|
|
|
|
|
2021-05-27 01:14:21 +02:00
|
|
|
$account_id = $request->get('account_id');
|
|
|
|
$account = Account::find($account_id);
|
|
|
|
|
2021-06-01 14:06:47 +02:00
|
|
|
return $this->render('auth.login', ['account' => $account, 'company' => $company]);
|
|
|
|
|
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
|
|
|
|
2021-09-01 09:36:36 +02:00
|
|
|
if(Ninja::isHosted() && $request->has('db'))
|
|
|
|
MultiDB::setDb($request->input('db'));
|
|
|
|
|
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
|
|
|
}
|