| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\Framework\PaymentGateways\Webhooks\EventHandlers; |
| 4 |
|
| 5 |
use Exception; |
| 6 |
use Give\Donations\Models\Donation; |
| 7 |
use Give\Donations\ValueObjects\DonationStatus; |
| 8 |
use Give\Framework\PaymentGateways\Webhooks\EventHandlers\Actions\UpdateDonationStatus; |
| 9 |
|
| 10 |
/** |
| 11 |
* @since 3.6.0 |
| 12 |
*/ |
| 13 |
class DonationProcessing |
| 14 |
{ |
| 15 |
/** |
| 16 |
* @since 4.16.0 Add $donationId to support gateways that only receive the transaction ID via webhook (e.g. PayFast). |
| 17 |
* @since 3.6.0 |
| 18 |
* @throws Exception |
| 19 |
*/ |
| 20 |
public function __invoke(string $gatewayTransactionId, string $message = '', bool $skipRecurringDonations = false, int $donationId = 0) |
| 21 |
{ |
| 22 |
if ($donationId > 0) { |
| 23 |
$donation = Donation::find($donationId); |
| 24 |
|
| 25 |
if ($donation) { |
| 26 |
$donation->gatewayTransactionId = $gatewayTransactionId; |
| 27 |
$donation->save(); |
| 28 |
} |
| 29 |
} else { |
| 30 |
$donation = give()->donations->getByGatewayTransactionId($gatewayTransactionId); |
| 31 |
} |
| 32 |
|
| 33 |
if ( ! $donation || $donation->status->isProcessing()) { |
| 34 |
return; |
| 35 |
} |
| 36 |
|
| 37 |
if ($skipRecurringDonations && ! $donation->type->isSingle()) { |
| 38 |
return; |
| 39 |
} |
| 40 |
|
| 41 |
(new UpdateDonationStatus())($donation, DonationStatus::PROCESSING(), $message); |
| 42 |
} |
| 43 |
} |
| 44 |
|