45 lines
1 KiB
PHP
45 lines
1 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
|
*
|
||
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
|
*
|
||
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
|
*
|
||
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace App\Http\Middleware;
|
||
|
|
|
||
|
|
use App\Libraries\MultiDB;
|
||
|
|
use Closure;
|
||
|
|
use Illuminate\Http\Request;
|
||
|
|
use stdClass;
|
||
|
|
|
||
|
|
class SetDocumentDb
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Handle an incoming request.
|
||
|
|
*
|
||
|
|
* @param Request $request
|
||
|
|
* @param Closure $next
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
public function handle($request, Closure $next)
|
||
|
|
{
|
||
|
|
$error = [
|
||
|
|
'message' => 'Document not set or not found',
|
||
|
|
'errors' => new stdClass,
|
||
|
|
];
|
||
|
|
|
||
|
|
if ($request->has('document_hash') && config('ninja.db.multi_db_enabled')) {
|
||
|
|
|
||
|
|
if (! MultiDB::documentFindAndSetDb($request->input('document_hash')))
|
||
|
|
return response()->json($error, 400);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
return $next($request);
|
||
|
|
}
|
||
|
|
}
|