← All changes
|
src/Framework/PaymentGateways/Webhooks/EventHandlers/DonationProcessing.php
+13
-2
4.15.3
→
4.17.0
View file →
| @@ -2,8 +2,9 @@ | ||
| 2 | 2 | |
| 3 | 3 | namespace Give\Framework\PaymentGateways\Webhooks\EventHandlers; |
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | +use Give\Donations\Models\Donation; | |
| 6 | 7 | use Give\Donations\ValueObjects\DonationStatus; |
| 7 | 8 | use Give\Framework\PaymentGateways\Webhooks\EventHandlers\Actions\UpdateDonationStatus; |
| 8 | 9 | |
| 9 | 10 | /** |
| @@ -11,14 +12,24 @@ | ||
| 11 | 12 | */ |
| 12 | 13 | class DonationProcessing |
| 13 | 14 | { |
| 14 | 15 | /** |
| 16 | + * @since 4.16.0 Add $donationId to support gateways that only receive the transaction ID via webhook (e.g. PayFast). | |
| 15 | 17 | * @since 3.6.0 |
| 16 | 18 | * @throws Exception |
| 17 | 19 | */ |
| 18 | - public function __invoke(string $gatewayTransactionId, string $message = '', $skipRecurringDonations = false) | |
| 20 | + public function __invoke(string $gatewayTransactionId, string $message = '', bool $skipRecurringDonations = false, int $donationId = 0) | |
| 19 | 21 | { |
| 20 | - $donation = give()->donations->getByGatewayTransactionId($gatewayTransactionId); | |
| 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 | + } | |
| 21 | 32 | |
| 22 | 33 | if ( ! $donation || $donation->status->isProcessing()) { |
| 23 | 34 | return; |
| 24 | 35 | } |