mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use App\Libraries\MultiDB;
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
use stdClass;
|
|
|
|
class SetEmailDb
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param Request $request
|
|
* @param Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
$error = [
|
|
'message' => 'Email not set or not found',
|
|
'errors' => new stdClass,
|
|
];
|
|
|
|
if ($request->input('email') && config('ninja.db.multi_db_enabled')) {
|
|
nlog("trying to find db");
|
|
if (! MultiDB::userFindAndSetDb($request->input('email'))) {
|
|
return response()->json($error, 400);
|
|
}
|
|
}
|
|
// else {
|
|
// return response()->json($error, 403);
|
|
// }
|
|
|
|
return $next($request);
|
|
}
|
|
}
|