Module.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use think\admin\Controller;
  16. use think\admin\service\ModuleService;
  17. /**
  18. * 系统模块管理
  19. * Class Module
  20. * @package app\admin\controller
  21. */
  22. class Module extends Controller
  23. {
  24. /**
  25. * 系统模块管理
  26. * @auth true
  27. * @menu true
  28. */
  29. public function index()
  30. {
  31. $this->title = '系统模块管理';
  32. $this->modules = ModuleService::instance()->change();
  33. $this->fetch();
  34. }
  35. /**
  36. * 安装更新模块
  37. * @auth true
  38. */
  39. public function install()
  40. {
  41. $data = $this->_vali(['name.require' => '模块名称不能为空!']);
  42. [$state, $message] = ModuleService::instance()->install($data['name']);
  43. $state ? $this->success($message) : $this->error($message);
  44. }
  45. /**
  46. * 查看模块更新
  47. * @auth true
  48. */
  49. public function change()
  50. {
  51. $data = $this->_vali(['name.require' => '模块名称不能为空!']);
  52. $modules = ModuleService::instance()->online();
  53. $locals = ModuleService::instance()->getModules();
  54. if (isset($modules[$data['name']])) {
  55. $this->module = $modules[$data['name']];
  56. $this->current = $locals[$data['name']] ?? [];
  57. $pattern = "|^(\d{4})\.(\d{2})\.(\d{2})\.(\d+)$|";
  58. $this->module['change'] = array_reverse($this->module['change']);
  59. foreach ($this->module['change'] as $version => &$change) {
  60. $change = ['content' => $change, 'version' => preg_replace($pattern, '$1年$2月$3日 第 $4 次更新', $version)];
  61. }
  62. $this->fetch();
  63. } else {
  64. $this->error('未查询到模块更新记录!');
  65. }
  66. }
  67. }