| Total Complexity | 54 |
| Total Lines | 225 |
| 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 | |||
| 37 | file_put_contents($folder . '/index.html', '<script>history.go(-1);</script>'); |
||
| 38 | } |
||
| 39 | } catch (\Throwable $e) { |
||
| 40 | echo 'Caught exception: ', $e->getMessage(), "\n", '<br>'; |
||
| 41 | } |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param string $file |
||
| 46 | * @param string $folder |
||
| 47 | * @return bool |
||
| 48 | */ |
||
| 49 | public static function copyFile(string $file, string $folder): bool |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @param $src |
||
| 56 | * @param $dst |
||
| 57 | */ |
||
| 58 | public static function recurseCopy($src, $dst): void |
||
| 75 | } |
||
| 76 | |||
| 77 | /** |
||
| 78 | * Remove files and (sub)directories |
||
| 79 | * |
||
| 80 | * @param string $src source directory to delete |
||
| 81 | * |
||
| 82 | * @return bool true on success |
||
| 83 | * @uses \Xmf\Module\Helper::isUserAdmin() |
||
| 84 | * |
||
| 85 | * @uses \Xmf\Module\Helper::getHelper() |
||
| 86 | */ |
||
| 87 | public static function deleteDirectory($src) |
||
| 121 | } |
||
| 122 | |||
| 123 | /** |
||
| 124 | * Recursively remove directory |
||
| 125 | * |
||
| 126 | * @todo currently won't remove directories with hidden files, should it? |
||
| 127 | * |
||
| 128 | * @param string $src directory to remove (delete) |
||
| 129 | * |
||
| 130 | * @return bool true on success |
||
| 131 | */ |
||
| 132 | public static function rrmdir($src) |
||
| 163 | } |
||
| 164 | |||
| 165 | /** |
||
| 166 | * Recursively move files from one directory to another |
||
| 167 | * |
||
| 168 | * @param string $src - Source of files being moved |
||
| 169 | * @param string $dest - Destination of files being moved |
||
| 170 | * |
||
| 171 | * @return bool true on success |
||
| 172 | */ |
||
| 173 | public static function rmove($src, $dest) |
||
| 204 | } |
||
| 205 | |||
| 206 | /** |
||
| 207 | * Recursively copy directories and files from one directory to another |
||
| 208 | * |
||
| 209 | * @param string $src - Source of files being moved |
||
| 210 | * @param string $dest - Destination of files being moved |
||
| 211 | * |
||
| 212 | * @return bool true on success |
||
| 213 | * @uses \Xmf\Module\Helper::isUserAdmin() |
||
| 214 | * |
||
| 215 | * @uses \Xmf\Module\Helper::getHelper() |
||
| 216 | */ |
||
| 217 | public static function rcopy($src, $dest) |
||
| 247 |