1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Http/Middleware/ContactRegister.php

97 lines
2.8 KiB
PHP
Raw Normal View History

2020-05-28 17:39:38 +02:00
<?php
namespace App\Http\Middleware;
use App\Models\Account;
2020-05-28 17:39:38 +02:00
use App\Models\Company;
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.
*
* @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)
{
$domain_name = $request->getHost();
2020-05-28 17:48:03 +02:00
2022-09-06 12:51:42 +02:00
/* Hosted */
if (strpos($domain_name, 'invoicing.co') !== false) {
$subdomain = explode('.', $domain_name)[0];
2021-06-05 12:12:10 +02:00
$query = [
'subdomain' => $subdomain,
'portal_mode' => 'subdomain',
];
$company = Company::where($query)->first();
if ($company) {
if (! $company->client_can_register) {
2021-06-28 11:56:04 +02:00
abort(400, 'Registration disabled');
}
2021-06-05 12:12:10 +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 */
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
if ($company = Company::where($query)->first()) {
if (! $company->client_can_register) {
2022-03-19 11:21:36 +01:00
abort(400, 'Registration disabled');
}
2022-03-19 11:21:36 +01: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);
}
}
// For self-hosted platforms with multiple companies, resolving is done using company key
// if it doesn't resolve using a domain.
2022-03-23 13:07:33 +01:00
if ($request->company_key && Ninja::isSelfHost() && $company = Company::where('company_key', $request->company_key)->first()) {
if (! (bool) $company->client_can_register) {
2021-06-28 11:56:04 +02:00
abort(400, 'Registration disabled');
}
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);
2020-05-28 17:48:03 +02:00
return $next($request);
2020-05-28 17:39:38 +02:00
}
// As a fallback for self-hosted, it will use default company in the system
// if key isn't provided in the url.
if (! $request->route()->parameter('company_key') && Ninja::isSelfHost()) {
$company = Account::first()->default_company;
if (! $company->client_can_register) {
2021-06-28 11:56:04 +02:00
abort(400, 'Registration disabled');
}
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
return $next($request);
}
2020-05-28 17:39:38 +02:00
abort(404, 'ContactRegister Middleware');
2020-05-28 17:39:38 +02:00
}
}