Module.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. namespace catchAdmin\system\controller;
  3. use catchAdmin\permissions\model\Permissions;
  4. use catcher\base\CatchController;
  5. use catcher\CatchResponse;
  6. use catcher\CatchAdmin;
  7. use catcher\library\InstallCatchModule;
  8. use catcher\library\InstallLocalModule;
  9. use catcher\Utils;
  10. use think\response\Json;
  11. class Module extends CatchController
  12. {
  13. /**
  14. * 模块列表
  15. *
  16. * @return Json
  17. */
  18. public function index()
  19. {
  20. $modules = [];
  21. foreach(CatchAdmin::getModulesDirectory() as $d) {
  22. $modules[] = json_decode(file_get_contents($d . 'module.json'), true);
  23. }
  24. $hasModules = array_unique(Permissions::whereIn('id', request()->user()->getPermissionsBy())->column('module'));
  25. $orders = array_column($modules, 'order');
  26. array_multisort($orders, SORT_DESC, $modules);
  27. if (!Utils::isSuperAdmin()) {
  28. foreach ($modules as $k => $module) {
  29. if (!in_array($module['alias'], $hasModules)) {
  30. unset($modules[$k]);
  31. }
  32. }
  33. }
  34. return CatchResponse::success(array_values($modules));
  35. }
  36. /**
  37. * 禁用/启用模块
  38. *
  39. * @param string $module
  40. * @return Json
  41. * @throws \think\db\exception\DbException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @throws \think\db\exception\DataNotFoundException
  44. */
  45. public function disOrEnable(string $module)
  46. {
  47. $moduleInfo = CatchAdmin::getModuleInfo(CatchAdmin::directory() . $module);
  48. $install = new InstallLocalModule($module);
  49. if (!$moduleInfo['enable']) {
  50. $install->findModuleInPermissions() ? $install->enableModule() : $install->done();
  51. } else {
  52. $install->disableModule();
  53. }
  54. return CatchResponse::success();
  55. }
  56. /**
  57. * 缓存
  58. *
  59. * @time 2020年09月21日
  60. * @return Json
  61. */
  62. public function cache()
  63. {
  64. return CatchResponse::success(CatchAdmin::cacheServices());
  65. }
  66. /**
  67. * 清理缓存
  68. *
  69. * @time 2020年09月21日
  70. * @return Json
  71. */
  72. public function clear()
  73. {
  74. return !file_exists(CatchAdmin::getCacheServicesFile()) ?
  75. CatchResponse::fail('模块没有缓存') :
  76. CatchResponse::success(unlink(CatchAdmin::getCacheServicesFile()));
  77. }
  78. }