PluginController.php 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  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 cmf\controller\AdminBaseController;
  13. use app\admin\model\PluginModel;
  14. use app\admin\model\HookPluginModel;
  15. use mindplay\annotations\Annotations;
  16. use think\Db;
  17. use think\facade\Cache;
  18. use think\Validate;
  19. /**
  20. * Class PluginController
  21. * @package app\admin\controller
  22. * @adminMenuRoot(
  23. * 'name' =>'插件中心',
  24. * 'action' =>'default',
  25. * 'parent' =>'',
  26. * 'display'=> true,
  27. * 'order' => 20,
  28. * 'icon' =>'cloud',
  29. * 'remark' =>'插件中心'
  30. * )
  31. */
  32. class PluginController extends AdminBaseController
  33. {
  34. protected $pluginModel;
  35. /**
  36. * 插件列表
  37. * @adminMenu(
  38. * 'name' => '插件列表',
  39. * 'parent' => 'admin/Plugin/default',
  40. * 'display'=> true,
  41. * 'hasView'=> true,
  42. * 'order' => 10000,
  43. * 'icon' => '',
  44. * 'remark' => '插件列表',
  45. * 'param' => ''
  46. * )
  47. */
  48. public function index()
  49. {
  50. $pluginModel = new PluginModel();
  51. $plugins = $pluginModel->getList();
  52. $this->assign("plugins", $plugins);
  53. return $this->fetch();
  54. }
  55. /**
  56. * 插件启用/禁用
  57. * @adminMenu(
  58. * 'name' => '插件启用禁用',
  59. * 'parent' => 'index',
  60. * 'display'=> false,
  61. * 'hasView'=> false,
  62. * 'order' => 10000,
  63. * 'icon' => '',
  64. * 'remark' => '插件启用禁用',
  65. * 'param' => ''
  66. * )
  67. */
  68. public function toggle()
  69. {
  70. $id = $this->request->param('id', 0, 'intval');
  71. $pluginModel = PluginModel::get($id);
  72. if (empty($pluginModel)) {
  73. $this->error('插件不存在!');
  74. }
  75. $status = 1;
  76. $successMessage = "启用成功!";
  77. if ($this->request->param('disable')) {
  78. $status = 0;
  79. $successMessage = "禁用成功!";
  80. }
  81. $pluginModel->startTrans();
  82. try {
  83. $pluginModel->save(['status' => $status], ['id' => $id]);
  84. $hookPluginModel = new HookPluginModel();
  85. $hookPluginModel->save(['status' => $status], ['plugin' => $pluginModel->name]);
  86. $pluginModel->commit();
  87. } catch (\Exception $e) {
  88. $pluginModel->rollback();
  89. $this->error('操作失败!');
  90. }
  91. Cache::clear('init_hook_plugins');
  92. $this->success($successMessage);
  93. }
  94. /**
  95. * 插件设置
  96. * @adminMenu(
  97. * 'name' => '插件设置',
  98. * 'parent' => 'index',
  99. * 'display'=> false,
  100. * 'hasView'=> true,
  101. * 'order' => 10000,
  102. * 'icon' => '',
  103. * 'remark' => '插件设置',
  104. * 'param' => ''
  105. * )
  106. */
  107. public function setting()
  108. {
  109. $id = $this->request->param('id', 0, 'intval');
  110. $pluginModel = new PluginModel();
  111. $plugin = $pluginModel->find($id);
  112. if (empty($plugin)) {
  113. $this->error('插件未安装!');
  114. }
  115. $plugin = $plugin->toArray();
  116. $pluginClass = cmf_get_plugin_class($plugin['name']);
  117. if (!class_exists($pluginClass)) {
  118. $this->error('插件不存在!');
  119. }
  120. $pluginObj = new $pluginClass;
  121. //$plugin['plugin_path'] = $pluginObj->plugin_path;
  122. //$plugin['custom_config'] = $pluginObj->custom_config;
  123. $pluginConfigInDb = $plugin['config'];
  124. $plugin['config'] = include $pluginObj->getConfigFilePath();
  125. if ($pluginConfigInDb) {
  126. $pluginConfigInDb = json_decode($pluginConfigInDb, true);
  127. foreach ($plugin['config'] as $key => $value) {
  128. if ($value['type'] != 'group') {
  129. if (isset($pluginConfigInDb[$key])) {
  130. $plugin['config'][$key]['value'] = $pluginConfigInDb[$key];
  131. }
  132. } else {
  133. foreach ($value['options'] as $group => $options) {
  134. foreach ($options['options'] as $gkey => $value) {
  135. if (isset($pluginConfigInDb[$gkey])) {
  136. $plugin['config'][$key]['options'][$group]['options'][$gkey]['value'] = $pluginConfigInDb[$gkey];
  137. }
  138. }
  139. }
  140. }
  141. }
  142. }
  143. $this->assign('data', $plugin);
  144. // if ($plugin['custom_config']) {
  145. // $this->assign('custom_config', $this->fetch($plugin['plugin_path'] . $plugin['custom_config']));
  146. // }
  147. $this->assign('id', $id);
  148. return $this->fetch();
  149. }
  150. /**
  151. * 插件设置提交
  152. * @adminMenu(
  153. * 'name' => '插件设置提交',
  154. * 'parent' => 'index',
  155. * 'display'=> false,
  156. * 'hasView'=> false,
  157. * 'order' => 10000,
  158. * 'icon' => '',
  159. * 'remark' => '插件设置提交',
  160. * 'param' => ''
  161. * )
  162. */
  163. public function settingPost()
  164. {
  165. if ($this->request->isPost()) {
  166. $id = $this->request->param('id', 0, 'intval');
  167. $pluginModel = new PluginModel();
  168. $plugin = $pluginModel->find($id)->toArray();
  169. if (!$plugin) {
  170. $this->error('插件未安装!');
  171. }
  172. $pluginClass = cmf_get_plugin_class($plugin['name']);
  173. if (!class_exists($pluginClass)) {
  174. $this->error('插件不存在!');
  175. }
  176. $pluginObj = new $pluginClass;
  177. //$plugin['plugin_path'] = $pluginObj->plugin_path;
  178. //$plugin['custom_config'] = $pluginObj->custom_config;
  179. $pluginConfigInDb = $plugin['config'];
  180. $plugin['config'] = include $pluginObj->getConfigFilePath();
  181. $rules = [];
  182. $messages = [];
  183. foreach ($plugin['config'] as $key => $value) {
  184. if ($value['type'] != 'group') {
  185. if (isset($value['rule'])) {
  186. $rules[$key] = $this->_parseRules($value['rule']);
  187. }
  188. if (isset($value['message'])) {
  189. foreach ($value['message'] as $rule => $msg) {
  190. $messages[$key . '.' . $rule] = $msg;
  191. }
  192. }
  193. } else {
  194. foreach ($value['options'] as $group => $options) {
  195. foreach ($options['options'] as $gkey => $value) {
  196. if (isset($value['rule'])) {
  197. $rules[$gkey] = $this->_parseRules($value['rule']);
  198. }
  199. if (isset($value['message'])) {
  200. foreach ($value['message'] as $rule => $msg) {
  201. $messages[$gkey . '.' . $rule] = $msg;
  202. }
  203. }
  204. }
  205. }
  206. }
  207. }
  208. $config = $this->request->param('config/a');
  209. $validate = new Validate($rules, $messages);
  210. $result = $validate->check($config);
  211. if ($result !== true) {
  212. $this->error($validate->getError());
  213. }
  214. $pluginModel = new PluginModel();
  215. $pluginModel->save(['config' => json_encode($config)], ['id' => $id]);
  216. $this->success('保存成功', '');
  217. }
  218. }
  219. /**
  220. * 解析插件配置验证规则
  221. * @param $rules
  222. * @return array
  223. */
  224. private function _parseRules($rules)
  225. {
  226. $newRules = [];
  227. $simpleRules = [
  228. 'require', 'number',
  229. 'integer', 'float', 'boolean', 'email',
  230. 'array', 'accepted', 'date', 'alpha',
  231. 'alphaNum', 'alphaDash', 'activeUrl',
  232. 'url', 'ip'];
  233. foreach ($rules as $key => $rule) {
  234. if (in_array($key, $simpleRules) && $rule) {
  235. array_push($newRules, $key);
  236. }
  237. }
  238. return $newRules;
  239. }
  240. /**
  241. * 插件安装
  242. * @adminMenu(
  243. * 'name' => '插件安装',
  244. * 'parent' => 'index',
  245. * 'display'=> false,
  246. * 'hasView'=> false,
  247. * 'order' => 10000,
  248. * 'icon' => '',
  249. * 'remark' => '插件安装',
  250. * 'param' => ''
  251. * )
  252. */
  253. public function install()
  254. {
  255. $pluginName = $this->request->param('name', '', 'trim');
  256. $class = cmf_get_plugin_class($pluginName);
  257. if (!class_exists($class)) {
  258. $this->error('插件不存在!');
  259. }
  260. $pluginModel = new PluginModel();
  261. $pluginCount = $pluginModel->where('name', $pluginName)->count();
  262. if ($pluginCount > 0) {
  263. $this->error('插件已安装!');
  264. }
  265. $plugin = new $class;
  266. $info = $plugin->info;
  267. if (!$info || !$plugin->checkInfo()) {//检测信息的正确性
  268. $this->error('插件信息缺失!');
  269. }
  270. $installSuccess = $plugin->install();
  271. if (!$installSuccess) {
  272. $this->error('插件预安装失败!');
  273. }
  274. $methods = get_class_methods($plugin);
  275. foreach ($methods as $methodKey => $method) {
  276. $methods[$methodKey] = cmf_parse_name($method);
  277. }
  278. $systemHooks = $pluginModel->getHooks(true);
  279. $pluginHooks = array_intersect($systemHooks, $methods);
  280. //$info['hooks'] = implode(",", $pluginHooks);
  281. if (!empty($plugin->hasAdmin)) {
  282. $info['has_admin'] = 1;
  283. } else {
  284. $info['has_admin'] = 0;
  285. }
  286. $info['config'] = json_encode($plugin->getConfig());
  287. $pluginModel->data($info)->allowField(true)->save();
  288. $hookPluginModel = new HookPluginModel();
  289. foreach ($pluginHooks as $pluginHook) {
  290. $hookPluginModel->data(['hook' => $pluginHook, 'plugin' => $pluginName, 'status' => 1])->isUpdate(false)->save();
  291. }
  292. $this->_getActions($pluginName);
  293. Cache::clear('init_hook_plugins');
  294. Cache::clear('admin_menus');// 删除后台菜单缓存
  295. $this->success('安装成功!');
  296. }
  297. /**
  298. * 插件更新
  299. * @adminMenu(
  300. * 'name' => '插件更新',
  301. * 'parent' => 'index',
  302. * 'display'=> false,
  303. * 'hasView'=> false,
  304. * 'order' => 10000,
  305. * 'icon' => '',
  306. * 'remark' => '插件更新',
  307. * 'param' => ''
  308. * )
  309. */
  310. public function update()
  311. {
  312. $pluginName = $this->request->param('name', '', 'trim');
  313. $class = cmf_get_plugin_class($pluginName);
  314. if (!class_exists($class)) {
  315. $this->error('插件不存在!');
  316. }
  317. $plugin = new $class;
  318. $info = $plugin->info;
  319. if (!$info || !$plugin->checkInfo()) {//检测信息的正确性
  320. $this->error('插件信息缺失!');
  321. }
  322. $methods = get_class_methods($plugin);
  323. foreach ($methods as $methodKey => $method) {
  324. $methods[$methodKey] = cmf_parse_name($method);
  325. }
  326. $pluginModel = new PluginModel();
  327. $systemHooks = $pluginModel->getHooks(true);
  328. $pluginHooks = array_intersect($systemHooks, $methods);
  329. if (!empty($plugin->hasAdmin)) {
  330. $info['has_admin'] = 1;
  331. } else {
  332. $info['has_admin'] = 0;
  333. }
  334. $config = $plugin->getConfig();
  335. $defaultConfig = $plugin->getDefaultConfig();
  336. $pluginModel = new PluginModel();
  337. $config = array_merge($defaultConfig, $config);
  338. $info['config'] = json_encode($config);
  339. $pluginModel->allowField(true)->save($info, ['name' => $pluginName]);
  340. $hookPluginModel = new HookPluginModel();
  341. $pluginHooksInDb = $hookPluginModel->where('plugin', $pluginName)->column('hook');
  342. $samePluginHooks = array_intersect($pluginHooks, $pluginHooksInDb);
  343. $shouldDeleteHooks = array_diff($samePluginHooks, $pluginHooksInDb);
  344. $newHooks = array_diff($pluginHooks, $samePluginHooks);
  345. if (count($shouldDeleteHooks) > 0) {
  346. $hookPluginModel->where('hook', 'in', $shouldDeleteHooks)->delete();
  347. }
  348. foreach ($newHooks as $pluginHook) {
  349. $hookPluginModel->data(['hook' => $pluginHook, 'plugin' => $pluginName])->isUpdate(false)->save();
  350. }
  351. $this->_getActions($pluginName);
  352. Cache::clear('init_hook_plugins');
  353. Cache::clear('admin_menus');// 删除后台菜单缓存
  354. $this->success('更新成功!');
  355. }
  356. private function _getActions($pluginName)
  357. {
  358. Annotations::$config['cache'] = false;
  359. $annotationManager = Annotations::getManager();
  360. $annotationManager->registry['adminMenu'] = 'app\admin\annotation\AdminMenuAnnotation';
  361. $annotationManager->registry['adminMenuRoot'] = 'app\admin\annotation\AdminMenuRootAnnotation';
  362. $newMenus = [];
  363. $pluginDir = cmf_parse_name($pluginName);
  364. $filePatten = CMF_ROOT . 'plugins/' . $pluginDir . '/controller/Admin*Controller.php';
  365. $controllers = cmf_scan_dir($filePatten);
  366. $app = 'plugin/' . $pluginName;
  367. if (!empty($controllers)) {
  368. foreach ($controllers as $controller) {
  369. $controller = preg_replace('/\.php$/', '', $controller);
  370. $controllerName = preg_replace('/\Controller$/', '', $controller);
  371. $controllerClass = "plugins\\$pluginDir\\controller\\$controller";
  372. $menuAnnotations = Annotations::ofClass($controllerClass, '@adminMenuRoot');
  373. if (!empty($menuAnnotations)) {
  374. foreach ($menuAnnotations as $menuAnnotation) {
  375. $name = $menuAnnotation->name;
  376. $icon = $menuAnnotation->icon;
  377. $type = 0;//1:有界面可访问菜单,2:无界面可访问菜单,0:只作为菜单
  378. $action = $menuAnnotation->action;
  379. $status = empty($menuAnnotation->display) ? 0 : 1;
  380. $listOrder = floatval($menuAnnotation->order);
  381. $param = $menuAnnotation->param;
  382. $remark = $menuAnnotation->remark;
  383. if (empty($menuAnnotation->parent)) {
  384. $parentId = 0;
  385. } else {
  386. $parent = explode('/', $menuAnnotation->parent);
  387. $countParent = count($parent);
  388. if ($countParent > 3) {
  389. throw new \Exception($controllerClass . ':' . $action . ' @adminMenuRoot parent格式不正确!');
  390. }
  391. $parentApp = $app;
  392. $parentController = $controllerName;
  393. $parentAction = '';
  394. switch ($countParent) {
  395. case 1:
  396. $parentAction = $parent[0];
  397. break;
  398. case 2:
  399. $parentController = $parent[0];
  400. $parentAction = $parent[1];
  401. break;
  402. case 3:
  403. $parentApp = $parent[0];
  404. $parentController = $parent[1];
  405. $parentAction = $parent[2];
  406. break;
  407. }
  408. $findParentAdminMenu = Db::name('admin_menu')->where([
  409. 'app' => $parentApp,
  410. 'controller' => $parentController,
  411. 'action' => $parentAction
  412. ])->find();
  413. if (empty($findParentAdminMenu)) {
  414. $parentId = Db::name('admin_menu')->insertGetId([
  415. 'app' => $parentApp,
  416. 'controller' => $parentController,
  417. 'action' => $parentAction,
  418. 'name' => '--new--'
  419. ]);
  420. } else {
  421. $parentId = $findParentAdminMenu['id'];
  422. }
  423. }
  424. $findAdminMenu = Db::name('admin_menu')->where([
  425. 'app' => $app,
  426. 'controller' => $controllerName,
  427. 'action' => $action
  428. ])->find();
  429. if (empty($findAdminMenu)) {
  430. Db::name('admin_menu')->insert([
  431. 'parent_id' => $parentId,
  432. 'type' => $type,
  433. 'status' => $status,
  434. 'list_order' => $listOrder,
  435. 'app' => $app,
  436. 'controller' => $controllerName,
  437. 'action' => $action,
  438. 'param' => $param,
  439. 'name' => $name,
  440. 'icon' => $icon,
  441. 'remark' => $remark
  442. ]);
  443. $menuName = $name;
  444. // array_push($newMenus, $app . "/$controllerName/$action 已导入");
  445. } else {
  446. if ($findAdminMenu['name'] == '--new--') {
  447. Db::name('admin_menu')->where([
  448. 'app' => $app,
  449. 'controller' => $controllerName,
  450. 'action' => $action
  451. ])->update([
  452. 'parent_id' => $parentId,
  453. 'type' => $type,
  454. 'status' => $status,
  455. 'list_order' => $listOrder,
  456. 'param' => $param,
  457. 'name' => $name,
  458. 'icon' => $icon,
  459. 'remark' => $remark
  460. ]);
  461. $menuName = $name;
  462. } else {
  463. // 只关注菜单层级关系,是否有视图
  464. Db::name('admin_menu')->where([
  465. 'app' => $app,
  466. 'controller' => $controllerName,
  467. 'action' => $action
  468. ])->update([
  469. //'parent_id' => $parentId,
  470. 'type' => $type,
  471. ]);
  472. $menuName = $findAdminMenu['name'];
  473. }
  474. // array_push($newMenus, $app."/$controllerName/$action 层级关系已更新");
  475. }
  476. $authRuleName = "plugin/{$pluginName}/{$controllerName}/{$action}";
  477. $findAuthRuleCount = Db::name('auth_rule')->where([
  478. 'app' => $app,
  479. 'name' => $authRuleName,
  480. 'type' => 'admin_url'
  481. ])->count();
  482. if ($findAuthRuleCount == 0) {
  483. Db::name('auth_rule')->insert([
  484. 'app' => $app,
  485. 'name' => $authRuleName,
  486. 'type' => 'admin_url',
  487. 'param' => $param,
  488. 'title' => $menuName
  489. ]);
  490. } else {
  491. Db::name('auth_rule')->where([
  492. 'app' => $app,
  493. 'name' => $authRuleName,
  494. 'type' => 'admin_url',
  495. ])->update([
  496. 'param' => $param,
  497. 'title' => $menuName
  498. ]);
  499. }
  500. }
  501. }
  502. $reflect = new \ReflectionClass($controllerClass);
  503. $methods = $reflect->getMethods(\ReflectionMethod::IS_PUBLIC);
  504. if (!empty($methods)) {
  505. foreach ($methods as $method) {
  506. if ($method->class == $controllerClass && strpos($method->name, '_') !== 0) {
  507. $menuAnnotations = Annotations::ofMethod($controllerClass, $method->name, '@adminMenu');
  508. if (!empty($menuAnnotations)) {
  509. $menuAnnotation = $menuAnnotations[0];
  510. $name = $menuAnnotation->name;
  511. $icon = $menuAnnotation->icon;
  512. $type = $menuAnnotation->hasView ? 1 : 2;//1:有界面可访问菜单,2:无界面可访问菜单,0:只作为菜单
  513. $action = $method->name;
  514. $status = empty($menuAnnotation->display) ? 0 : 1;
  515. $listOrder = floatval($menuAnnotation->order);
  516. $param = $menuAnnotation->param;
  517. $remark = $menuAnnotation->remark;
  518. if (empty($menuAnnotation->parent)) {
  519. $parentId = 0;
  520. } else {
  521. $parent = explode('/', $menuAnnotation->parent);
  522. $countParent = count($parent);
  523. if ($countParent > 3) {
  524. throw new \Exception($controllerClass . ':' . $action . ' @menuRoot parent格式不正确!');
  525. }
  526. $parentApp = $app;
  527. $parentController = $controllerName;
  528. $parentAction = '';
  529. switch ($countParent) {
  530. case 1:
  531. $parentAction = $parent[0];
  532. break;
  533. case 2:
  534. $parentController = $parent[0];
  535. $parentAction = $parent[1];
  536. break;
  537. case 3:
  538. $parentApp = $parent[0];
  539. $parentController = $parent[1];
  540. $parentAction = $parent[2];
  541. break;
  542. }
  543. $findParentAdminMenu = Db::name('admin_menu')->where([
  544. 'app' => $parentApp,
  545. 'controller' => $parentController,
  546. 'action' => $parentAction
  547. ])->find();
  548. if (empty($findParentAdminMenu)) {
  549. $parentId = Db::name('admin_menu')->insertGetId([
  550. 'app' => $parentApp,
  551. 'controller' => $parentController,
  552. 'action' => $parentAction,
  553. 'name' => '--new--'
  554. ]);
  555. } else {
  556. $parentId = $findParentAdminMenu['id'];
  557. }
  558. }
  559. $findAdminMenu = Db::name('admin_menu')->where([
  560. 'app' => $app,
  561. 'controller' => $controllerName,
  562. 'action' => $action
  563. ])->find();
  564. if (empty($findAdminMenu)) {
  565. Db::name('admin_menu')->insert([
  566. 'parent_id' => $parentId,
  567. 'type' => $type,
  568. 'status' => $status,
  569. 'list_order' => $listOrder,
  570. 'app' => $app,
  571. 'controller' => $controllerName,
  572. 'action' => $action,
  573. 'param' => $param,
  574. 'name' => $name,
  575. 'icon' => $icon,
  576. 'remark' => $remark
  577. ]);
  578. $menuName = $name;
  579. //array_push($newMenus, "$app/$controllerName/$action 已导入");
  580. } else {
  581. if ($findAdminMenu['name'] == '--new--') {
  582. Db::name('admin_menu')->where([
  583. 'app' => $app,
  584. 'controller' => $controllerName,
  585. 'action' => $action
  586. ])->update([
  587. 'parent_id' => $parentId,
  588. 'type' => $type,
  589. 'status' => $status,
  590. 'list_order' => $listOrder,
  591. 'param' => $param,
  592. 'name' => $name,
  593. 'icon' => $icon,
  594. 'remark' => $remark
  595. ]);
  596. $menuName = $name;
  597. } else {
  598. // 只关注是否有视图
  599. Db::name('admin_menu')->where([
  600. 'app' => $app,
  601. 'controller' => $controllerName,
  602. 'action' => $action
  603. ])->update([
  604. //'parent_id' => $parentId,
  605. 'type' => $type,
  606. ]);
  607. $menuName = $findAdminMenu['name'];
  608. }
  609. // array_push($newMenus, "$app/$controllerName/$action 已更新");
  610. }
  611. $authRuleName = "plugin/{$pluginName}/{$controllerName}/{$action}";
  612. $findAuthRuleCount = Db::name('auth_rule')->where([
  613. 'app' => $app,
  614. 'name' => $authRuleName,
  615. 'type' => 'plugin_url'
  616. ])->count();
  617. if ($findAuthRuleCount == 0) {
  618. Db::name('auth_rule')->insert([
  619. 'app' => $app,
  620. 'name' => $authRuleName,
  621. 'type' => 'plugin_url',
  622. 'param' => $param,
  623. 'title' => $menuName
  624. ]);
  625. } else {
  626. Db::name('auth_rule')->where([
  627. 'app' => $app,
  628. 'name' => $authRuleName,
  629. 'type' => 'plugin_url',
  630. ])->update([
  631. 'param' => $param,
  632. 'title' => $menuName
  633. ]);
  634. }
  635. }
  636. }
  637. }
  638. }
  639. }
  640. }
  641. }
  642. /**
  643. * 卸载插件
  644. * @adminMenu(
  645. * 'name' => '卸载插件',
  646. * 'parent' => 'index',
  647. * 'display'=> false,
  648. * 'hasView'=> false,
  649. * 'order' => 10000,
  650. * 'icon' => '',
  651. * 'remark' => '卸载插件',
  652. * 'param' => ''
  653. * )
  654. */
  655. public function uninstall()
  656. {
  657. $pluginModel = new PluginModel();
  658. $id = $this->request->param('id', 0, 'intval');
  659. $result = $pluginModel->uninstall($id);
  660. if ($result !== true) {
  661. $this->error('卸载失败!');
  662. }
  663. Cache::clear('init_hook_plugins');
  664. Cache::clear('admin_menus');// 删除后台菜单缓存
  665. $this->success('卸载成功!');
  666. }
  667. }