1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Middleware/SetInviteDb.php

84 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @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)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
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;
class SetInviteDb
{
/**
* Handle an incoming request.
*
2020-10-28 11:10:49 +01:00
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$error = [
'message' => 'I could not find the database for this object.',
'errors' => new stdClass,
];
/*
* Use the host name to set the active DB
**/
$entity = null;
if (! $request->route('entity')) {
$entity = $request->segment(2);
} else {
$entity = $request->route('entity');
}
if ($entity == 'pay') {
$entity = 'invoice';
}
2021-10-06 05:47: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')) {
$hashids = new Hashids(config('ninja.hash_salt'), 10);
$segments = explode('-', $request->route('invitation_key'));
$hashed_db = false;
if (is_array($segments)) {
2021-10-14 07:25:09 +02:00
$hashed_db = $hashids->decode($segments[0]);
}
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));
2021-10-14 07:25:09 +02:00
return $next($request);
}
}
2021-10-14 07:25:09 +02:00
/* Attempt to set DB from invitatation key*/
if ($request->getSchemeAndHttpHost() && config('ninja.db.multi_db_enabled') && ! MultiDB::findAndSetDbByInvitation($entity, $request->route('invitation_key'))) {
if (request()->json) {
return response()->json($error, 403);
} else {
abort(404, 'I could not find this resource.');
}
}
return $next($request);
}
}