-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[IPP/POS] Automatically Cancel Payment Intents #13719
Draft
malinajirka
wants to merge
6
commits into
trunk
Choose a base branch
from
issue/13593-payment-intent-cancellation-v2
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
012f04e
Add PaymentIntentStatus type explicitly
malinajirka f2463b5
Enable cancelling all non-final PI status except of requires_capture
malinajirka 8c66c5c
Automatically cancel PI for incomplete non-retryable statuses
malinajirka 1efe7c3
Add tests for automatic PI cancellation
malinajirka ef0bf4d
Pass PaymentIntent as a reference
malinajirka 3cde3ca
Cancel PaymentIntents in retry flow
malinajirka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ package com.woocommerce.android.cardreader.internal.payments | |
|
||
import com.stripe.stripeterminal.external.models.PaymentIntent | ||
import com.stripe.stripeterminal.external.models.PaymentIntentStatus | ||
import com.stripe.stripeterminal.external.models.PaymentIntentStatus.CANCELED | ||
import com.woocommerce.android.cardreader.CardReaderStore | ||
import com.woocommerce.android.cardreader.CardReaderStore.CapturePaymentResponse | ||
import com.woocommerce.android.cardreader.config.CardReaderConfigFactory | ||
|
@@ -17,8 +16,15 @@ import com.woocommerce.android.cardreader.internal.payments.actions.ProcessPayme | |
import com.woocommerce.android.cardreader.internal.payments.actions.ProcessPaymentAction.ProcessPaymentStatus | ||
import com.woocommerce.android.cardreader.internal.wrappers.TerminalWrapper | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.* | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.CapturingPayment | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.CardPaymentStatusErrorType.Generic | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.CollectingPayment | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.InitializingPayment | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.PaymentCompleted | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.PaymentFailed | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.PaymentMethodType | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.ProcessingPayment | ||
import com.woocommerce.android.cardreader.payments.CardPaymentStatus.ProcessingPaymentCompleted | ||
import com.woocommerce.android.cardreader.payments.PaymentData | ||
import com.woocommerce.android.cardreader.payments.PaymentInfo | ||
import kotlinx.coroutines.flow.Flow | ||
|
@@ -44,35 +50,62 @@ internal class PaymentManager( | |
if (paymentIntent?.status != PaymentIntentStatus.REQUIRES_PAYMENT_METHOD) { | ||
return@flow | ||
} | ||
processPaymentIntent(paymentInfo.orderId, paymentIntent).collect { emit(it) } | ||
|
||
processPayment(paymentInfo.orderId, paymentIntent) | ||
} | ||
|
||
fun retryPayment(orderId: Long, paymentData: PaymentData) = | ||
processPaymentIntent(orderId, (paymentData as PaymentDataImpl).paymentIntent) | ||
processPayment(orderId, (paymentData as PaymentDataImpl).paymentIntent) | ||
|
||
fun cancelPayment(paymentData: PaymentData) { | ||
val paymentIntent = (paymentData as PaymentDataImpl).paymentIntent | ||
cancelOngoingPayment(paymentIntent) | ||
} | ||
|
||
private fun cancelOngoingPayment(paymentIntent: PaymentIntent) { | ||
/* If the paymentIntent is in REQUIRES_CAPTURE state the app should not cancel the payment intent as it | ||
doesn't know if it was already captured or not during one of the previous attempts to capture it. */ | ||
if (paymentIntent.status == PaymentIntentStatus.REQUIRES_PAYMENT_METHOD || | ||
paymentIntent.status == PaymentIntentStatus.REQUIRES_CONFIRMATION | ||
if (paymentIntent.status != PaymentIntentStatus.SUCCEEDED && | ||
paymentIntent.status != PaymentIntentStatus.CANCELED && | ||
paymentIntent.status != PaymentIntentStatus.REQUIRES_CAPTURE | ||
) { | ||
cancelPaymentAction.cancelPayment(paymentIntent) | ||
} | ||
} | ||
|
||
private fun processPaymentIntent(orderId: Long, data: PaymentIntent) = flow { | ||
var paymentIntent = data | ||
if (paymentIntent.status == null || paymentIntent.status == CANCELED) { | ||
emit(errorMapper.mapError(errorMessage = "Cannot retry paymentIntent with status ${paymentIntent.status}")) | ||
private fun processPayment(orderId: Long, paymentIntent: PaymentIntent) = flow { | ||
val paymentIntentReference = PaymentIntentReference(paymentIntent) | ||
var eligibleForRetry = false | ||
try { | ||
/* Passing PI as reference is a hack so we can access the updated PI in the finally block */ | ||
processPaymentIntent(orderId, paymentIntentReference).collect { | ||
emit(it) | ||
if (it is PaymentFailed && it.paymentDataForRetry != null) { | ||
eligibleForRetry = true | ||
} | ||
} | ||
} finally { | ||
if (!eligibleForRetry) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The idea here is that if the PaymentIntent can be used for retries => we shouldn't cancel it as we'd break the retry logic, but we should cancel all other non-final payment intents. |
||
cancelOngoingPayment(paymentIntentReference.value) | ||
} | ||
} | ||
} | ||
|
||
private fun processPaymentIntent(orderId: Long, paymentIntentRef: PaymentIntentReference) = flow { | ||
if (paymentIntentRef.value.status == null || paymentIntentRef.value.status == PaymentIntentStatus.CANCELED) { | ||
emit( | ||
errorMapper.mapError( | ||
errorMessage = "Cannot retry paymentIntent with status ${paymentIntentRef.value.status}" | ||
) | ||
) | ||
return@flow | ||
} | ||
|
||
if (paymentIntent.status == PaymentIntentStatus.REQUIRES_PAYMENT_METHOD) { | ||
paymentIntent = collectPayment(paymentIntent) | ||
if (paymentIntentRef.value.status == PaymentIntentStatus.REQUIRES_PAYMENT_METHOD) { | ||
paymentIntentRef.value = collectPayment(paymentIntentRef.value) | ||
} | ||
if (paymentIntent.status == PaymentIntentStatus.REQUIRES_CONFIRMATION) { | ||
paymentIntent = processPayment(paymentIntent) | ||
if (paymentIntentRef.value.status == PaymentIntentStatus.REQUIRES_CONFIRMATION) { | ||
paymentIntentRef.value = processPayment(paymentIntentRef.value) | ||
} | ||
|
||
/* | ||
|
@@ -88,9 +121,11 @@ internal class PaymentManager( | |
the success/failure of the actual payment. | ||
*/ | ||
|
||
if (paymentIntent.status == PaymentIntentStatus.REQUIRES_CAPTURE || isInteracPaymentSuccessful(paymentIntent)) { | ||
retrieveReceiptUrl(paymentIntent)?.let { receiptUrl -> | ||
capturePayment(receiptUrl, orderId, cardReaderStore, paymentIntent) | ||
if (paymentIntentRef.value.status == PaymentIntentStatus.REQUIRES_CAPTURE || | ||
isInteracPaymentSuccessful(paymentIntentRef.value) | ||
) { | ||
retrieveReceiptUrl(paymentIntentRef.value)?.let { receiptUrl -> | ||
capturePayment(receiptUrl, orderId, cardReaderStore, paymentIntentRef.value) | ||
} | ||
} | ||
} | ||
|
@@ -199,3 +234,4 @@ internal class PaymentManager( | |
} | ||
|
||
internal data class PaymentDataImpl(val paymentIntent: PaymentIntent) : PaymentData | ||
internal data class PaymentIntentReference(var value: PaymentIntent) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📓 Previously, we were whitelisting statuses that should be cancelled. I believe this is not correct and we should attempt to cancel all nonfinal statuses. Ideally even
Requires capture
, however, this one is more tricky as mentioned in the description of this PR.