1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Middleware/VerifyHash.php
2023-08-07 14:50:08 +10:00

33 lines
741 B
PHP

<?php
namespace App\Http\Middleware;
use App\Models\PaymentHash;
use Closure;
use Illuminate\Http\Request;
class VerifyHash
{
/**
* Handle an incoming request.
*
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if ($request->has('payment_hash')) {
$ph = PaymentHash::query()->with('fee_invoice')->where('hash', $request->payment_hash)->first();
if ($ph) {
auth()->guard('contact')->loginUsingId($ph->fee_invoice->invitations->first()->contact->id, true);
}
return $next($request);
}
abort(404, 'Unable to verify payment hash');
}
}