2019-11-16 04:12:29 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-11-16 04:12:29 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-11-16 04:12:29 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Models\CompanyToken;
|
|
|
|
use Closure;
|
|
|
|
|
|
|
|
class SetEmailDb
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Closure $next
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
|
|
|
$error = [
|
|
|
|
'message' => 'Email not set or not found',
|
2020-09-06 11:38:10 +02:00
|
|
|
'errors' => new \stdClass,
|
2019-11-16 04:12:29 +01:00
|
|
|
];
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if ($request->input('email') && config('ninja.db.multi_db_enabled')) {
|
|
|
|
if (! MultiDB::userFindAndSetDb($request->input('email'))) {
|
2019-11-16 04:12:29 +01:00
|
|
|
return response()->json($error, 403);
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
|
|
|
return response()->json($error, 403);
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|