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

92 lines
2.4 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)
{
2020-05-28 17:48:03 +02:00
2021-06-05 12:12:10 +02:00
if (strpos($request->getHost(), 'invoicing.co') !== false)
{
$subdomain = explode('.', $request->getHost())[0];
$query = [
'subdomain' => $subdomain,
'portal_mode' => 'subdomain',
];
$company = Company::where($query)->first();
if($company)
{
2021-06-28 11:56:04 +02:00
if(! $company->client_can_register)
abort(400, 'Registration disabled');
2021-06-05 12:12:10 +02:00
$request->merge(['key' => $company->company_key]);
return $next($request);
}
}
$query = [
'portal_domain' => $request->getSchemeAndHttpHost(),
'portal_mode' => 'domain',
];
if($company = Company::where($query)->first())
{
2021-06-28 11:56:04 +02:00
if(! $company->client_can_register)
abort(400, 'Registration disabled');
2020-05-28 17:48:03 +02:00
$request->merge(['key' => $company->company_key]);
return $next($request);
}
2021-06-05 12:12:10 +02:00
// For self-hosted platforms with multiple companies, resolving is done using company key
// if it doesn't resolve using a domain.
if ($request->route()->parameter('company_key') && Ninja::isSelfHost()) {
$company = Company::where('company_key', $request->company_key)->firstOrFail();
2021-06-28 11:56:04 +02:00
if(! (bool)$company->client_can_register);
abort(400, 'Registration disabled');
$request->merge(['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;
2021-06-28 11:56:04 +02:00
if(! $company->client_can_register)
abort(400, 'Registration disabled');
2020-05-28 17:39:38 +02:00
$request->merge(['key' => $company->company_key]);
2020-05-28 17:39:38 +02:00
return $next($request);
}
2020-05-28 17:39:38 +02:00
2021-05-24 11:39:21 +02:00
abort(404, 'ContactRegister Middlware');
2020-05-28 17:39:38 +02:00
}
}