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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. 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 Closure;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use stdClass;
|
2019-11-16 04:12:29 +01:00
|
|
|
|
|
|
|
class SetEmailDb
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
|
|
|
* @param Closure $next
|
2019-11-16 04:12:29 +01:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
|
|
|
$error = [
|
|
|
|
'message' => 'Email not set or not found',
|
2020-10-28 11:10:49 +01: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')) {
|
2020-12-29 22:10:03 +01:00
|
|
|
nlog("trying to find db");
|
2019-12-30 22:59:12 +01:00
|
|
|
if (! MultiDB::userFindAndSetDb($request->input('email'))) {
|
2020-11-01 06:09:09 +01:00
|
|
|
return response()->json($error, 400);
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-11-01 06:09:09 +01:00
|
|
|
// else {
|
|
|
|
// return response()->json($error, 403);
|
|
|
|
// }
|
2019-11-16 04:12:29 +01:00
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|