#21548 closed New feature (fixed)
Add the ability to limit file extensions for ImageField and FileField
Reported by: | Tim Graham | Owned by: | Berker Peksag |
---|---|---|---|
Component: | Forms | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | anubhav9042@…, berker.peksag@… | Triage Stage: | Ready for checkin |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
ImageField/FileField could have an optional extension whitelist. This could default to being empty for both fields to be totally backwards compatible, or could have sensible defaults for the ImageField based on the file types supported by PIL/low. The documentation should warn that you should not rely on file extensions to determine the actual content type of files.
There are probably some existing implementations we could borrow from, for example:
Change History (11)
comment:1 by , 11 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 11 years ago
comment:3 by , 11 years ago
Has patch: | set |
---|
comment:4 by , 10 years ago
Needs documentation: | set |
---|---|
Patch needs improvement: | set |
Hi, I left a comment for improvement on the PR, although it's better to open a PR against Django itself instead of your fork.
comment:5 by , 10 years ago
The patch looks good but the validator must be like others as Tim suggested on your PR.
Also adding it to ImageField
by default sounds good. I hope we can fix #18543 with it.
comment:6 by , 10 years ago
Cc: | added |
---|
comment:7 by , 9 years ago
Cc: | added |
---|---|
Needs documentation: | unset |
Owner: | changed from | to
Patch needs improvement: | unset |
Pull request: https://github.com/django/django/pull/6343
Changes:
- Added two validators: FileExtensionValidator and validate_image_file (this one uses FileExtensionValidator with default values from PIL.Image.EXTENSION).
- Added validate_image_file to ImageField as a default validator.
- Added tests for FileExtensionValidator, model and form validations.
- Added documentation and release notes. I probably need to add some note for ImageField docs too.
comment:9 by , 8 years ago
Patch needs improvement: | unset |
---|---|
Triage Stage: | Accepted → Ready for checkin |
I have a work in progress PR here: https://github.com/jfilipe/django/pull/2
Wanted to get some feedback on the approach before I added some docs.