]> git.mxchange.org Git - friendica.git/blob - src/Model/Storage/Filesystem.php
Filesystem storage: add "index.html" files in dirs
[friendica.git] / src / Model / Storage / Filesystem.php
1 <?php
2 /**
3  * @file src/Model/Storage/Filesystem.php
4  * @brief Storage backend system
5  */
6
7 namespace Friendica\Model\Storage;
8
9 use Friendica\Core\Config;
10 use Friendica\Core\L10n;
11 use Friendica\Core\Logger;
12 use Friendica\Util\Strings;
13
14 /**
15  * @brief Filesystem based storage backend
16  *
17  * This class manage data on filesystem.
18  * Base folder for storage is set in storage.filesystem_path.
19  * Best would be for storage folder to be outside webserver folder, we are using a
20  * folder relative to code tree root as default to ease things for users in shared hostings.
21  * Each new resource gets a value as reference and is saved in a
22  * folder tree stucture created from that value.
23  */
24 class Filesystem implements IStorage
25 {
26         // Default base folder
27         const DEFAULT_BASE_FOLDER = "storage";
28
29         private static function getBasePath()
30         {
31                 return Config::get("storage", "filesystem_path", self::DEFAULT_BASE_FOLDER);
32         }
33
34         /**
35          * @brief Split data ref and return file path
36          * @param string  $ref  Data reference
37          * @return string
38          */
39         private static function pathForRef($ref)
40         {
41                 $base = self::getBasePath();
42                 $fold1 = substr($ref, 0, 2);
43                 $fold2 = substr($ref, 2, 2);
44                 $file = substr($ref, 4);
45
46                 return "{$base}/{$fold1}/{$fold2}/{$file}";
47         }
48
49
50         /**
51          * @brief Create dirctory tree to store file, with .htaccess and index.html files
52          * @param string  $file  Path and filename
53          */
54         private static function createFoldersForFile($file)
55         {
56                 $path = dirname($file);
57
58                 if (!is_dir($path)) {
59                         if (!mkdir($path, 0770, true)) {
60                                 Logger::log("Failed to create dirs {$path}");
61                                 echo L10n::t("Filesystem storage failed to create '%s'. Check you write permissions.", $path);
62                                 killme();
63                         }
64                 }
65
66                 $base = self::getBasePath();
67                 
68                 while ($path !== $base) {
69                         if (!is_file($path . "/index.html")) {
70                                 file_put_contents($path . "/index.html", "");
71                         }
72                         $path = dirname($path);
73                 }
74                 if (!is_file($path . "/index.html")) {
75                         file_put_contents($path . "/index.html", "");
76                 }
77         }
78
79         public static function get($ref)
80         {
81                 $file = self::pathForRef($ref);
82                 if (!is_file($file)) {
83                         return "";
84                 }
85
86                 return file_get_contents($file);
87         }
88
89         public static function put($data, $ref = "")
90         {
91                 if ($ref === "") {
92                         $ref = Strings::getRandomHex();
93                 }
94                 $file = self::pathForRef($ref);
95
96                 self::createFoldersForFile($file);
97
98                 $r = file_put_contents($file, $data);
99                 if ($r === FALSE) {
100                         Logger::log("Failed to write data to {$file}");
101                         echo L10n::t("Filesystem storage failed to save data to '%s'. Check your write permissions", $file);
102                         killme();
103                 }
104                 return $ref;
105         }
106
107         public static function delete($ref)
108         {
109                 $file = self::pathForRef($ref);
110                 // return true if file doesn't exists. we want to delete it: success with zero work!
111                 if (!is_file($file)) { 
112                         return true;
113                 }
114                 return unlink($file);
115         }
116
117 }