2020-05-28 17:39:38 +02:00
|
|
|
<?php
|
2021-06-21 12:53:34 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-06-21 12:53:34 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
2020-05-28 17:39:38 +02:00
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Http\Requests\ClientPortal\RegisterRequest;
|
2024-03-06 17:38:18 +01:00
|
|
|
use App\Livewire\BillingPortal\Authentication\ClientRegisterService;
|
2020-05-28 17:39:38 +02:00
|
|
|
use App\Models\Company;
|
2022-03-12 23:03:58 +01:00
|
|
|
use App\Utils\Ninja;
|
2022-03-19 11:21:36 +01:00
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
2022-06-21 11:57:17 +02:00
|
|
|
use Illuminate\Support\Facades\App;
|
2020-05-28 17:39:38 +02:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
|
|
|
|
class ContactRegisterController extends Controller
|
|
|
|
{
|
2022-03-19 11:21:36 +01:00
|
|
|
use GeneratesCounter;
|
|
|
|
|
2020-05-28 17:39:38 +02:00
|
|
|
public function __construct()
|
|
|
|
{
|
2021-06-05 12:59:53 +02:00
|
|
|
$this->middleware(['guest']);
|
2020-05-28 17:39:38 +02:00
|
|
|
}
|
|
|
|
|
2021-02-17 12:13:27 +01:00
|
|
|
public function showRegisterForm(string $company_key = '')
|
2020-05-28 17:39:38 +02:00
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if (strlen($company_key) > 2) {
|
2022-03-23 13:07:33 +01:00
|
|
|
$key = $company_key;
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2022-03-23 13:07:33 +01:00
|
|
|
$key = request()->session()->has('company_key') ? request()->session()->get('company_key') : $company_key;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
/** @var \App\Models\Company $company **/
|
2021-02-17 12:13:27 +01:00
|
|
|
$company = Company::where('company_key', $key)->firstOrFail();
|
|
|
|
|
2022-03-12 23:03:58 +01:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
$t = app('translator');
|
|
|
|
$t->replace(Ninja::transformTranslations($company->settings));
|
|
|
|
|
2022-09-06 13:32:52 +02:00
|
|
|
return render('auth.register', ['register_company' => $company, 'account' => $company->account, 'submitsForm' => false]);
|
2020-05-28 17:39:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function register(RegisterRequest $request)
|
|
|
|
{
|
2020-06-22 10:26:48 +02:00
|
|
|
$request->merge(['company' => $request->company()]);
|
2024-03-06 17:38:18 +01:00
|
|
|
|
|
|
|
$service = new ClientRegisterService(
|
|
|
|
company: $request->company(),
|
|
|
|
);
|
2020-06-22 10:26:48 +02:00
|
|
|
|
2024-03-06 17:38:18 +01:00
|
|
|
$client = $service->createClient($request->all());
|
|
|
|
$client_contact = $service->createClientContact($request->all(), $client);
|
2020-05-28 17:39:38 +02:00
|
|
|
|
2021-12-07 22:45:24 +01:00
|
|
|
Auth::guard('contact')->loginUsingId($client_contact->id, true);
|
2020-05-28 17:39:38 +02:00
|
|
|
|
2022-12-20 11:46:20 +01:00
|
|
|
return redirect()->intended(route('client.dashboard'));
|
2020-05-28 17:39:38 +02:00
|
|
|
}
|
|
|
|
}
|