HookController.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\admin\controller;
  12. use app\admin\logic\HookLogic;
  13. use cmf\controller\AdminBaseController;
  14. use app\admin\model\HookModel;
  15. use app\admin\model\PluginModel;
  16. use app\admin\model\HookPluginModel;
  17. use think\Db;
  18. /**
  19. * Class HookController 钩子管理控制器
  20. * @package app\admin\controller
  21. */
  22. class HookController extends AdminBaseController
  23. {
  24. /**
  25. * 钩子管理
  26. * @adminMenu(
  27. * 'name' => '钩子管理',
  28. * 'parent' => 'admin/Plugin/default',
  29. * 'display'=> true,
  30. * 'hasView'=> true,
  31. * 'order' => 10000,
  32. * 'icon' => '',
  33. * 'remark' => '钩子管理',
  34. * 'param' => ''
  35. * )
  36. */
  37. public function index()
  38. {
  39. $hookModel = new HookModel();
  40. $hooks = $hookModel->select();
  41. $this->assign('hooks', $hooks);
  42. return $this->fetch();
  43. }
  44. /**
  45. * 钩子插件管理
  46. * @adminMenu(
  47. * 'name' => '钩子插件管理',
  48. * 'parent' => 'index',
  49. * 'display'=> false,
  50. * 'hasView'=> true,
  51. * 'order' => 10000,
  52. * 'icon' => '',
  53. * 'remark' => '钩子插件管理',
  54. * 'param' => ''
  55. * )
  56. */
  57. public function plugins()
  58. {
  59. $hook = $this->request->param('hook');
  60. $pluginModel = new PluginModel();
  61. $plugins = $pluginModel
  62. ->field('a.*,b.hook,b.plugin,b.list_order,b.status as hook_plugin_status,b.id as hook_plugin_id')
  63. ->alias('a')
  64. ->join('__HOOK_PLUGIN__ b', 'a.name = b.plugin')
  65. ->where('b.hook', $hook)
  66. ->order('b.list_order asc')
  67. ->select();
  68. $this->assign('plugins', $plugins);
  69. return $this->fetch();
  70. }
  71. /**
  72. * 钩子插件排序
  73. * @adminMenu(
  74. * 'name' => '钩子插件排序',
  75. * 'parent' => 'index',
  76. * 'display'=> false,
  77. * 'hasView'=> false,
  78. * 'order' => 10000,
  79. * 'icon' => '',
  80. * 'remark' => '钩子插件排序',
  81. * 'param' => ''
  82. * )
  83. */
  84. public function pluginListOrder()
  85. {
  86. $hookPluginModel = new HookPluginModel();
  87. parent::listOrders($hookPluginModel);
  88. $this->success("排序更新成功!");
  89. }
  90. /**
  91. * 同步钩子
  92. * @adminMenu(
  93. * 'name' => '同步钩子',
  94. * 'parent' => 'index',
  95. * 'display'=> false,
  96. * 'hasView'=> true,
  97. * 'order' => 10000,
  98. * 'icon' => '',
  99. * 'remark' => '同步钩子',
  100. * 'param' => ''
  101. * )
  102. */
  103. public function sync()
  104. {
  105. $apps = cmf_scan_dir(APP_PATH . '*', GLOB_ONLYDIR);
  106. array_push($apps, 'cmf', 'admin', 'user', 'swoole');
  107. foreach ($apps as $app) {
  108. HookLogic::importHooks($app);
  109. }
  110. return $this->fetch();
  111. }
  112. }