Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stripe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
Stripe
Commits
627d376e
Commit
627d376e
authored
2 years ago
by
mattwire
Committed by
mattwire
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
New framework for handling webhook events. Switch doChargeRefunded to new framework
parent
89cda2c9
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!213
New framework for handling webhook events. Switch doChargeRefunded to new framework
Pipeline
#1089
skipped
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Core/Payment/StripeIPN.php
+10
-76
10 additions, 76 deletions
CRM/Core/Payment/StripeIPN.php
Civi/Stripe/Webhook/Events.php
+240
-0
240 additions, 0 deletions
Civi/Stripe/Webhook/Events.php
with
250 additions
and
76 deletions
CRM/Core/Payment/StripeIPN.php
+
10
−
76
View file @
627d376e
...
...
@@ -385,14 +385,21 @@ class CRM_Core_Payment_StripeIPN {
* @throws \API_Exception
* @throws \Civi\API\Exception\UnauthorizedException
*/
public
function
processWebhookEvent
()
:
S
tdClass
{
public
function
processWebhookEvent
()
:
s
tdClass
{
$return
=
(
object
)
[
'message'
=>
''
,
'ok'
=>
FALSE
,
'exception'
=>
NULL
];
try
{
$this
->
setInputParameters
();
$webhookEventProcessor
=
new
\Civi\Stripe\Webhook\Events
();
$webhookEventProcessor
->
setEventType
(
$this
->
getEventType
());
$webhookEventProcessor
->
setEventID
(
$this
->
getEventID
());
$webhookEventProcessor
->
setData
(
$this
->
getData
());
$webhookEventProcessor
->
setPaymentProcessor
(
$this
->
getPaymentProcessor
()
->
getID
());
switch
(
$this
->
eventType
)
{
case
'charge.refunded'
:
$return
->
ok
=
TRUE
;
$return
->
message
=
$this
->
doChargeRefunded
();
$return
=
$webhookEventProcessor
->
doChargeRefunded
();
break
;
default
:
...
...
@@ -625,79 +632,6 @@ class CRM_Core_Payment_StripeIPN {
return
TRUE
;
}
/**
* Process the charge.refunded event from Stripe
*
* @return bool
* @throws \CRM_Core_Exception
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
* @throws \Stripe\Exception\ApiErrorException
*/
private
function
doChargeRefunded
()
{
// Cancelling an uncaptured paymentIntent triggers charge.refunded but we don't want to process that
if
(
empty
(
CRM_Stripe_Api
::
getObjectParam
(
'captured'
,
$this
->
getData
()
->
object
)))
{
return
TRUE
;
}
// This gives us the refund date + reason code
$refunds
=
$this
->
getPaymentProcessor
()
->
stripeClient
->
refunds
->
all
([
'charge'
=>
$this
->
charge_id
,
'limit'
=>
1
]);
$refund
=
$refunds
->
data
[
0
];
// Stripe does not refund fees - see https://support.stripe.com/questions/understanding-fees-for-refunded-payments
// This gets the fee refunded
// $this->fee = $this->getPaymentProcessor()->getFeeFromBalanceTransaction($refund->balance_transaction, $this->retrieve('currency', 'String', FALSE));
// This gives us the actual amount refunded
$amountRefunded
=
CRM_Stripe_Api
::
getObjectParam
(
'amount_refunded'
,
$this
->
getData
()
->
object
);
// Get the CiviCRM contribution that matches the Stripe metadata we have from the event
$this
->
getContribution
();
if
(
isset
(
$this
->
contribution
[
'payments'
]))
{
foreach
(
$this
->
contribution
[
'payments'
]
as
$payment
)
{
if
(
$payment
[
'trxn_id'
]
===
$refund
->
id
)
{
return
'Refund '
.
$refund
->
id
.
' already recorded in CiviCRM'
;
}
if
(
$payment
[
'trxn_id'
]
===
$this
->
charge_id
)
{
// This triggers the financial transactions/items to be updated correctly.
$cancelledPaymentID
=
$payment
[
'id'
];
}
}
}
$refundParams
=
[
'contribution_id'
=>
$this
->
contribution
[
'id'
],
'total_amount'
=>
0
-
abs
(
$amountRefunded
),
'trxn_date'
=>
date
(
'YmdHis'
,
$refund
->
created
),
'trxn_result_code'
=>
$refund
->
reason
,
'fee_amount'
=>
0
,
'trxn_id'
=>
$refund
->
id
,
'order_reference'
=>
$this
->
invoice_id
??
NULL
,
];
if
(
!
empty
(
$cancelledPaymentID
))
{
$refundParams
[
'cancelled_payment_id'
]
=
$cancelledPaymentID
;
}
$lock
=
Civi
::
lockManager
()
->
acquire
(
'data.contribute.contribution.'
.
$refundParams
[
'contribution_id'
]);
if
(
!
$lock
->
isAcquired
())
{
\Civi
::
log
()
->
error
(
'Could not acquire lock to record refund for contribution: '
.
$refundParams
[
'contribution_id'
]);
}
$refundPayment
=
civicrm_api3
(
'Payment'
,
'get'
,
[
'trxn_id'
=>
$refundParams
[
'trxn_id'
],
'total_amount'
=>
$refundParams
[
'total_amount'
],
]);
if
(
!
empty
(
$refundPayment
[
'count'
]))
{
$message
=
'OK - refund already recorded'
;
}
else
{
$this
->
updateContributionRefund
(
$refundParams
);
$message
=
'OK - refund recorded'
;
}
$lock
->
release
();
return
$message
;
}
/**
* Create the next contribution for a recurring contribution
* This happens when Stripe generates a new invoice and notifies us (normally by invoice.finalized but
...
...
This diff is collapsed.
Click to expand it.
Civi/Stripe/Webhook/Events.php
0 → 100644
+
240
−
0
View file @
627d376e
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
namespace
Civi\Stripe\Webhook
;
class
Events
{
use
\CRM_Core_Payment_MJWIPNTrait
;
/**
* @var \CRM_Core_Payment_Stripe Payment processor
*/
private
$paymentProcessor
;
/**
* @param string $eventID
*
* @return void
*/
public
function
setEventID
(
string
$eventID
):
void
{
$this
->
eventID
=
$eventID
;
}
/**
* @param string $eventType
*
* @return void
*/
public
function
setEventType
(
string
$eventType
):
void
{
$this
->
eventType
=
$eventType
;
}
/**
* @param \Stripe\StripeObject|\PropertySpy $data
*
* @return void
*/
public
function
setData
(
$data
):
void
{
$this
->
data
=
$data
;
}
/**
* @return \stdClass
*/
private
function
getResultObject
()
{
$return
=
new
\stdClass
();
$return
->
message
=
''
;
$return
->
ok
=
FALSE
;
$return
->
exception
=
NULL
;
return
$return
;
}
/**
* @param string $name The key of the required value
* @param string $dataType The datatype of the required value (eg. String)
*
* @return int|mixed|null
* @throws \CRM_Core_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
* @throws \Stripe\Exception\ApiErrorException
*/
private
function
getValueFromStripeObject
(
string
$name
,
string
$dataType
)
{
$value
=
\CRM_Stripe_Api
::
getObjectParam
(
$name
,
$this
->
getData
()
->
object
);
$value
=
\CRM_Utils_Type
::
validate
(
$value
,
$dataType
,
FALSE
);
return
$value
;
}
/**
* A) A one-off contribution will have trxn_id == stripe.charge_id
* B) A contribution linked to a recur (stripe subscription):
* 1. May have the trxn_id == stripe.subscription_id if the invoice was not generated at the time the contribution
* was created
* (Eg. the recur was setup with a future recurring start date).
* This will be updated to trxn_id == stripe.invoice_id when a suitable IPN is received
* @todo: Which IPN events will update this?
* 2. May have the trxn_id == stripe.invoice_id if the invoice was generated at the time the contribution was
* created OR the contribution has been updated by the IPN when the invoice was generated.
*
* @param string $chargeID Optional, one of chargeID, invoiceID, subscriptionID must be specified
* @param string $invoiceID
* @param string $subscriptionID
*
* @return array
* @throws \CRM_Core_Exception
*/
private
function
findContribution
(
string
$chargeID
=
''
,
string
$invoiceID
=
''
,
string
$subscriptionID
=
''
):
array
{
$paymentParams
=
[
'contribution_test'
=>
$this
->
getPaymentProcessor
()
->
getIsTestMode
(),
];
// A) One-off contribution
if
(
!
empty
(
$chargeID
))
{
$paymentParams
[
'trxn_id'
]
=
$chargeID
;
$contributionApi3
=
civicrm_api3
(
'Mjwpayment'
,
'get_contribution'
,
$paymentParams
);
}
// B2) Contribution linked to subscription and we have invoice_id
// @todo there is a case where $contribution is not defined (i.e. if charge_id is empty)
if
(
!
$contributionApi3
[
'count'
])
{
unset
(
$paymentParams
[
'trxn_id'
]);
if
(
!
empty
(
$invoiceID
))
{
$paymentParams
[
'order_reference'
]
=
$invoiceID
;
$contributionApi3
=
civicrm_api3
(
'Mjwpayment'
,
'get_contribution'
,
$paymentParams
);
}
}
// B1) Contribution linked to subscription and we have subscription_id
// @todo there is a case where $contribution is not defined (i.e. if charge_id, invoice_id are empty)
if
(
!
$contributionApi3
[
'count'
])
{
unset
(
$paymentParams
[
'trxn_id'
]);
if
(
!
empty
(
$subscriptionID
))
{
$paymentParams
[
'order_reference'
]
=
$subscriptionID
;
$contributionApi3
=
civicrm_api3
(
'Mjwpayment'
,
'get_contribution'
,
$paymentParams
);
}
}
// @todo there is a case where $contribution is not defined (i.e. if charge_id, invoice_id, subscription_id are empty)
if
(
!
$contributionApi3
[
'count'
])
{
if
((
bool
)
\Civi
::
settings
()
->
get
(
'stripe_ipndebug'
))
{
$message
=
$this
->
getPaymentProcessor
()
->
getPaymentProcessorLabel
()
.
'No matching contributions for event '
.
$this
->
getEventID
();
\Civi
::
log
()
->
debug
(
$message
);
}
$result
=
[];
\CRM_Mjwshared_Hook
::
webhookEventNotMatched
(
'stripe'
,
$this
,
'contribution_not_found'
,
$result
);
if
(
empty
(
$result
[
'contribution'
]))
{
return
[];
}
$contribution
=
$result
[
'contribution'
];
}
else
{
$contribution
=
$contributionApi3
[
'values'
][
$contributionApi3
[
'id'
]];
}
return
$contribution
;
}
/**
* Process the charge.refunded event from Stripe
*
* @return \stdClass
* @throws \CRM_Core_Exception
* @throws \CiviCRM_API3_Exception
* @throws \Civi\Payment\Exception\PaymentProcessorException
* @throws \Stripe\Exception\ApiErrorException
*/
public
function
doChargeRefunded
()
{
$return
=
$this
->
getResultObject
();
// Check we have the right data object for this event
if
((
$this
->
getData
()
->
object
[
'object'
]
??
''
)
!==
'charge'
)
{
$return
->
message
=
'doChargeRefunded Invalid object type'
;
return
$return
;
}
// Cancelling an uncaptured paymentIntent triggers charge.refunded but we don't want to process that
if
(
empty
(
\CRM_Stripe_Api
::
getObjectParam
(
'captured'
,
$this
->
getData
()
->
object
)))
{
$return
->
ok
=
TRUE
;
return
$return
;
}
// Charge ID is required
$chargeID
=
$this
->
getValueFromStripeObject
(
'charge_id'
,
'String'
);
if
(
!
$chargeID
)
{
$return
->
message
=
'doChargeRefunded Missing charge_id'
;
return
$return
;
}
// Invoice ID is optional
$invoiceID
=
$this
->
getValueFromStripeObject
(
'invoice_id'
,
'String'
);
// This gives us the refund date + reason code
$refunds
=
$this
->
getPaymentProcessor
()
->
stripeClient
->
refunds
->
all
([
'charge'
=>
$chargeID
,
'limit'
=>
1
]);
$refund
=
$refunds
->
data
[
0
];
// Stripe does not refund fees - see https://support.stripe.com/questions/understanding-fees-for-refunded-payments
// This gives us the actual amount refunded
$amountRefunded
=
\CRM_Stripe_Api
::
getObjectParam
(
'amount_refunded'
,
$this
->
getData
()
->
object
);
// Get the CiviCRM contribution that matches the Stripe metadata we have from the event
$contribution
=
$this
->
findContribution
(
$chargeID
,
$invoiceID
);
if
(
empty
(
$contribution
))
{
$return
->
message
=
'doChargeRefunded Contribution not found'
;
return
$return
;
}
if
(
isset
(
$contribution
[
'payments'
]))
{
foreach
(
$contribution
[
'payments'
]
as
$payment
)
{
if
(
$payment
[
'trxn_id'
]
===
$refund
->
id
)
{
$return
->
message
=
'Refund '
.
$refund
->
id
.
' already recorded in CiviCRM'
;
return
$return
;
}
if
(
$payment
[
'trxn_id'
]
===
$chargeID
)
{
// This triggers the financial transactions/items to be updated correctly.
$cancelledPaymentID
=
$payment
[
'id'
];
}
}
}
$refundParams
=
[
'contribution_id'
=>
$contribution
[
'id'
],
'total_amount'
=>
0
-
abs
(
$amountRefunded
),
'trxn_date'
=>
date
(
'YmdHis'
,
$refund
->
created
),
'trxn_result_code'
=>
$refund
->
reason
,
'fee_amount'
=>
0
,
'trxn_id'
=>
$refund
->
id
,
'order_reference'
=>
$invoiceID
,
];
if
(
!
empty
(
$cancelledPaymentID
))
{
$refundParams
[
'cancelled_payment_id'
]
=
$cancelledPaymentID
;
}
$lock
=
\Civi
::
lockManager
()
->
acquire
(
'data.contribute.contribution.'
.
$refundParams
[
'contribution_id'
]);
if
(
!
$lock
->
isAcquired
())
{
\Civi
::
log
()
->
error
(
'Could not acquire lock to record refund for contribution: '
.
$refundParams
[
'contribution_id'
]);
}
$refundPayment
=
civicrm_api3
(
'Payment'
,
'get'
,
[
'trxn_id'
=>
$refundParams
[
'trxn_id'
],
'total_amount'
=>
$refundParams
[
'total_amount'
],
]);
if
(
!
empty
(
$refundPayment
[
'count'
]))
{
$return
->
message
=
'OK - refund already recorded'
;
}
else
{
$this
->
updateContributionRefund
(
$refundParams
);
$return
->
message
=
'OK - refund recorded'
;
}
$lock
->
release
();
return
$return
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment