PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.17.0
GiveWP – Donation Plugin and Fundraising Platform v4.17.0
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
← 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 }