2019-11-16 04:12:29 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-11-16 04:12:29 +01: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-11-16 04:12:29 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-11-16 04:12:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use Closure;
|
2021-10-14 07:25:09 +02:00
|
|
|
use Hashids\Hashids;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use stdClass;
|
2019-11-16 04:12:29 +01:00
|
|
|
|
|
|
|
class SetInviteDb
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
|
|
|
* @param Closure $next
|
2019-11-16 04:12:29 +01:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
$error = [
|
2022-06-21 11:57:17 +02:00
|
|
|
'message' => 'I could not find the database for this object.',
|
|
|
|
'errors' => new stdClass,
|
|
|
|
];
|
2019-12-30 22:59:12 +01:00
|
|
|
/*
|
2019-11-16 04:12:29 +01:00
|
|
|
* Use the host name to set the active DB
|
|
|
|
**/
|
2020-03-06 14:41:15 +01:00
|
|
|
$entity = null;
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $request->route('entity')) {
|
2020-03-11 12:05:05 +01:00
|
|
|
$entity = $request->segment(2);
|
2020-03-21 06:37:30 +01:00
|
|
|
} else {
|
2020-03-06 14:41:15 +01:00
|
|
|
$entity = $request->route('entity');
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-06 14:41:15 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($entity == 'pay') {
|
|
|
|
$entity = 'invoice';
|
|
|
|
}
|
2021-10-06 05:47:17 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! in_array($entity, ['invoice', 'quote', 'credit', 'recurring_invoice', 'purchase_order'])) {
|
|
|
|
abort(404, 'I could not find this resource.');
|
|
|
|
}
|
2022-02-27 21:45:42 +01:00
|
|
|
|
2021-10-14 07:25:09 +02:00
|
|
|
/* Try and determine the DB from the invitation key STRING*/
|
|
|
|
if (config('ninja.db.multi_db_enabled')) {
|
|
|
|
// nlog("/ Try and determine the DB from the invitation key /");
|
|
|
|
|
|
|
|
$hashids = new Hashids(config('ninja.hash_salt'), 10);
|
|
|
|
$segments = explode('-', $request->route('invitation_key'));
|
|
|
|
$hashed_db = false;
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (is_array($segments)) {
|
2021-10-14 07:25:09 +02:00
|
|
|
$hashed_db = $hashids->decode($segments[0]);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
|
|
|
if ($hashed_db && is_array($hashed_db) && ($hashed_db[0] == '01' || $hashed_db[0] == '02')) {
|
2021-10-14 07:25:09 +02:00
|
|
|
MultiDB::setDB(MultiDB::DB_PREFIX.str_pad($hashed_db[0], 2, '0', STR_PAD_LEFT));
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-10-14 07:25:09 +02:00
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-10-14 07:25:09 +02:00
|
|
|
/* Attempt to set DB from invitatation key*/
|
2020-03-06 14:41:15 +01:00
|
|
|
if ($request->getSchemeAndHttpHost() && config('ninja.db.multi_db_enabled') && ! MultiDB::findAndSetDbByInvitation($entity, $request->route('invitation_key'))) {
|
2019-12-30 22:59:12 +01:00
|
|
|
if (request()->json) {
|
2020-02-05 05:06:03 +01:00
|
|
|
return response()->json($error, 403);
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2022-06-21 11:57:17 +02:00
|
|
|
abort(404, 'I could not find this resource.');
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|