1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-27 19:57:10 +02:00
invoiceninja/app/Http/Controllers/PaymentWebhookController.php

39 lines
1.0 KiB
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
*
* @copyright Copyright (c) 2021. 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;
2021-04-22 13:53:21 +02:00
use App\Libraries\MultiDB;
use Auth;
2020-06-27 15:53:12 +02:00
class PaymentWebhookController extends Controller
{
2020-12-17 12:47:46 +01:00
public function __invoke(PaymentWebhookRequest $request, string $company_key, string $company_gateway_id)
2020-06-27 15:53:12 +02:00
{
2021-04-22 14:56:00 +02:00
2020-12-16 15:25:42 +01:00
$payment = $request->getPayment();
2021-05-21 07:47:05 +02:00
if(!$payment)
return response()->json(['message' => 'Payment record not found.'], 400);
$client = is_null($payment) ? $request->getClient() : $payment->client;
2020-12-16 15:25:42 +01:00
2021-05-21 07:47:05 +02:00
if(!$client)
return response()->json(['message' => 'Client record not found.'], 400);
return $request->getCompanyGateway()
->driver($client)
2020-12-16 15:25:42 +01:00
->processWebhookRequest($request, $payment);
2020-06-27 15:53:12 +02:00
}
}