- πΊπ¦Ukraine kovalski.1298
Fixed the issue that prevented the previous patch from being applied.
Fixed the WebP file search in the database and ensured correct usage of the WebP module.
The remote_stream_wrapper module handles image style downloads by creating new routes for the supported schemes to delivery files with RemoteImageStyleDownloadController::deliver
, which is a thin wrapper around the coreImageStyleDownloadController::deliver
function to ensure the target is a managed file.
Meanwhile the webp module implements it own ImageStyleDownloadController
to allow webp derivatives images to be generated from non-webp sources (for example if .../some-image.webp is requested it will be able to generate it if a source .../some-image.jpg exists), and replaces the core implementation with it for the public and private schemes.
It also modifies the responsive image formatter to augment picture source sets with webp versions of the same images to allow browsers to use the webp derivatives if it supports them, which works fine for public / private schemes, but leads us to a problem for remote stream wrapper schemes as RemoteImageStyleDownloadController::deliver
is only working with the core implementation.
Creation of a WebpRemoteImageStyleDownloadController
class that subclasses the webp implementation and performs the managed file validation check for any source extension webp supports. The routing can then check to see if the webp module exists and if it does use the new Webp class, and if not then fall back to the existing implementation
Needs work
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Fixed the issue that prevented the previous patch from being applied.
Fixed the WebP file search in the database and ensured correct usage of the WebP module.