-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Avoid overwriting existing WebP files when creating WebP images #359
Avoid overwriting existing WebP files when creating WebP images #359
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks goods
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one question, besides that things look good on my end.
I would encourage to add a test case replicating the current issue BTW.
modules/images/webp-uploads/load.php
Outdated
|
||
// Skip creation of duplicate WebP image if a image file has the same name with an extension of jpe, jpg, or jpeg. | ||
if ( file_exists( $destination ) ) { | ||
continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to try to create a different destination name instead? Like appending a number or a UUID instead, in the same way, WordPress handles it when the file already exists?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mitogh Yes, this is the eventual plan, but for now adding this stop-gap to not overwrite/confuse images should be sufficient.
Let's work on a proper solution where both images can be kept in a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mukeshpanchal27 This PR only fixes one half of the bug - for when the full size is generated, but not for when the other sizes are generated. See my comment below, I think this should rather be fixed at the root of the problem, in webp_uploads_generate_additional_image_source()
. Otherwise, it's easy to miss certain situations, one of them already missing here.
Could you then also add a test for the new condition in webp_uploads_generate_additional_image_source()
, to cover the new clause that an existing image file would cause a WP_Error
?
modules/images/webp-uploads/load.php
Outdated
if ( file_exists( $destination ) ) { | ||
continue; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of adding this check here, I think a cleaner solution would be to handle it within the webp_uploads_generate_additional_image_source()
function which is the function where the file is actually generated. That would fix the problem at its root and it would ensure you don't have to add a condition around it everywhere you call that function.
The current implementation here is actually missing the scenario when a new image size is generated where that function is also called - right now there would still be a chance for the image to be overwritten. By adding the condition to webp_uploads_generate_additional_image_source()
and returning a WP_Error
in that case, we only need to make that change there and it will work everywhere without any further changes.
If we consider checking the
As I troubleshoot the issue, we have two options here.
In this approach there may be some unnecessary checking happens for the duplicate image in function
If we consider this option then we don't need to call the
In this approach we have to update unit test, we use If I miss anything then please let me know. |
@mukeshpanchal27 I think we should go with your approach 1, always run the
Can you clarify what you mean? I think there would only be a single |
Changes are reverted and working on other approach.
// Skip creation of duplicate WebP image if an image file already exists in the directory.
For duplicate image, PR updated with approach 1 and requested the review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For duplicate image,
webp_uploads_generate_additional_image_source()
function check this https://github.com/mukeshpanchal27/performance/blob/fix/358-skip-duplicate-webp-image/modules/images/webp-uploads/helper.php#L85-L143 code that may be not require for already exist images.
Right, I agree it's a bit wasteful that we have to run all that logic before the file_exists
check, but unless $destination_file_name
is already provided, some of that logic is critical to run before since it affects the file name (for example the resize()
call).
I think the current implementation is good for now since it solves the problem. In WordPress core this will eventually be implemented differently anyway. I left one more tiny comment, but already approving this since it's good to go.
Summary
This PR skips the creation of duplicate WebP images if anyone uses an image file with the same name with an extension of jpg, jpe, or jpeg.
Please check more detail about the issue and the options for the solution here
As @felixarntz suggested we should go with 1st approach.
If you want to generate a WebP image for
.png
images then please add the below code snippet in your current themes functions.phpFixes #358
Images for testing
If you want to test the different images then please download the zip in which I added all image formats( jpg, jpe, jpeg and png ) - image.zip
Checklist
[Focus]
orInfrastructure
label.[Type]
label.no milestone
label.