2020-05-28 17:39:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
2021-02-17 12:13:27 +01:00
|
|
|
use App\Models\Account;
|
2020-05-28 17:39:38 +02:00
|
|
|
use App\Models\Company;
|
2021-02-17 12:13:27 +01:00
|
|
|
use App\Utils\Ninja;
|
2020-05-28 17:39:38 +02:00
|
|
|
use Closure;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Http\Request;
|
2020-05-28 17:39:38 +02:00
|
|
|
|
|
|
|
class ContactRegister
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2021-02-17 12:13:27 +01:00
|
|
|
* @param Request $request
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Closure $next
|
2020-05-28 17:39:38 +02:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2021-12-07 12:34:50 +01:00
|
|
|
$domain_name = $request->getHost();
|
2020-05-28 17:48:03 +02:00
|
|
|
|
2022-09-06 12:51:42 +02:00
|
|
|
/* Hosted */
|
2023-11-24 00:23:40 +01:00
|
|
|
if (strpos($domain_name, config('ninja.app_domain')) !== false) {
|
2021-12-07 12:34:50 +01:00
|
|
|
$subdomain = explode('.', $domain_name)[0];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-06-05 12:12:10 +02:00
|
|
|
$query = [
|
|
|
|
'subdomain' => $subdomain,
|
|
|
|
'portal_mode' => 'subdomain',
|
|
|
|
];
|
|
|
|
|
2023-08-07 00:23:13 +02:00
|
|
|
$company = Company::query()->where($query)->first();
|
2021-06-05 12:12:10 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($company) {
|
|
|
|
if (! $company->client_can_register) {
|
2021-06-28 11:56:04 +02:00
|
|
|
abort(400, 'Registration disabled');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-06-05 12:12:10 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
session()->put('company_key', $company->company_key);
|
2021-06-05 12:12:10 +02:00
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-06 12:51:42 +02:00
|
|
|
/* Hosted */
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2022-03-19 11:21:36 +01:00
|
|
|
$query = [
|
|
|
|
'portal_domain' => $request->getSchemeAndHttpHost(),
|
|
|
|
'portal_mode' => 'domain',
|
|
|
|
];
|
2021-06-28 11:56:04 +02:00
|
|
|
|
2023-08-07 06:50:08 +02:00
|
|
|
if ($company = Company::query()->where($query)->first()) {
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $company->client_can_register) {
|
2022-03-19 11:21:36 +01:00
|
|
|
abort(400, 'Registration disabled');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-03-19 11:21:36 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
// $request->merge(['key' => $company->company_key]);
|
2022-03-19 11:21:36 +01:00
|
|
|
session()->put('company_key', $company->company_key);
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
2021-02-17 12:13:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// For self-hosted platforms with multiple companies, resolving is done using company key
|
|
|
|
// if it doesn't resolve using a domain.
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2023-08-07 07:07:52 +02:00
|
|
|
if ($request->company_key && Ninja::isSelfHost() && $company = Company::query()->where('company_key', $request->company_key)->first()) {
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! (bool) $company->client_can_register) {
|
2021-06-28 11:56:04 +02:00
|
|
|
abort(400, 'Registration disabled');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-06-28 11:56:04 +02:00
|
|
|
|
2021-12-09 11:50:29 +01:00
|
|
|
//$request->merge(['key' => $company->company_key]);
|
2021-12-14 10:33:41 +01:00
|
|
|
session()->put('company_key', $company->company_key);
|
2021-02-17 12:13:27 +01:00
|
|
|
|
2020-05-28 17:48:03 +02:00
|
|
|
return $next($request);
|
2020-05-28 17:39:38 +02:00
|
|
|
}
|
|
|
|
|
2021-02-17 12:13:27 +01:00
|
|
|
// As a fallback for self-hosted, it will use default company in the system
|
|
|
|
// if key isn't provided in the url.
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $request->route()->parameter('company_key') && Ninja::isSelfHost()) {
|
2023-08-07 12:47:05 +02:00
|
|
|
$company = Account::query()->first()->default_company;
|
2021-02-17 12:13:27 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $company->client_can_register) {
|
2021-06-28 11:56:04 +02:00
|
|
|
abort(400, 'Registration disabled');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-05-28 17:39:38 +02:00
|
|
|
|
2021-12-09 11:50:29 +01:00
|
|
|
//$request->merge(['key' => $company->company_key]);
|
2021-12-14 10:33:41 +01:00
|
|
|
session()->put('company_key', $company->company_key);
|
2020-05-28 17:39:38 +02:00
|
|
|
|
2021-02-17 12:13:27 +01:00
|
|
|
return $next($request);
|
|
|
|
}
|
2020-05-28 17:39:38 +02:00
|
|
|
|
2021-12-07 12:34:50 +01:00
|
|
|
abort(404, 'ContactRegister Middleware');
|
2020-05-28 17:39:38 +02:00
|
|
|
}
|
|
|
|
}
|