1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Http/Controllers/PaymentWebhookController.php

32 lines
792 B
PHP
Raw Normal View History

2020-06-27 15:53:12 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-06-27 15:53:12 +02: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)
2020-06-27 15:53:12 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-06-27 15:53:12 +02:00
*/
namespace App\Http\Controllers;
use App\Http\Requests\Payments\PaymentWebhookRequest;
class PaymentWebhookController extends Controller
{
2021-08-02 14:47:20 +02:00
public function __invoke(PaymentWebhookRequest $request)
2020-06-27 15:53:12 +02:00
{
//return early if we cannot resolve the company gateway
2023-02-16 02:36:09 +01:00
if (!$request->getCompanyGateway()) {
return response()->json([], 200);
2023-02-16 02:36:09 +01:00
}
2021-08-02 14:47:20 +02:00
return $request
->getCompanyGateway()
->driver()
->processWebhookRequest($request);
2020-06-27 15:53:12 +02:00
}
}