InstallCatchModule.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher\library;
  13. use catcher\CatchAdmin;
  14. use catcher\command\MigrateCreateCommand;
  15. use catcher\command\MigrateRollbackCommand;
  16. use catcher\command\SeedRunCommand;
  17. use catcher\facade\FileSystem;
  18. use think\facade\Console;
  19. class InstallCatchModule
  20. {
  21. protected $installPath;
  22. protected $module;
  23. protected $compress;
  24. public function __construct()
  25. {
  26. $this->compress = new Compress();
  27. $this->registerCommands();
  28. }
  29. public function run()
  30. {
  31. if ($this->isFirstInstall()) {
  32. if ($this->download()) {
  33. $this->install();
  34. }
  35. }
  36. }
  37. /**
  38. * 是否是首页安装
  39. *
  40. * @time 2020年07月26日
  41. * @return bool
  42. */
  43. public function isFirstInstall()
  44. {
  45. return !FileSystem::exists($this->getInstallPath() . $this->module);
  46. }
  47. /**
  48. * 搜索模块
  49. *
  50. * @time 2020年07月26日
  51. * @return string
  52. */
  53. public function searchModule()
  54. {
  55. return 'http://api.catchadmin.com/hello.zip';
  56. }
  57. /**
  58. * 下载
  59. *
  60. * @time 2020年07月26日
  61. * @return string
  62. */
  63. public function download()
  64. {
  65. return $this->compress->savePath($this->getModuleZip())->download($this->searchModule());
  66. }
  67. /**
  68. * 安装
  69. *
  70. * @time 2020年07月26日
  71. * @throws \Exception
  72. * @return void
  73. */
  74. public function install()
  75. {
  76. $this->extractTo();
  77. $this->installDatabaseTables();
  78. $this->installTableData();
  79. }
  80. /**
  81. * 解压
  82. *
  83. * @time 2020年07月26日
  84. * @throws \Exception
  85. * @return bool
  86. */
  87. public function extractTo()
  88. {
  89. $zip = new Zip();
  90. $zip->make($this->getModuleZip())->extractTo($this->getInstallPath())->close();
  91. return true;
  92. }
  93. /**
  94. * 获取模块
  95. *
  96. * @time 2020年07月26日
  97. * @return string
  98. */
  99. protected function getModuleZip()
  100. {
  101. return $this->downloadPath() . $this->module . '_'. date('YmdHis') . '.zip';
  102. }
  103. /**
  104. * 安装表
  105. *
  106. * @time 2020年07月26日
  107. * @return void
  108. */
  109. public function installDatabaseTables()
  110. {
  111. Console::call('catch-migrate:run', [$this->module]);
  112. }
  113. /**
  114. * 初始化表数据
  115. *
  116. * @time 2020年07月26日
  117. * @return void
  118. */
  119. public function installTableData()
  120. {
  121. Console::call('catch-seed:run', [$this->module]);
  122. }
  123. /**
  124. * 注册命令
  125. *
  126. * @time 2020年07月26日
  127. * @return void
  128. */
  129. protected function registerCommands()
  130. {
  131. return app()->console->addCommands([
  132. MigrateCreateCommand::class,
  133. SeedRunCommand::class,
  134. MigrateRollbackCommand::class,
  135. ]);
  136. }
  137. /**
  138. * 下载路径
  139. *
  140. * @time 2020年07月26日
  141. * @return string
  142. */
  143. protected function downloadPath()
  144. {
  145. $path = runtime_path('catch' . DIRECTORY_SEPARATOR . 'download');
  146. if (!FileSystem::exists($path)) {
  147. FileSystem::makeDirectory($path, 0777, true);
  148. }
  149. return $path;
  150. }
  151. /**
  152. * 获取安装路径
  153. *
  154. * @time 2020年07月26日
  155. * @return string
  156. */
  157. protected function getInstallPath()
  158. {
  159. if ($this->installPath) {
  160. return root_path($this->installPath);
  161. }
  162. return CatchAdmin::directory();
  163. }
  164. /**
  165. * 设置模块
  166. *
  167. * @time 2020年07月26日
  168. * @param $module
  169. * @return $this
  170. */
  171. public function setModule($module)
  172. {
  173. $this->module = $module;
  174. return $this;
  175. }
  176. /**
  177. * 设置安装目录
  178. *
  179. * @time 2020年07月26日
  180. * @param $path
  181. * @return $this
  182. */
  183. public function setInstallPath($path)
  184. {
  185. $this->installPath = $path;
  186. return $this;
  187. }
  188. }