Filesystem storage: add "index.html" files in dirs

This commit is contained in:
fabrixxm 2018-11-21 16:36:11 +01:00 committed by Hypolite Petovan
parent 76579e02cc
commit ea0cd6c919
1 changed files with 31 additions and 9 deletions

View File

@ -46,6 +46,36 @@ class Filesystem implements IStorage
return "{$base}/{$fold1}/{$fold2}/{$file}"; return "{$base}/{$fold1}/{$fold2}/{$file}";
} }
/**
* @brief Create dirctory tree to store file, with .htaccess and index.html files
* @param string $file Path and filename
*/
private static function createFoldersForFile($file)
{
$path = dirname($file);
if (!is_dir($path)) {
if (!mkdir($path, 0770, true)) {
Logger::log("Failed to create dirs {$path}");
echo L10n::t("Filesystem storage failed to create '%s'. Check you write permissions.", $path);
killme();
}
}
$base = self::getBasePath();
while ($path !== $base) {
if (!is_file($path . "/index.html")) {
file_put_contents($path . "/index.html", "");
}
$path = dirname($path);
}
if (!is_file($path . "/index.html")) {
file_put_contents($path . "/index.html", "");
}
}
public static function get($ref) public static function get($ref)
{ {
$file = self::pathForRef($ref); $file = self::pathForRef($ref);
@ -61,17 +91,9 @@ class Filesystem implements IStorage
if ($ref === "") { if ($ref === "") {
$ref = Strings::getRandomHex(); $ref = Strings::getRandomHex();
} }
$file = self::pathForRef($ref); $file = self::pathForRef($ref);
$path = dirname($file);
if (!is_dir($path)) { self::createFoldersForFile($file);
if (!mkdir($path, 0770, true)) {
Logger::log("Failed to create dirs {$path}");
echo L10n::t("Filesystem storage failed to create '%s'. Check you write permissions.", $path);
killme();
}
}
$r = file_put_contents($file, $data); $r = file_put_contents($file, $data);
if ($r === FALSE) { if ($r === FALSE) {