Upgrade to Recurly PHP v3 library

Created on 1 August 2024, 8 months ago

Problem/Motivation

The module currently uses the older v2 library from https://github.com/recurly/recurly-client-php. This library is compatible with v2 of the Recurly API. And while Recurly still supports the v2 API, and somewhat the v2 API client, it would be good for us to update to the current version of the API and Library.

Among other things this will help with PHP8.1+ compatability. Recurly hasn't updated the v2 library for PHP8.1 plus and right now it requires running a patched version of the library. See https://github.com/recurly/recurly-client-php/pull/749.

In order for this module to work with Drupal 10+ we need to support Drupal 8.1+ and so either the library needs to be patched (current solution) or we need to upgrade to the newer SDK. Which is what this issue proposes.

Proposed resolution

Update to the latest version of the Recurly PHP client from https://github.com/recurly/recurly-client-php

Remaining tasks

Start by installing the latest PHP client and fixing all the errors this will cause because of code changes. Then figure out what features break and fix those. Hopefully this can be a 1 to 1 parity with the existing module but that remains to be seen.

User interface changes

TBD.

API changes

TBD.

Data model changes

TBD.

πŸ“Œ Task
Status

Active

Version

5.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States eojthebrave Minneapolis, MN

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

Merge Requests

Comments & Activities

  • Issue created by @eojthebrave
  • πŸ‡ΊπŸ‡ΈUnited States eojthebrave Minneapolis, MN
  • πŸ‡ΊπŸ‡ΈUnited States eojthebrave Minneapolis, MN

    The MR updates the module to work with the latest release of the Recurly PHP SDK. This required making a lot of updates to the code since the way the Recurly PHP classes are used is different in the current version than the older v2 SDK the module has been using. Hence the need to touch so many different files. I've tried to stick to only updating the API integration and not changing any of the modules functionality. I've verified this work so far through a combination of manual testing, the tests included in the module, and via Drupalize.Me's e2e testing suite.

  • πŸ‡ΊπŸ‡ΈUnited States eojthebrave Minneapolis, MN
  • πŸ‡ΊπŸ‡ΈUnited States eojthebrave Minneapolis, MN

    This update is going to have breaking changes so I think we should create a new 6.x branch, and start with a 6.x-beta or something like that that indicates I think this is working (at least in my tests) but you should also do your due diligence if upgrading. We could also have this new branch drop support for Drupal 9.

  • πŸ‡³πŸ‡±Netherlands jurriaanroelofs

    @eojthebrave thx for your work on this! I would love to test this but with both the 5.x branch and this patched version I'm not able to load active subscriptions for a user on the /user/nid/subscription page. It will always decide there are no subscriptions for the user and redirect to /user/uid/subscription/signup.
    I am able to load the list of plans at /admin/config/services/recurly/subscription-plans so my API keys should be fine.

    Is this a known problem on Drupal 10.x and PHP 8.3? Need a workaround for this or help debugging it in order to help you test your patch. Unfortunately I don't get any errors and to debug the API request I think I'd need to edit the recurly-client library, or is there a possibility to get debug info my flipping some verbosity switch?

    Even when I create a new susbcription from within the Drupal site, the new subscription will be created with the correct account code (user-uid) but not load for said user.

Production build 0.71.5 2024