InstallLocalModule.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 catchAdmin\permissions\model\Permissions;
  14. use catcher\CatchAdmin;
  15. use think\facade\Console;
  16. class InstallLocalModule
  17. {
  18. protected $module;
  19. public function __construct($module)
  20. {
  21. $this->module = $module;
  22. }
  23. /**
  24. * 查找
  25. *
  26. * @time 2020年09月10日
  27. * @return bool
  28. */
  29. public function done()
  30. {
  31. if ($this->findModuleInPermissions()) {
  32. return false;
  33. } else {
  34. $this->installModuleTables();
  35. $this->installModuleSeeds();
  36. $this->enableModule();
  37. return true;
  38. }
  39. }
  40. /**
  41. * 本地模块是否存在
  42. *
  43. * @time 2020年09月10日
  44. * @return bool
  45. */
  46. public function localModuleExist()
  47. {
  48. return in_array($this->module, array_column(CatchAdmin::getModulesInfo(true), 'value'));
  49. }
  50. /**
  51. * 模块是否开启
  52. *
  53. * @time 2020年09月10日
  54. * @return false|mixed
  55. */
  56. public function isModuleEnabled()
  57. {
  58. return in_array($this->module, array_column($this->getLocalModulesInfo(false), 'name'));
  59. }
  60. /**
  61. * 获取本地模块信息
  62. *
  63. * @param bool $enabled
  64. * @time 2020年09月10日
  65. * @return array
  66. */
  67. public function getLocalModulesInfo($enabled = true)
  68. {
  69. $modules = CatchAdmin::getModulesInfo(true);
  70. $info = [];
  71. foreach ($modules as $module) {
  72. $moduleInfo = CatchAdmin::getModuleInfo(CatchAdmin::directory() . $module['value']);
  73. // 获取全部
  74. if ($enabled) {
  75. $info[] = [
  76. 'name' => $module['value'],
  77. 'title' => $module['title'],
  78. 'enable' => $moduleInfo['enable'],
  79. ];
  80. } else {
  81. // 获取未开启的
  82. if (!$moduleInfo['enable']) {
  83. $info[] = [
  84. 'name' => $module['value'],
  85. 'title' => $module['title'],
  86. 'enable' => $moduleInfo['enable'],
  87. ];
  88. }
  89. }
  90. }
  91. return $info;
  92. }
  93. /**
  94. * 查找模块
  95. *
  96. * @time 2020年09月10日
  97. * @throws \think\db\exception\DataNotFoundException
  98. * @throws \think\db\exception\DbException
  99. * @throws \think\db\exception\ModelNotFoundException
  100. * @return bool
  101. */
  102. public function findModuleInPermissions()
  103. {
  104. return Permissions::withTrashed()->where('module', $this->module)->find() ? true : false;
  105. }
  106. /**
  107. * 启用模块
  108. *
  109. * @time 2020年09月10日
  110. * @return void
  111. */
  112. public function enableModule()
  113. {
  114. CatchAdmin::enableModule($this->module);
  115. app(Permissions::class)->restore(['module' => trim($this->module)]);
  116. }
  117. /**
  118. * 禁用模块
  119. *
  120. * @time 2020年09月10日
  121. * @return void
  122. */
  123. public function disableModule()
  124. {
  125. CatchAdmin::disableModule($this->module);
  126. Permissions::destroy(function ($query) {
  127. $query->where('module', trim($this->module));
  128. });
  129. }
  130. /**
  131. * 创建模块表
  132. *
  133. * @time 2020年09月10日
  134. * @return void
  135. */
  136. public function installModuleTables()
  137. {
  138. Console::call('catch-migrate:run', [$this->module]);
  139. }
  140. /**
  141. * 初始化模块数据
  142. *
  143. * @time 2020年09月10日
  144. * @return void
  145. */
  146. public function installModuleSeeds()
  147. {
  148. Console::call('catch-seed:run', [$this->module]);
  149. }
  150. /**
  151. * 回滚模块表
  152. *
  153. * @time 2020年09月10日
  154. * @return void
  155. */
  156. public function rollbackModuleTable()
  157. {
  158. Console::call('catch-migrate:rollback', [$this->module, '-f']);
  159. }
  160. }