mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
34 lines
993 B
PHP
34 lines
993 B
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Requests\Payments\PaymentNotificationWebhookRequest;
|
|
use App\Models\Client;
|
|
use App\Models\CompanyGateway;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class PaymentNotificationWebhookController extends Controller
|
|
{
|
|
use MakesHash;
|
|
|
|
public function __invoke(PaymentNotificationWebhookRequest $request, string $company_key, string $company_gateway_id, string $client_hash)
|
|
{
|
|
$company_gateway = CompanyGateway::find($this->decodePrimaryKey($company_gateway_id));
|
|
$client = Client::find($this->decodePrimaryKey($client_hash));
|
|
|
|
return $company_gateway
|
|
->driver($client)
|
|
->processWebhookRequest($request);
|
|
}
|
|
}
|