2018-10-18 07:04:36 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-18 07:04:36 +02:00
|
|
|
|
|
|
|
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-05-23 00:28:03 +02:00
|
|
|
// we must have a token passed, that matched a token in the db, and multiDB is enabled.
|
|
|
|
// todo i don't think we can call the DB prior to setting it???? i think this if statement needs to be rethought
|
|
|
|
//if( $request->header('X-API-TOKEN') && (CompanyToken::whereRaw("BINARY `token`= ?",[$request->header('X-API-TOKEN')])->first()) && config('ninja.db.multi_db_enabled'))
|
|
|
|
if( $request->header('X-API-TOKEN') && 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);
|
2019-05-22 05:43:51 +02:00
|
|
|
|
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
|
|
|
}
|