Skip to content
Advertisement

PHP to serve download for a Java application

I am wondering how to make a download server more robust. For now, I have a server, on https, storing zip files, named with a random hash, indexed by my database. The directory containing does not permit listing (htaccess) to avoid manual download directly browsing the directory on the server.

The Java app displays the description of the files, and if the user wants to download it, he simply clicks on download. Java app, if that user is allowed to download, sends to credentials to my PHP script on the server, the PHP script checks them, checks again if that very user is allowed to download that file, retrieves the filename.zip from DB indexed by the file ID the user wants to download, and echoes back that file name. The Java app reads that filename and downloads the file using

Url url = new URL("https://myserver.com/assets/theAssetToDownload.zip")
URLConnection urlConn = url.openConnection();

InputStream is = urlConn.getInputStream();
FileOutputStream fos = new FileOutputStream("test.zip");

byte[] buffer = new byte[4096];
int len;

while ((len = is.read(buffer)) > 0) {
    fos.write(buffer, 0, len);
}

(shortened the code, needs try/catch, is/fos.close() etc etc)

So far so good, it works well… But… If someone enters, in a browser, the direct url, the file will also be downloaded, without clear check on the authorisation…

So I thought, hey, do not let anybody but the PHP script to access the assets directories! Again, that’s a simple htaccess.

But how is the download served then?

Would that be a header and output in my PHP script, like:

header("Content-type: application/octet-stream");
header("Content-disposition: attachment;filename=test.zip");
readfile(test.zip);

In that case, how do I read that from Java side? Also with a getInputStream()?

I do understand that question is generic. How can I do it securely?

Advertisement

Answer

You could store the file somewhere not accessible from the web, but still readable to the web server, and then with htaccess route all requests to your php script. Combine that with what you already have (headers, output with readfile), and authorization, and that should be it.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement