| Total Complexity | 56 |
| Total Lines | 218 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like FilesManagement 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 FilesManagement, and based on these observations, apply Extract Interface, too.
| 1 | <?php declare(strict_types=1); |
||
| 20 | trait FilesManagement |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Function responsible for checking if a directory exists, we can also write in and create an index.html file |
||
| 24 | * |
||
| 25 | * @param string $folder The full path of the directory to check |
||
| 26 | * |
||
| 27 | * @throws \RuntimeException |
||
| 28 | */ |
||
| 29 | public static function createFolder($folder): void |
||
| 30 | { |
||
| 31 | try { |
||
| 32 | if (!\is_dir($folder)) { |
||
| 33 | if (!\is_dir($folder) && !\mkdir($folder) && !\is_dir($folder)) { |
||
| 34 | throw new \RuntimeException(\sprintf('Unable to create the %s directory', $folder)); |
||
| 35 | } |
||
| 36 | file_put_contents($folder . '/index.html', '<script>history.go(-1);</script>'); |
||
| 37 | } |
||
| 38 | } catch (\RuntimeException $e) { |
||
| 39 | echo 'Caught exception: ', $e->getMessage(), "\n", '<br>'; |
||
| 40 | } |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param $file |
||
| 45 | * @param $folder |
||
| 46 | * @return bool |
||
| 47 | */ |
||
| 48 | public static function copyFile(string $file, string $folder): bool |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @param $src |
||
| 55 | * @param $dst |
||
| 56 | */ |
||
| 57 | public static function recurseCopy($src, $dst): void |
||
| 58 | { |
||
| 59 | $dir = \opendir($src); |
||
| 60 | // @mkdir($dst); |
||
| 61 | try { |
||
| 62 | if (!\mkdir($dst) && !\is_dir($dst)) { |
||
| 63 | throw new \RuntimeException('The directory ' . $dst . ' could not be created.'); |
||
| 64 | } |
||
| 65 | } catch (\RuntimeException $e) { |
||
| 66 | echo 'Caught exception: ', $e->getMessage(), "<br>\n"; |
||
| 67 | } |
||
| 68 | while (false !== ($file = \readdir($dir))) { |
||
| 69 | if (('.' !== $file) && ('..' !== $file)) { |
||
| 70 | if (\is_dir($src . '/' . $file)) { |
||
| 71 | self::recurseCopy($src . '/' . $file, $dst . '/' . $file); |
||
| 72 | } else { |
||
| 73 | \copy($src . '/' . $file, $dst . '/' . $file); |
||
| 74 | } |
||
| 75 | } |
||
| 76 | } |
||
| 77 | \closedir($dir); |
||
| 78 | } |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Remove files and (sub)directories |
||
| 82 | * |
||
| 83 | * @param string $src source directory to delete |
||
| 84 | * |
||
| 85 | * @return bool true on success |
||
| 86 | * @uses \Xmf\Module\Helper::isUserAdmin() |
||
| 87 | * |
||
| 88 | * @uses \Xmf\Module\Helper::getHelper() |
||
| 89 | */ |
||
| 90 | public static function deleteDirectory($src) |
||
| 123 | } |
||
| 124 | |||
| 125 | /** |
||
| 126 | * Recursively remove directory |
||
| 127 | * |
||
| 128 | * @todo currently won't remove directories with hidden files, should it? |
||
| 129 | * |
||
| 130 | * @param string $src directory to remove (delete) |
||
| 131 | * |
||
| 132 | * @return bool true on success |
||
| 133 | */ |
||
| 134 | public static function rrmdir($src) |
||
| 162 | } |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Recursively move files from one directory to another |
||
| 166 | * |
||
| 167 | * @param string $src - Source of files being moved |
||
| 168 | * @param string $dest - Destination of files being moved |
||
| 169 | * |
||
| 170 | * @return bool true on success |
||
| 171 | */ |
||
| 172 | public static function rmove($src, $dest) |
||
| 200 | } |
||
| 201 | |||
| 202 | /** |
||
| 203 | * Recursively copy directories and files from one directory to another |
||
| 204 | * |
||
| 205 | * @param string $src - Source of files being moved |
||
| 206 | * @param string $dest - Destination of files being moved |
||
| 207 | * |
||
| 208 | * @return bool true on success |
||
| 209 | * @uses \Xmf\Module\Helper::isUserAdmin() |
||
| 210 | * |
||
| 211 | * @uses \Xmf\Module\Helper::getHelper() |
||
| 212 | */ |
||
| 213 | public static function rcopy($src, $dest) |
||
| 240 |