From my Django application I want to serve up secure photos. The photos are not for public consumption, I only want logged in users to have the ability to view them. I don't want to rely on obfuscated file id's (giving a photo a UUID of a long number) and count on that being hidden in my media folder. How would I store a photo securely on disk in my database and only stream it out to an authenticated session?
|
feedback
|
|
Use X-Sendfile headers to tell your front end server what file to actually server.
Here is a related question. You can also see a real world implementation by looking at how Satchmo serves DownloadableProduct objects. One final note, nginx and lighttpd use X-Accel-Redirect and X-LIGHTTPD-send-file instead of X-Sendfile. | |||||||
feedback
|
|
You can do this by creating a A simple version could look like the following:
Also, see this example for PDF files and this example with PIL. | ||||
|
feedback
|
|
If it was Apache server with mod_python, this could potentially be an interesting article about Apache using Django's authentication system. | |||
|
feedback
|