1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-05 00:49:33 +00:00

handle special file extensions like .tar.gz

This commit is contained in:
Rj48 2016-05-12 22:11:59 +02:00
parent 1f0f9d82a1
commit fad7869109

View File

@ -103,7 +103,7 @@ function storeFile($name, $tmpFile, $formatted = false)
mkdir($STORE_PATH, 0750, true); //TODO: error handling
}
$ext = pathinfo($name, PATHINFO_EXTENSION);
$ext = getExtension($name);
$id = rndStr($ID_LENGTH);
$basename = $id . '.' . $ext;
$target_file = $STORE_PATH . $basename;
@ -132,6 +132,18 @@ function storeFile($name, $tmpFile, $formatted = false)
}
}
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;
}
return $ext;
}
////////////////////////////////////////////////////////////////////////////////
// purge all files older than their retention period allows.
////////////////////////////////////////////////////////////////////////////////