diff --git a/index.php b/index.php index c94464c..aaf6fdb 100755 --- a/index.php +++ b/index.php @@ -1,35 +1,37 @@ $MAX_FILESIZE * 1024 * 1024) + if ($size > CONFIG::MAX_FILESIZE * 1024 * 1024) { header("HTTP/1.0 413 Payload Too Large"); - printf("Error 413: Max File Size (%d MiB) Exceeded\n", $MAX_FILESIZE); + printf("Error 413: Max File Size (%d MiB) Exceeded\n", CONFIG::MAX_FILESIZE); return; } if ($size == 0) @@ -139,19 +128,19 @@ function store_file($name, $tmpfile, $formatted = false) } $ext = ext_by_path($name); - if (empty($ext) && $AUTO_FILE_EXT) + if (empty($ext) && CONFIG::AUTO_FILE_EXT) { $ext = ext_by_finfo($tmpfile); } - $ext = substr($ext, 0, $MAX_EXT_LEN); + $ext = substr($ext, 0, CONFIG::MAX_EXT_LEN); $tries_per_len=3; //try random names a few times before upping the length - for ($len = $ID_LENGTH; ; ++$len) + for ($len = CONFIG::ID_LENGTH; ; ++$len) { for ($n=0; $n<=$tries_per_len; ++$n) { $id = rnd_str($len); $basename = $id . (empty($ext) ? '' : '.' . $ext); - $target_file = $STORE_PATH . $basename; + $target_file = CONFIG::STORE_PATH . $basename; if (!file_exists($target_file)) break 2; @@ -166,13 +155,13 @@ function store_file($name, $tmpfile, $formatted = false) return; } - if ($EXTERNAL_HOOK !== null) + if (CONFIG::EXTERNAL_HOOK !== null) { putenv("REMOTE_ADDR=".$_SERVER['REMOTE_ADDR']); putenv("ORIGINAL_NAME=".$name); putenv("STORED_FILE=".$target_file); $ret = -1; - $out = exec($EXTERNAL_HOOK, $_ = null, $ret); + $out = exec(CONFIG::EXTERNAL_HOOK, $_ = null, $ret); if ($out !== false && $ret !== 0) { unlink($target_file); @@ -183,7 +172,7 @@ function store_file($name, $tmpfile, $formatted = false) } //print the download link of the file - $url = sprintf($SITE_URL.$DOWNLOAD_PATH, $basename); + $url = sprintf(CONFIG::SITE_URL().CONFIG::DOWNLOAD_PATH, $basename); if ($formatted) { @@ -195,10 +184,10 @@ function store_file($name, $tmpfile, $formatted = false) } // log uploader's IP, original filename, etc. - if ($LOG_PATH) + if (CONFIG::LOG_PATH) { file_put_contents( - $LOG_PATH, + CONFIG::LOG_PATH, implode("\t", array( date('c'), $_SERVER['REMOTE_ADDR'], @@ -214,17 +203,11 @@ function store_file($name, $tmpfile, $formatted = false) // purge all files older than their retention period allows. function purge_files() { - global $STORE_PATH; - global $MAX_FILEAGE; - global $MAX_FILESIZE; - global $MIN_FILEAGE; - global $DECAY_EXP; - $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) + foreach (scandir(CONFIG::STORE_PATH) as $file) { //skip virtual . and .. files if ($file === '.' || @@ -233,21 +216,21 @@ function purge_files() continue; } - $file = $STORE_PATH . $file; + $file = CONFIG::STORE_PATH . $file; $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 ($file_age < $MIN_FILEAGE) + if ($file_age < CONFIG::MIN_FILEAGE) { continue; } //calculate the maximum age in days for this file - $file_max_age = $MIN_FILEAGE + - ($MAX_FILEAGE - $MIN_FILEAGE) * - pow(1-($file_size/$MAX_FILESIZE),$DECAY_EXP); + $file_max_age = CONFIG::MIN_FILEAGE + + (CONFIG::MAX_FILEAGE - CONFIG::MIN_FILEAGE) * + pow(1 - ($file_size / CONFIG::MAX_FILESIZE), CONFIG::DECAY_EXP); //delete if older if ($file_age > $file_max_age) @@ -265,15 +248,15 @@ function purge_files() // send a ShareX custom uploader config as .json function send_sharex_config() { - global $SITE_URL; $host = $_SERVER["HTTP_HOST"]; + $site_url = CONFIG::SITE_URL(); $filename = $host.".sxcu"; $content = << @@ -330,10 +313,10 @@ 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" $SITE_URL +curl -F "file=@/path/to/your/file.jpg" $site_url Or if you want to pipe to curl *and* have a file extension, add a "filename": -echo "hello" | curl -F "file=@-;filename=.txt" $SITE_URL +echo "hello" | curl -F "file=@-;filename=.txt" $site_url On Windows, you can use ShareX and import this custom uploader. On Android, you can use an app called Hupl with this uploader. @@ -352,17 +335,17 @@ selection input.) === File Sizes etc. === -The maximum allowed file size is $MAX_FILESIZE MiB. +The maximum allowed file size is $max_size MiB. -Files are kept for a minimum of $MIN_FILEAGE, and a maximum of $MAX_FILEAGE Days. +Files are kept for a minimum of $min_age, and a maximum of $max_age Days. -How long a file is kept, depends on its size. Larger files are deleted earlier +How long a file is kept depends on its size. Larger files are deleted earlier than small ones. This relation is non-linear and skewed in favour of small files. The exact formula for determining the maximum age for a file is: -MIN_AGE + (MAX_AGE - MIN_AGE) * (1-(FILE_SIZE/MAX_SIZE))^$DECAY_EXP +MIN_AGE + (MAX_AGE - MIN_AGE) * (1-(FILE_SIZE/MAX_SIZE))^$decay === Source === @@ -372,7 +355,7 @@ The PHP script used to provide this service is open source and available on === Contact === If you want to report abuse of this service, or have any other inquiries, -please write an email to $ADMIN_EMAIL +please write an email to $mail