[8.0][FIX][web] Detect image MIME. #12918
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of the issue/feature this PR addresses:
We are creating a control to download an image, but the server is not telling the right MIME type in this controller.
Current behavior before PR:
When visiting a URL such as http://localhost/web/binary/image?model=res.users&id=1&field=image_small&t=1469603889889, the controller always says the image is
image/png
, while sometimes it is JPG.Desired behavior after PR is merged:
The server can know if it is PNG, GIF or JPEG, and outputs the correct header.
Odoo v8 lacks a MIME autodetect method, but backporting the most relevant parts from v9, we can make it detect the image type and serve the correct header, to allow some client-side manipulations to work fine.
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
@Tecnativa @kutyel