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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
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')) {
|
2021-07-11 02:16:27 +02:00
|
|
|
$hashids = new Hashids(config('ninja.hash_salt'), 10);
|
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
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! is_array($segments)) {
|
2021-07-11 02:16:27 +02:00
|
|
|
return response()->json(['message' => 'Invalid confirmation code'], 403);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-07-11 02:16:27 +02:00
|
|
|
|
2018-10-24 12:24:09 +02:00
|
|
|
$hashed_db = $hashids->decode($segments[0]);
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! is_array($hashed_db) || empty($hashed_db)) {
|
2021-07-27 00:45:46 +02:00
|
|
|
return response()->json(['message' => 'Invalid confirmation code'], 403);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-07-27 00:45:46 +02:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|