Allow payment intent to be altered to support free trials on recurring orders

Created on 1 October 2020, over 4 years ago
Updated 7 March 2023, about 2 years ago

Problem/Motivation

When a free order is placed using Stripe, it throws the following error - this is because there is no payment amount to be taken currently.

Drupal\commerce_payment\Exception\InvalidRequestException: Invalid parameters were supplied to Stripe's API. in Drupal\commerce_stripe\ErrorHelper::handleException() (line 45 of modules/contrib/commerce_stripe/src/ErrorHelper.php).

Generally, you wouldn't want to collect a payment for a free order. However, when you have a subscription that has a free trial, then you do want to collect payment information for the end user up front even though you won't actually capture the payment until a later date.

Steps to reproduce

Step1: Enable 'commerce_recurring' module
Step2: Choose 'Allow free trials' from /admin/commerce/config/billing-schedules/manage/membership_billing_schedule
Step3: Try to purchase the product under the trial Billing schedule then we will get this issue.

Proposed resolution

I don't believe it's the responsibility of the Stripe module to determine every use case for free orders. Rather, we should let other module developers handle the workflow how they'd like. In order to accommodate this, we should allow the payment intent array that is sent to stripe to be altered by other modules before being sent. This will allow for other developers to build the flows they want without additional overhead for the Stripe maintainers.

Remaining tasks

User interface changes

API changes

Add a new alter hook for payment intent creation: hook_commerce_stripe_payment_intent_create_alter(&$intent_array, $order, $payment);

Data model changes

📌 Task
Status

Closed: duplicate

Version

1.0

Component

Code

Created by

🇮🇳India abhinand gokhala k

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇺🇸United States j_ten_man

    This patch needs work, but don't want to spend a bunch of time on it if others think that we should go a different route (for example, using an Event vs alter hook).

    An example implementation using this hook:

    <?php
    
    /**
     * Implements hook_commerce_stripe_payment_intent_create_alter().
     */
    function hook_commerce_stripe_payment_intent_create_alter(&$intent_array, $order, $payment = NULL) {
      // Allow a free order to process.
      if (!$intent_array['amount']) {
        // Force manual capture - a free order shouldn't automatically be charged.
        $intent_array['capture_method'] = 'manual';
        // Get the price before discounts as the authorization amount.
        $intent_array['amount'] = \Drupal::service('commerce_price.minor_units_converter')->toMinorUnits($order->getSubtotalPrice());
        // $.50 is the minimum amount required by Stripe.
        if (!$intent_array['amount']) {
          $intent_array['amount'] = 50;
        }
      }
    }
    
  • Status changed to Closed: duplicate about 2 years ago
  • 🇬🇧United Kingdom jonathanshaw Stroud, UK

    I think this is a duplicate of Allow customising payment intent attributes and metadata Fixed which just got committed. If it is not, please explain why.

Production build 0.71.5 2024