diff --git a/README.md b/README.md
index 58f576b..7ed039d 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
# Single .php Filehost
Simple PHP script, mainly for sharing random files with people using curl. (and thus in an easily scriptable way)
-It receives files uploaded via HTTP POST, and saves them to a configured directory, with a randomised filename (but preserving the original file extension).
-On successful upload, it returns a link to the uploaded file. Serving the file to people you've shared the link with can then simply be left to apache to figure out.
+Puts a file sent via POST into a configured directory with a randomised filename but preserving the original file extension, and returns a link to it.
+Actually serving the file to people is left to apache to figure out.
There's also a mechanism for removing files over a certain age, which can be invoked by calling the script with a commandline argument.
-## Config
+# Config
All configuration is done using the global variables at the top of **index.php**. Hopefully, they're explained well enough in the short comments besides them.
To accommodate for larger uploads, you'll also need to set the following values in your php.ini:
@@ -18,10 +18,32 @@ max_execution_time
The code responsible for the default info text can be found at the very bottom of index.php, in case you want to reword anything.
+## Apache
+Pretty straight forward, I use something like this:
-## Purging Old Files
-To check for any files, that exceed their max age, and delete them, you need to call index.php with the argument "purge"
```
+
Access your file here:\n%s", - $url,$url); + printf('
Access your file here:\n%s', $url, $url); } else { printf($url); } + + // log uploader's IP, original filename, etc. + if ($LOG_PATH) + { + file_put_contents( + $LOG_PATH, + implode("\t", array( + date('c'), + $_SERVER['REMOTE_ADDR'], + filesize($tmpFile), + escapeshellarg($name), + $basename + )) . "\n", + FILE_APPEND + ); + } } else { - //TODO: proper error handling + //TODO: proper error handling? header("HTTP/1.0 520 Unknown Error"); } } -//extract extension from a path (does not include the dot) -function getExtension($path) -{ - $ext = pathinfo($path, PATHINFO_EXTENSION); - //special handling of .tar.* archives - $ext2 = pathinfo(substr($path,0,-(strlen($ext)+1)), PATHINFO_EXTENSION); - if ($ext2 === 'tar') - { - $ext = $ext2.'.'.$ext; - } - //trim extension to max. 7 chars - $ext = substr($ext,0,7); - return $ext; -} - - -//////////////////////////////////////////////////////////////////////////////// // purge all files older than their retention period allows. -//////////////////////////////////////////////////////////////////////////////// -function purgeFiles() +function purge_files() { global $STORE_PATH; global $MAX_FILEAGE; @@ -186,61 +181,50 @@ function purgeFiles() global $MIN_FILEAGE; global $DECAY_EXP; - $numDel = 0; //number of deleted files - $totalSize = 0; //total size of deleted files + $num_del = 0; //number of deleted files + $total_size = 0; //total size of deleted files //for each stored file foreach (scandir($STORE_PATH) as $file) { //skip virtual . and .. files - if ($file == '.' || - $file == '..' || - $file == '.htaccess' || - $file == '.htpasswd') + if ($file === '.' || + $file === '..') { continue; } $file = $STORE_PATH . $file; - $fileSize = filesize($file) / (1024*1024); //size in MiB - $fileAge = (time()-filemtime($file)) / (60*60*24); //age in days + $file_size = filesize($file) / (1024*1024); //size in MiB + $file_age = (time()-filemtime($file)) / (60*60*24); //age in days //keep all files below the min age - if ($fileAge < $MIN_FILEAGE) + if ($file_age < $MIN_FILEAGE) { continue; } - //calculate the maximum age, in days, for this file - //minage + (maxage-minage) * (1-(size/maxsize))^exp; - $fileMaxAge = $MIN_FILEAGE + + //calculate the maximum age in days for this file + $file_max_age = $MIN_FILEAGE + ($MAX_FILEAGE - $MIN_FILEAGE) * - pow(1-($fileSize/$MAX_FILESIZE),$DECAY_EXP); + pow(1-($file_size/$MAX_FILESIZE),$DECAY_EXP); //delete if older - if ($fileAge > $fileMaxAge) + if ($file_age > $file_max_age) { unlink($file); - printf("deleted \"%s\", %d MiB, %d days old\n", - $file, - $fileSize, - $fileAge); - - $numDel += 1; - $totalSize += $fileSize; + printf("deleted \"%s\", %d MiB, %d days old\n", $file, $file_size, $file_age); + $num_del += 1; + $total_size += $file_size; } } - printf("Purge finished. Deleted %d files totalling %d MiB\n", - $numDel, - $totalSize); + printf("Deleted %d files totalling %d MiB\n", $num_del, $total_size); } -//////////////////////////////////////////////////////////////////////////////// // send a ShareX custom uploader config as .json -//////////////////////////////////////////////////////////////////////////////// -function sendShareXConfig() +function send_sharex_config() { global $HTTP_PROTO; $host = $_SERVER["HTTP_HOST"]; @@ -261,10 +245,8 @@ EOT; print($content); } -//////////////////////////////////////////////////////////////////////////////// // send a Hupl uploader config as .hupl (which is just JSON) -//////////////////////////////////////////////////////////////////////////////// -function sendHuplConfig() +function send_hupl_config() { global $HTTP_PROTO; $host = $_SERVER["HTTP_HOST"]; @@ -283,31 +265,35 @@ EOT; print($content); } -//////////////////////////////////////////////////////////////////////////////// // print a plaintext info page, explaining what this script does and how to // use it, how to upload, etc. -// essentially the homepage -//////////////////////////////////////////////////////////////////////////////// -function printInfo() +function print_index() { global $ADMIN_EMAIL; - global $HTTP_PROTO; global $MAX_FILEAGE; + global $HTTP_PROTO; + global $MAX_FILEAGE; global $MAX_FILESIZE; global $MIN_FILEAGE; global $DECAY_EXP; $url = $HTTP_PROTO."://".$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']; - $sharexUrl = $url."?sharex"; - $huplUrl = $url."?hupl"; + $sharex_url = $url."?sharex"; + $hupl_url = $url."?hupl"; echo <<
=== How To Upload === You can upload files to this site via a simple HTTP POST, e.g. using curl: curl -F "file=@/path/to/your/file.jpg" $url -On Windows, you can use ShareX and import this custom uploader. -On Android, you can use an app called Hupl with this uploader. +On Windows, you can use ShareX and import this custom uploader. +On Android, you can use an app called Hupl with this uploader. Or simply choose a file and click "Upload" below: @@ -345,6 +331,37 @@ The PHP script used to provide this service is open source and available on If you want to report abuse of this service, or have any other inquiries, please write an email to $ADMIN_EMAIL+ + EOT; } -?> + + +// decide what to do, based on POST parameters etc. +if (isset($_FILES["file"]["name"]) && + isset($_FILES["file"]["tmp_name"]) && + is_uploaded_file($_FILES["file"]["tmp_name"])) +{ + //file was uploaded, store it + $formatted = isset($_GET["formatted"]) || isset($_POST["formatted"]); + store_file($_FILES["file"]["name"], + $_FILES["file"]["tmp_name"], + $formatted); +} +else if (isset($_GET['sharex'])) +{ + send_sharex_config(); +} +else if (isset($_GET['hupl'])) +{ + send_hupl_config(); +} +else if (isset($argv[1]) && $argv[1] === 'purge') +{ + purge_files(); +} +else +{ + check_config(); + print_index(); +}