Hi,

> I'm using newforms to upload a file in my project.
> I want to check the mime type of the uploaded file.
>
> Let's say my field name is "file", and check_uploaded_file() is a
> function that takes the content type and checks it.
>
> file = request.FILES['file']
> check_uploaded_file(file.content_type)
>
> So when I upload let's say a JPG file with firefox,
>
> print file.content_type outputs "image/jpeg" that's ok.
>
> If I try the exact same thing with Safari,
>
> print file.content_type outputs ""                NOTHING NADA RIEN !
>
> I don't get it..
>
> I'm using svn release 8649 of django.
> Does anyone knows what's happening to me ?
>
> Thx for any help you could provide me.

Safari 3.0/WebKit is known to not send the content-type header for
some types of files during a multipart form upload. In any case, you
shouldn't trust the content-type as it's a piece of user submitted
data. See the note here:

http://docs.djangoproject.com/en/dev/topics/http/file-uploads/#uploadedfile-objects

If you do want to go ahead with this, you can try to guess the file's
mime type based on it's name. See Python docs for the relevant API
here:

http://docs.python.org/lib/module-mimetypes.html

If you want to really verify an image file, just open it with the PIL
image library and check its format attribute. This will correctly
identify the file even if it has a bad extension or no extension (as
can happen on Mac OSX systems.)

-Rajesh D
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to