Undefined methods in ContextualImageStyleDownloadController::process

Created on 17 February 2025, about 2 months ago

Problem/Motivation

There are multiple methods called in \Drupal\media_contextual_crop\Controller\ContextualImageStyleDownloadController::process that used to exist in this class but are not present in 2.1.5.

Steps to reproduce

Cause a new derivative to be called for and open the image on its own path.

Error: Call to undefined method Drupal\media_contextual_crop\Controller\ContextualImageStyleDownloadController::checkNormalizedScheme() in Drupal\media_contextual_crop\Controller\ContextualImageStyleDownloadController->process() (line 96 of modules/contrib/media_contextual_crop/src/Controller/ContextualImageStyleDownloadController.php).

Several other methods are flagged as well.

The method is not indexed by phpStorm so it wasn't moved. Examining the class in gitlab shows these methods were present in 2.1.4 and removed in a recent commit.

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

πŸ› Bug report
Status

Active

Version

2.1

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States fathershawn New York

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

Comments & Activities

  • Issue created by @fathershawn
  • πŸ‡«πŸ‡·France DrDam

    Did you check if this patch have been applied ?

    "drupal/core": {
                    "Refactor ImageStyleDownloadController": "https://git.drupalcode.org/project/drupal/-/merge_requests/10766.patch"
                }

    This patch change things in core ImageStyleDownloadController in order to extract some technical elements, used in the ContextualImageStyleDownloadController::process method

  • πŸ‡ΊπŸ‡ΈUnited States fathershawn New York

    I didn't check if that patch had applied, but I did search my entire codebase for the existence of those methods and I did manually inspect the parent class. So I think we can be confident that it did not apply.

    Further, patching core in a contrib module is not generally a good plan. A better approach would be to include the altered ImageStyleDownloadController here in your module and then also alter the image.style_public and image.style_private routes here in your module to use your substitute controller.

  • πŸ‡«πŸ‡·France DrDam

    That's not the goal ... I don't want alter it, I want be able to extends (herite from it) without duplicate 40% of it's code...

    see #2685905 ✨ Refactor ImageStyleDownloadController so derivatives can be generated by contrib modules Needs work for more informations

  • πŸ‡ΊπŸ‡ΈUnited States fathershawn New York

    Thanks - I did read that issue. The contextual crop approach is super useful - really like this idea!

    I understand that swapping a modified class is more work but there are good reasons to do it:
    - Users don't have to understand how to alter their composer.json if they aren't using patches already.
    - I am using patches so I'm not sure why it didn't patch, but explicitly decorating a service or altering a route is more reliable.
    - If a user uninstalls your module, the modifications are removed. With the patch approach when I uninstall the the module via Drupal the patch remains. Even if I composer remove, the patch remains unless I'm already patching that module or core myself for another issue.

  • πŸ‡«πŸ‡·France DrDam

    - I am using patches so I'm not sure why it didn't patch, but explicitly decorating a service or altering a route is more reliable.

    I don't want altering any route, native controller work fine, and I need it continue making is job has he do. I juste want limit code duplication.

    If you prefer not using this patch, the last release without it is the 2.1.4

  • πŸ‡ΊπŸ‡ΈUnited States fathershawn New York

    Thanks for considering my feedback.

Production build 0.71.5 2024