2020-06-27 15:53:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* 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
|
|
|
{
|
2023-01-12 05:58:02 +01:00
|
|
|
//return early if we cannot resolve the company gateway
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!$request->getCompanyGateway()) {
|
2023-01-12 05:58:02 +01:00
|
|
|
return response()->json([], 200);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2023-01-12 05:58:02 +01:00
|
|
|
|
2021-08-02 14:47:20 +02:00
|
|
|
return $request
|
|
|
|
->getCompanyGateway()
|
|
|
|
->driver()
|
|
|
|
->processWebhookRequest($request);
|
2020-06-27 15:53:12 +02:00
|
|
|
}
|
|
|
|
}
|