I have a Joomla! site and for each user I have an image. What I want is to keep the image private to the user but temporarily make it (well, a copy) public.

My thinking was to have the user click a link which calls a "publish.php" script. This script would take the user name and create a temporary (30 seconds) folder and copy their private image into that temporary folder.

The script would then generate a random key and build a URL using the username and key i.e. www.site.com/photos/get_photo.php?key=username.*key*

Then when someone goes to that link (via QR scanner) the "get_photo.php" script would check the key was valid and if it was display the image.

I want the photos public in the sense that given the URL anyone can see it but not public in the sense that anyone can keep polling my server and dragging down photos as and when they become available.

I'm stuck with the security of the original photos, if they are private the script can't access them but if they are public, if defeats the purpose of making them temporarily public.

Next problem is generating a key in one script that can be verified by the other script.

Many thanks for any guidance.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

If you are going to go through the overhead of copying the file, you might as well have a php script read and output the file itself. I'm not sure how you are keeping track of your images, but if its in a database you could add a column for a timestamp which marks when it has been made public. Then have the script check that timestamp to see if it was made public within the last 30 seconds. If it has, do a file_get_contents on the image, set the appropriate image header and output it, if not maybe have it load a default error image.

link|improve this answer
Thanks, that makes sense. I'm storing the photo as a file in a directory (read it was bad practice to store images in a database?) where the filename is the username hence passing in the username parameter. By that method the images will only ever be accessible by the script and never public, correct? – Dre Jul 1 '11 at 21:28
There is a debate about storing images in the database. Personally I don't like to do it. If your images are stored in a directory outside of your web root then you could have a script be the only gateway for those images. Wether the access to that script is public or private depends on how the script is written, you could put authentication to check the users session in the script, or as I said in my answer, check a timestamp in a database to see if it should load the image. – copacetic Jul 1 '11 at 22:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.