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

84 lines
2.3 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Middleware;
use App\Libraries\MultiDB;
use Closure;
2020-10-28 11:10:49 +01:00
use Illuminate\Http\Request;
use stdClass;
class SetDomainNameDb
{
/**
* Handle an incoming request.
*
2020-10-28 11:10:49 +01:00
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$error = [
'message' => 'Invalid token',
'errors' => new stdClass,
];
/*
* Use the host name to set the active DB
**/
if (! config('ninja.db.multi_db_enabled')) {
return $next($request);
}
$domain_name = $request->getHost();
if (strpos($domain_name, 'invoicing.co') !== false) {
$subdomain = explode('.', $domain_name)[0];
$query = [
'subdomain' => $subdomain,
'portal_mode' => 'subdomain',
];
if ($company = MultiDB::findAndSetDbByDomain($query)) {
2021-12-09 11:50:29 +01:00
session()->put('company_key', $company->company_key);
} else {
if ($request->json) {
return response()->json($error, 403);
} else {
2021-05-16 11:44:44 +02:00
MultiDB::setDb('db-ninja-01');
nlog('I could not set the DB - defaulting to DB1');
2021-05-16 11:44:44 +02:00
//abort(400, 'Domain not found');
}
}
} else {
$query = [
2021-05-15 06:38:32 +02:00
'portal_domain' => $request->getSchemeAndHttpHost(),
'portal_mode' => 'domain',
];
if ($company = MultiDB::findAndSetDbByDomain($query)) {
2021-12-09 11:50:29 +01:00
session()->put('company_key', $company->company_key);
} else {
if ($request->json) {
return response()->json($error, 403);
} else {
2021-05-16 11:44:44 +02:00
MultiDB::setDb('db-ninja-01');
nlog('I could not set the DB - defaulting to DB1');
}
}
}
return $next($request);
}
}