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

58 lines
1.6 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)
{
// Resolving based on subdomain. Used in version 5 hosted platform.
if ($request->subdomain) {
2020-05-28 17:48:03 +02:00
$company = Company::where('subdomain', $request->subdomain)->firstOrFail();
abort_unless($company->getSetting('enable_client_registration'), 404);
$request->merge(['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.
if ($request->route()->parameter('company_key') && Ninja::isSelfHost()) {
$company = Company::where('company_key', $request->company_key)->firstOrFail();
abort_unless($company->client_can_register, 404);
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;
abort_unless($company->client_can_register, 404);
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
return abort(404);
2020-05-28 17:39:38 +02:00
}
}