ImageFieldFormatter fails with Stage File Proxy when validating missing remote images

Created on 1 April 2025, 3 days ago

Problem/Motivation

When using the ImageFieldFormatter plugin from the Entity Embed module in a development environment that uses the
Stage File Proxy โ†’ module, image embeds fail with an error message like:

The selected image "@image" is invalid.

This occurs because ImageFieldFormatter::isValidImage() calls $this->imageFactory->get($uri)->isValid()
on the image file, but if the file doesn't exist locally yet, the validation fails.
Stage File Proxy downloads images lazily only when accessed via an HTTP request, but the image validation does not trigger this fetch.

Steps to reproduce

  1. Install and configure Stage File Proxy to pull from a remote production site.
  2. Embed an image using the Entity Embed module via CKEditor or a rendered field using the "Image" display plugin.
  3. Ensure the referenced image exists on the origin server but not locally in public://.
  4. Save or render the content.

Expected result:
Image is fetched and embedded normally.

Actual result:
An error message is shown: "The selected image is invalid."
Additionally, a PHP warning may be logged about the file not being found.

Proposed resolution

Update the ImageFieldFormatter::isValidImage() method to check if the file exists locally, and if not, trigger an HTTP request
to the fileโ€™s public URL using Drupalโ€™s HTTP client (\Drupal::httpClient()). This ensures Stage File Proxy downloads the file before validation occurs.

if (!file_exists($local_path)) {
  try {
    $url = \Drupal::service('stream_wrapper_manager')->getViaUri($uri)->getExternalUrl();
    \Drupal::httpClient()->get($url);
  }
  catch (\Exception $e) {
    $this->messenger->addError($this->t('The image "@image" could not be downloaded via Stage File Proxy.', ['@image' => $entity->label()]));
    return AccessResult::forbidden();
  }
}

Remaining tasks

  • Review and test the proposed change.
  • Submit a merge request with the fix.

User interface changes

<!-- None -->

API changes

<!-- None -->

Data model changes

<!-- None -->
๐Ÿ’ฌ Support request
Status

Active

Version

1.0

Component

Code

Created by

๐Ÿ‡ฆ๐Ÿ‡ฒArmenia arthur.baghdasar

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024