Compress.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\library;
  4. use catcher\CatchAdmin;
  5. use catcher\exceptions\FailedException;
  6. use catcher\facade\Http;
  7. use function GuzzleHttp\Psr7\stream_for;
  8. use catcher\facade\FileSystem;
  9. class Compress
  10. {
  11. protected $savePath;
  12. protected $zip;
  13. public function __construct()
  14. {
  15. if (!extension_loaded('zip')) {
  16. throw new FailedException('you should install extension [zip]');
  17. }
  18. }
  19. /**
  20. * 压缩模块包
  21. *
  22. * @time 2020年04月29日
  23. * @param $moduleName
  24. * @param string $zipPath
  25. * @return bool
  26. * @throws \Exception
  27. */
  28. public function moduleToZip(string $moduleName, string $zipPath = '')
  29. {
  30. if (!is_dir(CatchAdmin::directory() . $moduleName)) {
  31. throw new FailedException(sprintf('module 【%s】not found~', $moduleName));
  32. }
  33. (new Zip())->make($zipPath ? : CatchAdmin::directory() . $moduleName . '.zip', \ZipArchive::CREATE)
  34. ->folder($moduleName)
  35. ->addFiles(FileSystem::allFiles(CatchAdmin::moduleDirectory($moduleName)))
  36. ->close();
  37. return true;
  38. }
  39. /**
  40. * download zip
  41. *
  42. * @time 2020年04月30日
  43. * @param $remotePackageUrl
  44. * @return string
  45. */
  46. public function download($remotePackageUrl = '')
  47. {
  48. $response = Http::options([
  49. 'save_to' => stream_for(fopen($this->savePath, 'w+'))
  50. ])
  51. ->get($remotePackageUrl);
  52. return $response->ok();
  53. }
  54. /**
  55. * 更新
  56. *
  57. * @time 2020年04月30日
  58. * @param $moduleName
  59. * @return bool
  60. */
  61. public function update($moduleName)
  62. {
  63. // 备份
  64. $backupPath = $this->backup($moduleName);
  65. try {
  66. $this->moduleUnzip($moduleName, $this->savePath);
  67. } catch (\Exception $exception) {
  68. // 更新失败先删除原目录
  69. FileSystem::deleteDirectory(CatchAdmin::moduleDirectory($moduleName));
  70. // 解压备份文件
  71. $this->moduleUnzip($moduleName, $backupPath);
  72. // 删除备份文件
  73. FileSystem::delete($backupPath);
  74. return false;
  75. }
  76. // 删除备份文件
  77. FileSystem::delete($backupPath);
  78. return true;
  79. }
  80. /**
  81. * overwrite package
  82. *
  83. * @time 2019年12月16日
  84. * @param $moduleName
  85. * @param $zipPath
  86. * @return bool
  87. * @throws \Exception
  88. */
  89. public function moduleUnzip($moduleName, $zipPath)
  90. {
  91. try {
  92. (new Zip())->make($zipPath)->extractTo(CatchAdmin::moduleDirectory($moduleName) . $moduleName)->close();
  93. return true;
  94. } catch (\Exception $e) {
  95. throw new FailedException('更新失败');
  96. }
  97. }
  98. /**
  99. * 删除目录
  100. *
  101. * @time 2020年04月29日
  102. * @param $packageDir
  103. * @return void
  104. */
  105. public function rmDir($packageDir)
  106. {
  107. $fileSystemIterator = new \FilesystemIterator($packageDir);
  108. try {
  109. foreach ($fileSystemIterator as $fileSystem) {
  110. if ($fileSystem->isDir()) {
  111. if ((new \FilesystemIterator($fileSystem->getPathName()))->valid()) {
  112. $this->rmDir($fileSystem->getPathName());
  113. } else {
  114. rmdir($fileSystem->getPathName());
  115. }
  116. } else {
  117. unlink($fileSystem->getPathName());
  118. }
  119. }
  120. } catch (\Exception $exception) {
  121. throw new FailedException($exception->getMessage());
  122. }
  123. rmdir($packageDir);
  124. }
  125. /**
  126. *
  127. * @time 2020年04月29日
  128. * @param $path
  129. * @param string $moduleName
  130. * @param $tempExtractToPath
  131. * @return void
  132. */
  133. protected function copyFileToModule($path, $moduleName, $tempExtractToPath)
  134. {
  135. $fileSystemIterator = new \FilesystemIterator($path . $moduleName ? : '');
  136. foreach ($fileSystemIterator as $fileSystem) {
  137. if ($fileSystem->isDir()) {
  138. $this->copyFileToModule($fileSystem->getPathname(), '', $tempExtractToPath);
  139. } else {
  140. // 原模块文件
  141. $originModuleFile = str_replace($tempExtractToPath, CatchAdmin::directory(), $fileSystem->getPathname());
  142. // md5 校验 文件是否修改过
  143. if (md5_file($originModuleFile) != md5_file($fileSystem->getPathname())) {
  144. if (!copy($fileSystem->getPathname(), $originModuleFile)) {
  145. throw new FailedException('更新失败');
  146. }
  147. }
  148. }
  149. }
  150. }
  151. /**
  152. * 备份原文件
  153. *
  154. * @time 2020年04月30日
  155. * @param $moduleName
  156. * @return bool
  157. */
  158. protected function backup($moduleName)
  159. {
  160. $backup = $this->getModuleBackupPath($moduleName);
  161. CatchAdmin::makeDirectory($backup);
  162. $this->moduleToZip($moduleName, $backup . $moduleName. '.zip');
  163. return $backup . $moduleName . '.zip';
  164. }
  165. /**
  166. * 获取备份地址
  167. *
  168. * @time 2020年04月30日
  169. * @param $moduleName
  170. * @return string
  171. */
  172. protected function getModuleBackupPath($moduleName)
  173. {
  174. return $backup = runtime_path('module' . DIRECTORY_SEPARATOR . 'backup_'.$moduleName);
  175. }
  176. /**
  177. * 保存地址
  178. *
  179. * @param $path
  180. * @return $this
  181. * @author JaguarJack <njphper@gmail.com>
  182. * @date 2020/7/11
  183. */
  184. public function savePath($path)
  185. {
  186. $this->savePath = $path;
  187. return $this;
  188. }
  189. }