Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apple Pay recurring payments (2521) #1986

Merged
merged 22 commits into from
Feb 7, 2024

Conversation

pedrosilva-pt
Copy link
Collaborator

@pedrosilva-pt pedrosilva-pt commented Jan 24, 2024

PR Description

This PR adds support for ApplePay vaulting.

It ensures that ApplePay vaulted tokens, as per Apple policies, cannot be used to pay orders of returning users and only to renew subscriptions.

The PR refactors ApplePay and Venmo use their own dedicated payment token classes: PaymentTokenVenmo, PaymentTokenApplePay. This allows for better code interpretation and isolation.

PayPal and Venmo vaulting generate by default the same vault.id, which causes an issue where the token is only valid for the first payment_source that does a merchant initiated payment, and will fail if we try with the other payment_source (error: MISMATCHED_VAULT_ID_TO_PAYMENT_SOURCE).
To resolve this PayPal suggests setting the permit_multiple_payment_tokens=true.
This PR implements this suggestion so now a different vault.id is generated per vaulting request.
https://developer.paypal.com/docs/checkout/save-payment-methods/during-purchase/js-sdk/venmo/

Issue Description

Add support for saving Apple Pay payment methods (when using Vault v3).

https://developer.paypal.com/docs/checkout/save-payment-methods/during-purchase/js-sdk/applepay/

Note: Apple Pay can't be used as a payment method for returning buyers, according to Apple guidelines.

This means saved Apple Pay payments will only be available as a payment method for subscription renewal payments, not for return-buyer checkouts.

We should ensure that buyers are not able to use a saved Apple Pay payment method for a return purchase on the Block Checkout, while still bing able to switch the payment method on existing subscriptions to the saved Apple Pay payment method.

Acceptance

Given a subscription product is in the cart (or on single product)
When using Apple Pay as a payment method
Then Apple Pay payment method gets saved
And can be used only for subscription renewal payments

@InpsydeNiklas InpsydeNiklas added this to the 2.5.3 milestone Jan 31, 2024
@InpsydeNiklas InpsydeNiklas modified the milestones: 2.5.3, 2.5.4 Feb 1, 2024
@Dinamiko Dinamiko merged commit 037f650 into trunk Feb 7, 2024
14 checks passed
@Dinamiko Dinamiko deleted the PCP-2521-apple-pay-recurring-payments branch February 7, 2024 09:47
@Dinamiko Dinamiko added the enhancement New feature or request label Feb 16, 2024
@Dinamiko Dinamiko mentioned this pull request Feb 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants