| Total Complexity | 54 |
| Total Lines | 224 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 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 |
||
| 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 | public static function createFolder($folder) |
||
| 28 | { |
||
| 29 | try { |
||
| 30 | if (!file_exists($folder)) { |
||
| 31 | if (!is_dir($folder) && !mkdir($folder) && !is_dir($folder)) { |
||
| 32 | throw new \RuntimeException(sprintf('Unable to create the %s directory', $folder)); |
||
| 33 | } |
||
| 34 | |||
| 35 | file_put_contents($folder . '/index.html', '<script>history.go(-1);</script>'); |
||
| 36 | } |
||
| 37 | } catch (\Exception $e) { |
||
| 38 | echo 'Caught exception: ', $e->getMessage(), "\n", '<br>'; |
||
| 39 | } |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param $file |
||
| 44 | * @param $folder |
||
| 45 | * @return bool |
||
| 46 | */ |
||
| 47 | public static function copyFile($file, $folder) |
||
| 48 | { |
||
| 49 | return copy($file, $folder); |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param $src |
||
| 54 | * @param $dst |
||
| 55 | */ |
||
| 56 | public static function recurseCopy($src, $dst) |
||
| 57 | { |
||
| 58 | $dir = opendir($src); |
||
| 59 | // @mkdir($dst); |
||
| 60 | if (!@mkdir($dst) && !is_dir($dst)) { |
||
| 61 | throw new \RuntimeException('The directory ' . $dst . ' could not be created.'); |
||
| 62 | } |
||
| 63 | while (false !== ($file = readdir($dir))) { |
||
|
|
|||
| 64 | if (('.' !== $file) && ('..' !== $file)) { |
||
| 65 | if (is_dir($src . '/' . $file)) { |
||
| 66 | self::recurseCopy($src . '/' . $file, $dst . '/' . $file); |
||
| 67 | } else { |
||
| 68 | copy($src . '/' . $file, $dst . '/' . $file); |
||
| 69 | } |
||
| 70 | } |
||
| 71 | } |
||
| 72 | closedir($dir); |
||
| 73 | } |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Remove files and (sub)directories |
||
| 77 | * |
||
| 78 | * @param string $src source directory to delete |
||
| 79 | * |
||
| 80 | * @return bool true on success |
||
| 81 | * @uses \Xmf\Module\Helper::isUserAdmin() |
||
| 82 | * |
||
| 83 | * @uses \Xmf\Module\Helper::getHelper() |
||
| 84 | */ |
||
| 85 | public static function deleteDirectory($src) |
||
| 86 | { |
||
| 87 | // Only continue if user is a 'global' Admin |
||
| 88 | if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) { |
||
| 89 | return false; |
||
| 90 | } |
||
| 91 | |||
| 92 | $success = true; |
||
| 93 | // remove old files |
||
| 94 | $dirInfo = new \SplFileInfo($src); |
||
| 95 | // validate is a directory |
||
| 96 | if ($dirInfo->isDir()) { |
||
| 97 | $fileList = array_diff(scandir($src, SCANDIR_SORT_NONE), ['..', '.']); |
||
| 98 | foreach ($fileList as $k => $v) { |
||
| 99 | $fileInfo = new \SplFileInfo("{$src}/{$v}"); |
||
| 100 | if ($fileInfo->isDir()) { |
||
| 101 | // recursively handle subdirectories |
||
| 102 | if (!$success = self::deleteDirectory($fileInfo->getRealPath())) { |
||
| 103 | break; |
||
| 104 | } |
||
| 105 | } else { |
||
| 106 | // delete the file |
||
| 107 | if (!($success = unlink($fileInfo->getRealPath()))) { |
||
| 108 | break; |
||
| 109 | } |
||
| 110 | } |
||
| 111 | } |
||
| 112 | // now delete this (sub)directory if all the files are gone |
||
| 113 | if ($success) { |
||
| 114 | $success = rmdir($dirInfo->getRealPath()); |
||
| 115 | } |
||
| 116 | } else { |
||
| 117 | // input is not a valid directory |
||
| 118 | $success = false; |
||
| 119 | } |
||
| 120 | |||
| 121 | return $success; |
||
| 122 | } |
||
| 123 | |||
| 124 | /** |
||
| 125 | * Recursively remove directory |
||
| 126 | * |
||
| 127 | * @todo currently won't remove directories with hidden files, should it? |
||
| 128 | * |
||
| 129 | * @param string $src directory to remove (delete) |
||
| 130 | * |
||
| 131 | * @return bool true on success |
||
| 132 | */ |
||
| 133 | public static function rrmdir($src) |
||
| 134 | { |
||
| 135 | // Only continue if user is a 'global' Admin |
||
| 136 | if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) { |
||
| 137 | return false; |
||
| 138 | } |
||
| 139 | |||
| 140 | // If source is not a directory stop processing |
||
| 141 | if (!is_dir($src)) { |
||
| 142 | return false; |
||
| 143 | } |
||
| 144 | |||
| 145 | $success = true; |
||
| 146 | |||
| 147 | // Open the source directory to read in files |
||
| 148 | $iterator = new \DirectoryIterator($src); |
||
| 149 | foreach ($iterator as $fObj) { |
||
| 150 | if ($fObj->isFile()) { |
||
| 151 | $filename = $fObj->getPathname(); |
||
| 152 | $fObj = null; // clear this iterator object to close the file |
||
| 153 | if (!unlink($filename)) { |
||
| 154 | return false; // couldn't delete the file |
||
| 155 | } |
||
| 156 | } elseif (!$fObj->isDot() && $fObj->isDir()) { |
||
| 157 | // Try recursively on directory |
||
| 158 | self::rrmdir($fObj->getPathname()); |
||
| 159 | } |
||
| 160 | } |
||
| 161 | $iterator = null; // clear iterator Obj to close file/directory |
||
| 162 | return rmdir($src); // remove the directory & return results |
||
| 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) |
||
| 203 | } |
||
| 204 | |||
| 205 | /** |
||
| 206 | * Recursively copy directories and files from one directory to another |
||
| 207 | * |
||
| 208 | * @param string $src - Source of files being moved |
||
| 209 | * @param string $dest - Destination of files being moved |
||
| 210 | * |
||
| 211 | * @return bool true on success |
||
| 212 | * @uses \Xmf\Module\Helper::isUserAdmin() |
||
| 213 | * |
||
| 214 | * @uses \Xmf\Module\Helper::getHelper() |
||
| 215 | */ |
||
| 216 | public static function rcopy($src, $dest) |
||
| 244 | } |
||
| 245 | } |
||
| 246 |