Fatal error if thumbnail image does not exist

Created on 26 February 2025, about 1 month ago

Problem/Motivation

I'm using the Media PDF Thumbnail formatter in a view. For some reason, one of the media items to be displayed is missing the thumbnail image. This results in a fatal error:

Uncaught PHP Exception ValueError: "Path cannot be empty" at [path]/web/modules/contrib/media_pdf_thumbnail/src/Plugin/Field/FieldFormatter/ImageFieldFormatterElementViewTrait.php line 108

When investigating the cause, I also noticed that there is an error fetching the image style in handleDerivative().

🐛 Bug report
Status

Active

Version

6.1

Component

Code

Created by

🇩🇪Germany mrshowerman Munich

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

Merge Requests

Comments & Activities

  • Issue created by @mrshowerman
  • Pipeline finished with Success
    about 1 month ago
    Total: 389s
    #434539
  • First commit to issue fork.
  • 🇫🇷France sgostanyan

    Additionally, I have added the use of the generic thumbnail as fallback and added a message to the logs.

  • 🇮🇹Italy shura80

    I think that the changes in the latest MR can be improved. I mean, the following is not a very usual situation, but I will try to describe a particular case that we spotted: imagine you are working on different environments, it can happen that if you want to "clone" one of them importing the database and then the configuration with changes you did locally, you will have the pdf entities but not the physical files on your filesystem. In this case you will receive PHP warnings because the files and the derivative images don't exist locally.

    Would it be better to add also a second condition to check in the handleDerivative method of the ImageFieldFormatterElementViewTrait?

        if (empty($file) || !file_exists(\Drupal::service('file_system')->realpath($file->getFileUri()))) {
          $this->mediaPdfThumbnailImageManager->getLogger()->warning('No file found for image id: @imageId. Using generic thumbnail instead', ['@imageId' => $imageId]);
          $file = $this->mediaPdfThumbnailImageManager->getGenericThumbnail(TRUE);
        }
    
  • 🇫🇷France sgostanyan

    Thanks for your feedback. The new changes should add a proper way to check for the existence of files with both local and remote storage system.

Production build 0.71.5 2024