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
- Install and configure Stage File Proxy to pull from a remote production site.
- Embed an image using the Entity Embed module via CKEditor or a rendered field using the "Image" display plugin.
- Ensure the referenced image exists on the origin server but not locally in
public://
.
- 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 -->