PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
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 2.30.0 All 255 releases
give / src / Framework / PaymentGateways / Webhooks / EventHandlers / DonationProcessing.php

DonationProcessing.php in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/Framework/PaymentGateways/Webhooks/EventHandlers/DonationProcessing.php

44 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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