2018-10-24 12:24:09 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02: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-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-24 12:24:09 +02:00
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use Closure;
|
|
|
|
use Hashids\Hashids;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Http\Request;
|
2018-10-24 12:24:09 +02:00
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class UrlSetDb.
|
2019-01-27 00:22:57 +01:00
|
|
|
*/
|
2018-10-24 12:24:09 +02:00
|
|
|
class UrlSetDb
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
|
|
|
* @param Closure $next
|
2018-10-24 12:24:09 +02:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2018-10-29 04:16:17 +01:00
|
|
|
public function handle($request, Closure $next)
|
2018-10-24 12:24:09 +02:00
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
if (config('ninja.db.multi_db_enabled')) {
|
2019-09-23 07:59:01 +02:00
|
|
|
$hashids = new Hashids('', 10); //decoded output is _always_ an array.
|
2018-10-24 12:24:09 +02:00
|
|
|
|
|
|
|
//parse URL hash and set DB
|
2020-09-06 11:38:10 +02:00
|
|
|
$segments = explode('-', $request->route('confirmation_code'));
|
2018-10-24 12:24:09 +02:00
|
|
|
|
|
|
|
$hashed_db = $hashids->decode($segments[0]);
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
MultiDB::setDB(MultiDB::DB_PREFIX.str_pad($hashed_db[0], 2, '0', STR_PAD_LEFT));
|
2018-10-24 12:24:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|