What kind of file? What I do (in PHP, but the principle is the same)
is to pass the filename linked to a page:

download.php?filename=something.ext

  And on download.php I get the file ID based on its name, check if
the user has permissions to access it, and then send some headers to
serve it for download or view (if it's an image).

  The files are uploaded to a directory not served by the web-server,
and download.php fopen() it, fread() it and the headers take care of
the rest.


On 3/25/06, sam <[EMAIL PROTECTED]> wrote:
>
> I want to use FileField to upload files but I don't want the file URIs
> directly visible to the user. Rather, I want to service the access to
> the uploaded files via "views", so that I can exercise file access
> permission (I implemented access permission myself, without using
> django admin's). I think what this boils down to is to map a logical
> URL such as myapp/<file-name> to a view that checks permission first
> then retrieves the file from MEDIA_ROOT/<file-name>. But how to do
> that? Appreciate help!
>
>
>
>


--
Julio Nobrega - http://www.inerciasensorial.com.br

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to