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;
|
2022-02-21 10:31:02 +01:00
|
|
|
use App\Http\ViewComposers\PortalComposer;
|
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;
|
2021-12-12 11:39:12 +01:00
|
|
|
use Illuminate\Http\JsonResponse;
|
2022-02-21 10:31:02 +01:00
|
|
|
use Illuminate\Http\Request;
|
2021-12-12 11:39:12 +01:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2022-02-21 10:31:02 +01:00
|
|
|
use Route;
|
2018-10-15 07:00:48 +02:00
|
|
|
|
|
|
|
class ContactLoginController extends Controller
|
|
|
|
{
|
2019-07-16 04:38:11 +02:00
|
|
|
use AuthenticatesUsers;
|
|
|
|
|
2021-12-12 11:39:12 +01:00
|
|
|
protected $redirectTo = '/client/invoices';
|
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-10-24 11:17:57 +02:00
|
|
|
|
|
|
|
$company = false;
|
2021-11-15 00:29:33 +01:00
|
|
|
$account = false;
|
2021-09-04 03:09:34 +02:00
|
|
|
|
2021-12-09 11:50:29 +01:00
|
|
|
if($request->session()->has('company_key')){
|
|
|
|
MultiDB::findAndSetDbByCompanyKey($request->session()->get('company_key'));
|
2021-10-24 11:17:57 +02:00
|
|
|
$company = Company::where('company_key', $request->input('company_key'))->first();
|
|
|
|
}
|
|
|
|
|
2021-12-07 12:46:05 +01:00
|
|
|
if($company){
|
|
|
|
$account = $company->account;
|
|
|
|
}
|
|
|
|
elseif (!$company && 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-11-15 00:29:33 +01:00
|
|
|
$account = Account::first();
|
|
|
|
$company = $account->default_company;
|
2021-06-01 14:06:47 +02:00
|
|
|
} else {
|
|
|
|
$company = null;
|
|
|
|
}
|
|
|
|
|
2021-11-15 00:29:33 +01:00
|
|
|
if(!$account){
|
|
|
|
$account_id = $request->get('account_id');
|
|
|
|
$account = Account::find($account_id);
|
|
|
|
}
|
2021-05-27 01:14:21 +02:00
|
|
|
|
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-12-12 11:39:12 +01:00
|
|
|
if(Ninja::isHosted() && $request->has('company_key'))
|
|
|
|
MultiDB::findAndSetDbByCompanyKey($request->input('company_key'));
|
2021-09-01 09:36:36 +02:00
|
|
|
|
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
|
|
|
}
|
2021-12-12 11:39:12 +01:00
|
|
|
|
2021-12-13 05:22:16 +01:00
|
|
|
if(Ninja::isHosted() && $request->has('password') && $company = Company::where('company_key', $request->input('company_key'))->first()){
|
2021-12-12 11:39:12 +01:00
|
|
|
|
2022-01-18 01:24:40 +01:00
|
|
|
$contact = ClientContact::where(['email' => $request->input('email'), 'company_id' => $company->id])
|
|
|
|
->whereHas('client', function ($query) {
|
|
|
|
$query->where('is_deleted',0);
|
|
|
|
})->first();
|
2021-12-12 11:39:12 +01:00
|
|
|
|
2021-12-18 10:30:53 +01:00
|
|
|
if(!$contact)
|
|
|
|
return $this->sendFailedLoginResponse($request);
|
|
|
|
|
2021-12-12 11:39:12 +01:00
|
|
|
if(Hash::check($request->input('password'), $contact->password))
|
|
|
|
return $this->authenticated($request, $contact);
|
|
|
|
|
|
|
|
}
|
|
|
|
elseif ($this->attemptLogin($request)) {
|
2019-07-17 05:09:37 +02:00
|
|
|
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
|
|
|
|
2021-12-12 11:39:12 +01:00
|
|
|
protected function sendLoginResponse(Request $request)
|
|
|
|
{
|
|
|
|
$request->session()->regenerate();
|
|
|
|
|
|
|
|
$this->clearLoginAttempts($request);
|
|
|
|
|
|
|
|
if ($response = $this->authenticated($request, $this->guard()->user())) {
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
2022-02-21 10:31:02 +01:00
|
|
|
$this->setRedirectPath();
|
|
|
|
|
2021-12-12 11:39:12 +01:00
|
|
|
return $request->wantsJson()
|
|
|
|
? new JsonResponse([], 204)
|
|
|
|
: redirect()->intended($this->redirectPath());
|
|
|
|
}
|
|
|
|
|
2019-11-04 01:22:59 +01:00
|
|
|
public function authenticated(Request $request, ClientContact $client)
|
|
|
|
{
|
2021-12-12 11:39:12 +01:00
|
|
|
auth()->guard('contact')->loginUsingId($client->id, true);
|
2019-11-04 01:22:59 +01:00
|
|
|
|
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();
|
2022-01-25 03:43:44 +01:00
|
|
|
request()->session()->invalidate();
|
2019-07-16 04:38:11 +02:00
|
|
|
|
|
|
|
return redirect('/client/login');
|
2018-10-15 07:00:48 +02:00
|
|
|
}
|
2022-02-21 10:31:02 +01:00
|
|
|
|
|
|
|
private function setRedirectPath()
|
|
|
|
{
|
|
|
|
|
|
|
|
if(auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_INVOICES)
|
|
|
|
$this->redirectTo = '/client/invoices';
|
|
|
|
elseif(auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_RECURRING_INVOICES)
|
|
|
|
$this->redirectTo = '/client/recurring_invoices';
|
|
|
|
elseif(auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_QUOTES)
|
|
|
|
$this->redirectTo = '/client/quotes';
|
|
|
|
elseif(auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_CREDITS)
|
|
|
|
$this->redirectTo = '/client/credits';
|
|
|
|
elseif(auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_TASKS)
|
|
|
|
$this->redirectTo = '/client/tasks';
|
|
|
|
elseif(auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_EXPENSES)
|
|
|
|
$this->redirectTo = '/client/expenses';
|
|
|
|
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|