invoiceninja/app/Http/Middleware/UrlSetDb.php

55 lines
1.4 KiB
PHP
Raw Permalink Normal View History

<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 13:32:07 +10:00
*/
namespace App\Http\Middleware;
use App\Libraries\MultiDB;
use Closure;
use Hashids\Hashids;
2020-10-28 21:10:49 +11:00
use Illuminate\Http\Request;
2019-01-27 10:22:57 +11:00
/**
* Class UrlSetDb.
2019-01-27 10:22:57 +11:00
*/
class UrlSetDb
{
/**
* Handle an incoming request.
*
2020-10-28 21:10:49 +11:00
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (config('ninja.db.multi_db_enabled')) {
$hashids = new Hashids(config('ninja.hash_salt'), 10);
//parse URL hash and set DB
$segments = explode('-', $request->route('confirmation_code'));
if (! is_array($segments)) {
return response()->json(['message' => 'Invalid confirmation code'], 403);
}
$hashed_db = $hashids->decode($segments[0]);
if (! is_array($hashed_db) || empty($hashed_db)) {
2021-07-27 08:45:46 +10:00
return response()->json(['message' => 'Invalid confirmation code'], 403);
}
2021-07-27 08:45:46 +10:00
MultiDB::setDB(MultiDB::DB_PREFIX.str_pad($hashed_db[0], 2, '0', STR_PAD_LEFT));
}
return $next($request);
}
}