2018-10-18 07:04:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
2019-03-27 23:30:32 +01:00
|
|
|
use App\Models\CompanyToken;
|
2018-10-18 07:04:36 +02:00
|
|
|
use Closure;
|
|
|
|
|
2018-10-19 05:45:55 +02:00
|
|
|
class SetDb
|
2018-10-18 07:04:36 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Closure $next
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2019-03-27 23:21:28 +01:00
|
|
|
|
2018-10-18 07:04:36 +02:00
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2019-03-27 23:21:28 +01:00
|
|
|
|
|
|
|
$error['error'] = ['message' => 'Database could not be set'];
|
|
|
|
|
|
|
|
|
2019-03-28 22:34:58 +01:00
|
|
|
if( $request->header('X-API-TOKEN') && (CompanyToken::whereRaw("BINARY `token`= ?",[$request->header('X-API-TOKEN')])->first()) && config('ninja.db.multi_db_enabled'))
|
2018-10-19 05:45:55 +02:00
|
|
|
{
|
2019-03-27 23:21:28 +01:00
|
|
|
|
|
|
|
if(! MultiDB::findAndSetDb($request->header('X-API-TOKEN')))
|
|
|
|
{
|
|
|
|
|
|
|
|
return response()->json(json_encode($error, JSON_PRETTY_PRINT) ,403);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
|
|
|
|
return response()->json(json_encode($error, JSON_PRETTY_PRINT) ,403);
|
2018-10-18 07:04:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
2019-03-27 23:21:28 +01:00
|
|
|
|
|
|
|
|
2018-10-18 07:04:36 +02:00
|
|
|
}
|