Tokens with no expiration date

Created on 16 December 2024, 4 months ago

Problem/Motivation

We have seen that some tokens do not have an expiration date. We asked Wallee, and they informed us that PF Pay, Twint, PayPal, and SchemeTokens (Master/Visa) do not have an expiration date for the token. Is this a problem for our integration of the tokens/Drupal Commerce storage?

📌 Task
Status

Active

Version

2.0

Component

Code

Created by

🇨🇭Switzerland cola

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

Comments & Activities

  • Issue created by @cola
  • 🇨🇭Switzerland berdir Switzerland

    According to the field definition, PaymentMethod entities do support tokens/payment methods that don't expire:

        $fields['expires'] = BaseFieldDefinition::create('timestamp')
          ->setLabel(t('Expires'))
          ->setDescription(t('The time when the payment method expires. 0 for never.'))
    ..
    

    I see that \Drupal\commerce_wallee\Services\PaymentSdk::createPaymentMethod checks if the expiration date is a valid date and only converts it then. Maybe it should use 0 as the default value and not null, but it's unlikely that commerce does a type safe check here.

    So without further checking, I'd say that should work.

  • 🇨🇭Switzerland cola

    @berdir thank you for your comment! We change it like in the patch bellow. So we try to change both the createPaymentMethod and webhookTokenVersion. If you think is working like this, we can publish it. Thank you for your quick review.

Production build 0.71.5 2024