1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Middleware/SetWebDb.php

28 lines
485 B
PHP
Raw Normal View History

2019-05-22 05:46:42 +02:00
<?php
namespace App\Http\Middleware;
use App\Libraries\MultiDB;
use Closure;
2019-05-22 05:48:25 +02:00
use Cookie;
2020-10-28 11:10:49 +01:00
use Illuminate\Http\Request;
2019-05-22 05:46:42 +02:00
class SetWebDb
{
/**
* Handle an incoming request.
*
2020-10-28 11:10:49 +01:00
* @param Request $request
* @param Closure $next
2019-05-22 05:46:42 +02:00
* @return mixed
*/
public function handle($request, Closure $next)
{
if (config('ninja.db.multi_db_enabled')) {
2019-05-22 05:46:42 +02:00
MultiDB::setDB(Cookie::get('db'));
}
return $next($request);
}
}