| Total Complexity | 43 |
| Total Lines | 304 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like Filesystem often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Filesystem, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 4 | class Filesystem |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * Changes mode for files/directories. |
||
| 9 | * |
||
| 10 | * @param string $path path to the file or file |
||
| 11 | * @param int $mode mode |
||
| 12 | * @param bool $recursive recursive file mode change |
||
| 13 | * @return bool |
||
| 14 | */ |
||
| 15 | final public static function chmod($path, $mode, $recursive = false) |
||
| 16 | { |
||
| 17 | $mode = self::fixFileModeFormat($mode); |
||
| 18 | $recursive = ($recursive === false) ? '' : '-R'; |
||
| 19 | system("chmod {$recursive} {$mode} {$path} 2> /dev/null", $retval); |
||
| 20 | |||
| 21 | if ($retval != 0) |
||
| 22 | { |
||
| 23 | throw new \RuntimeException(__METHOD__ . ": failed to change or update file permissions for {$path}"); |
||
| 24 | } |
||
| 25 | return true; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Changes group of file. |
||
| 30 | * |
||
| 31 | * @param string $file path to the file |
||
| 32 | * @param int $group file group |
||
| 33 | * @param bool $recursive recursive file mode change |
||
| 34 | * @return bool |
||
| 35 | */ |
||
| 36 | final public static function chgrp($file, $group, $recursive = false) |
||
| 37 | { |
||
| 38 | $recursive = ($recursive === false) ? '' : '-R'; |
||
| 39 | system("chgrp {$recursive} {$group} {$file} 2> /dev/null", $retval); |
||
| 40 | |||
| 41 | if ($retval != 0) |
||
| 42 | { |
||
| 43 | throw new \RuntimeException(__METHOD__ . ": failed to set file '{$file}' to {$group}"); |
||
| 44 | } |
||
| 45 | return true; |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Copies file. |
||
| 50 | * |
||
| 51 | * @param string $srcfile path to the source file |
||
| 52 | * @param string $destfile path to the destination file |
||
| 53 | * @return bool |
||
| 54 | */ |
||
| 55 | final public static function copy($srcfile, $destfile) |
||
| 63 | } |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Removes file. |
||
| 67 | * |
||
| 68 | * @param string $file file name |
||
| 69 | * @param bool $strict strict error checking |
||
| 70 | * @return bool |
||
| 71 | */ |
||
| 72 | final public static function delete($file, $strict = true) |
||
| 73 | { |
||
| 74 | self::fileExists($file); |
||
| 75 | if (@unlink($file) === false) |
||
| 76 | { |
||
| 77 | if ($strict) |
||
| 78 | { |
||
| 79 | throw new \RuntimeException(__METHOD__ . ": failed to delete {$file}"); |
||
| 80 | } |
||
| 81 | return false; |
||
| 82 | } |
||
| 83 | return true; |
||
| 84 | } |
||
| 85 | |||
| 86 | /** |
||
| 87 | * Removes files. |
||
| 88 | * |
||
| 89 | * @param array $files file names |
||
| 90 | * @param bool $strict strict error checking |
||
| 91 | * @return bool |
||
| 92 | */ |
||
| 93 | final public static function deleteFiles($files, $strict = true) |
||
| 94 | { |
||
| 95 | foreach ($files as $file) |
||
| 96 | { |
||
| 97 | self::delete($file, $strict); |
||
| 98 | } |
||
| 99 | return true; |
||
| 100 | } |
||
| 101 | |||
| 102 | /** |
||
| 103 | * Returns pathnames matching a pattern (for files only & hidden files). |
||
| 104 | * |
||
| 105 | * @param string $directory directory |
||
| 106 | * @param mixed $pattern pattern (does not support tilde expansion) |
||
| 107 | * @return mixed |
||
| 108 | */ |
||
| 109 | final public static function glob($directory, $pattern = null) |
||
| 110 | { |
||
| 111 | self::dirExists($directory); |
||
| 112 | |||
| 113 | $pattern = is_array(($pattern)) ? '{' . implode(',', $pattern) . '}' : $pattern; |
||
| 114 | if ($pattern === null) |
||
| 115 | { |
||
| 116 | return array_diff(glob($directory . '/*'), ['.', '..']); |
||
| 117 | } |
||
| 118 | return glob($directory . '/{,.}*' . $pattern . '*', GLOB_BRACE); |
||
| 119 | } |
||
| 120 | |||
| 121 | /** |
||
| 122 | * Create new directory. |
||
| 123 | * |
||
| 124 | * @param mixed $directory path to the directory |
||
| 125 | * @param int $mode directory permission mode value (octal) |
||
| 126 | * @param bool $recursive create directories as needed |
||
| 127 | * @param bool $strict strict error checking |
||
| 128 | * @return bool |
||
| 129 | */ |
||
| 130 | final public static function mkdir($directory, $mode = 0777, $recursive = false, $strict = true) |
||
| 131 | { |
||
| 132 | if (self::dirExists($directory, false)) |
||
| 133 | { |
||
| 134 | return false; |
||
| 135 | } |
||
| 136 | |||
| 137 | if (@mkdir($directory, self::fixFileModeFormat($mode), $recursive) === false) |
||
| 138 | { |
||
| 139 | if ($strict) |
||
| 140 | { |
||
| 141 | throw new \RuntimeException(__METHOD__ . ": failed to create new directory {$directory}"); |
||
| 142 | } |
||
| 143 | return false; |
||
| 144 | } |
||
| 145 | return true; |
||
| 146 | } |
||
| 147 | |||
| 148 | /** |
||
| 149 | * Create new directories. |
||
| 150 | * |
||
| 151 | * @param mixed $directories path to the directories |
||
| 152 | * @param int $mode directory permission mode value (octal) |
||
| 153 | * @param bool $recursive create directories as needed |
||
| 154 | * @param bool $strict strict error checking |
||
| 155 | * @return bool |
||
| 156 | */ |
||
| 157 | final public static function mkdirs($directories, $mode = 0777, $recursive = false, $strict = true) |
||
| 158 | { |
||
| 159 | foreach ($directories as $directory) |
||
| 160 | { |
||
| 161 | self::mkdir($directory, $mode, $recursive, $strict); |
||
| 162 | self::chmod($directory, $mode); |
||
| 163 | } |
||
| 164 | return true; |
||
| 165 | } |
||
| 166 | |||
| 167 | /** |
||
| 168 | * Removes a directory. |
||
| 169 | * |
||
| 170 | * @param string $directory directory to remove |
||
| 171 | * @param bool $strict strict error checking |
||
| 172 | * @return mixed |
||
| 173 | */ |
||
| 174 | final public static function rmdir($directory, $strict = true) |
||
| 175 | { |
||
| 176 | self::dirExists($directory); |
||
| 177 | |||
| 178 | // Remove any files, if found in directory |
||
| 179 | if (count(($files = self::glob($directory))) > 0) |
||
| 180 | { |
||
| 181 | self::deleteFiles($files); |
||
| 182 | } |
||
| 183 | |||
| 184 | if (@rmdir($directory) === false) |
||
| 185 | { |
||
| 186 | if ($strict) |
||
| 187 | { |
||
| 188 | throw new \RuntimeException(__METHOD__ . ": failed to delete directory '{$directory}'"); |
||
| 189 | } |
||
| 190 | return false; |
||
| 191 | } |
||
| 192 | return true; |
||
| 193 | } |
||
| 194 | |||
| 195 | /** |
||
| 196 | * Removes a directories. |
||
| 197 | * |
||
| 198 | * @param array $directories directories to remove |
||
| 199 | * @param bool $strict strict error checking |
||
| 200 | * @return mixed |
||
| 201 | */ |
||
| 202 | final public static function rmdirs($directories, $strict = true) |
||
| 203 | { |
||
| 204 | foreach ($directories as $directory) |
||
| 205 | { |
||
| 206 | self::rmdir($directory, $strict); |
||
| 207 | } |
||
| 208 | return true; |
||
| 209 | } |
||
| 210 | |||
| 211 | /** |
||
| 212 | * Moves file to different path (rename). |
||
| 213 | * |
||
| 214 | * @param string $old_file path to the old file |
||
| 215 | * @param string $new_file path to the new file |
||
| 216 | * @return bool |
||
| 217 | */ |
||
| 218 | final public static function rename($old_file, $new_file) |
||
| 226 | } |
||
| 227 | |||
| 228 | /** |
||
| 229 | * Create temporary file. |
||
| 230 | * |
||
| 231 | * @param string $template temporary filename template (default=tmp-XXXXXXXXXXXXXX) |
||
| 232 | * @param bool $resource request file pointer into temporary file |
||
| 233 | * @return mixed |
||
| 234 | */ |
||
| 235 | final public static function tmpfile($template = null, $resource = false) |
||
| 240 | } |
||
| 241 | |||
| 242 | /** |
||
| 243 | * Create temporary directory. |
||
| 244 | * |
||
| 245 | * @param string $template temporary directory template (default=tmpXXXXXXXXXXXXXX) |
||
| 246 | * @return mixed |
||
| 247 | */ |
||
| 248 | final public static function tmpdir($template = null) |
||
| 253 | } |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Fix mode to proper formats. |
||
| 257 | * |
||
| 258 | * @param int $mode file mode |
||
| 259 | * @return int |
||
| 260 | */ |
||
| 261 | final private static function fixFileModeFormat($mode) |
||
| 262 | { |
||
| 263 | if (preg_match('/^[0-9]{3}$/', $mode)) |
||
| 264 | { |
||
| 265 | return (int) str_pad(decoct($mode), 4, '0', STR_PAD_LEFT); |
||
| 266 | } |
||
| 267 | return $mode; |
||
| 268 | } |
||
| 269 | |||
| 270 | /** |
||
| 271 | * Checks if directory exists;. |
||
| 272 | * |
||
| 273 | * @param string $directory directory name |
||
| 274 | * @param bool $strict strict error checking |
||
| 275 | * @return bool |
||
| 276 | */ |
||
| 277 | final public static function dirExists($directory, $strict = true) |
||
| 288 | } |
||
| 289 | |||
| 290 | /** |
||
| 291 | * Checks if file exists;. |
||
| 292 | * |
||
| 293 | * @param string $file file name |
||
| 294 | * @param bool $strict strict error checking |
||
| 295 | * @return bool |
||
| 296 | */ |
||
| 297 | final public static function fileExists($file, $strict = true) |
||
| 308 | } |
||
| 309 | |||
| 310 | } |
||
| 311 |