NavMenuModel.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\model;
  12. use think\Exception;
  13. use think\Model;
  14. use tree\Tree;
  15. use think\Db;
  16. class NavMenuModel extends Model
  17. {
  18. /**
  19. * 获取某导航下所有菜单树形结构数组
  20. * @param int $navId 导航id
  21. * @param int $maxLevel 最大获取层级,默认不限制
  22. * @return array
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. */
  27. public function navMenusTreeArray($navId = 0, $maxLevel = 0)
  28. {
  29. if (empty($navId)) {
  30. $navId = Db::name('nav')->where('is_main', 1)->value('id');
  31. }
  32. $navMenus = $this->where('nav_id', $navId)->where('status', 1)->order('list_order ASC')->select()->toArray();
  33. $navMenusTree = [];
  34. if (!empty($navMenus)) {
  35. $tree = new Tree();
  36. $this->parseNavMenu4Home($navMenus);
  37. $tree->init($navMenus);
  38. $navMenusTree = $tree->getTreeArray(0, $maxLevel);
  39. }
  40. return $navMenusTree;
  41. }
  42. /**
  43. * 获取某导航菜单下的所有子菜单树形结构数组
  44. * @param $menuId 导航菜单 id
  45. * @return array
  46. * @throws \think\db\exception\DataNotFoundException
  47. * @throws \think\db\exception\ModelNotFoundException
  48. * @throws \think\exception\DbException
  49. */
  50. public function subNavMenusTreeArray($menuId)
  51. {
  52. $navId = $this->where('id', $menuId)->where('status', 1)->value('nav_id');
  53. if (empty($navId)) {
  54. return [];
  55. }
  56. $navMenus = $this->where('nav_id', $navId)->where('status', 1)->order('list_order ASC')->select()->toArray();
  57. $navMenusTree = [];
  58. if (!empty($navMenus)) {
  59. $tree = new Tree();
  60. $this->parseNavMenu4Home($navMenus);
  61. $tree->init($navMenus);
  62. $navMenusTree = $tree->getTreeArray($menuId);
  63. }
  64. return $navMenusTree;
  65. }
  66. private function parseNavMenu4Home(&$navMenus)
  67. {
  68. foreach ($navMenus as $key => $navMenu) {
  69. $href = htmlspecialchars_decode($navMenu['href']);
  70. $hrefOld = $href;
  71. if (strpos($hrefOld, "{") !== false) {
  72. $href = json_decode($navMenu['href'], true);
  73. $href = cmf_url($href['action'], $href['param']);
  74. } else {
  75. if ($hrefOld == "home") {
  76. $href = request()->root() . "/";
  77. } else {
  78. $href = $hrefOld;
  79. }
  80. }
  81. $navMenu['href'] = $href;
  82. $navMenus[$key] = $navMenu;
  83. }
  84. }
  85. /**
  86. * 获取共享nav模板结构
  87. * @return array
  88. */
  89. public function selectNavs()
  90. {
  91. $tree = new Tree();
  92. $tree->icon = ['&nbsp;│ ', '&nbsp;├─ ', '&nbsp;└─ '];
  93. $tree->nbsp = '&nbsp;';
  94. $navs = $this->getNavData();
  95. foreach ($navs as $key => $navData) {
  96. $tree->init($navData['items']);
  97. $tpl = "<option value='\$rule' data-name='\$name'>\$spacer\$name</option>";
  98. $html = $tree->getTree(0, $tpl);
  99. $navs[$key]['html'] = $html;
  100. }
  101. return $navs;
  102. }
  103. /**
  104. * 获取共享nav数据
  105. * @return array
  106. */
  107. private function getNavData()
  108. {
  109. $apps = cmf_scan_dir(APP_PATH . "*");
  110. array_push($apps, 'admin', 'user');
  111. $navs = [];
  112. foreach ($apps as $app) {
  113. if (is_dir(APP_PATH . $app)) {
  114. if (!(strpos($app, ".") === 0)) {
  115. $navConfigFile = cmf_get_app_config_file($app, 'nav');
  116. if (file_exists($navConfigFile)) {
  117. $navApis = include $navConfigFile;
  118. if (is_array($navApis) && !empty($navApis)) {
  119. foreach ($navApis as $navApi) {
  120. if (!empty($navApi['api'])) {
  121. try {
  122. $navData = action($app . '/' . $navApi['api'], [], 'api');
  123. } catch (Exception $e) {
  124. $navData = null;
  125. }
  126. if (!empty($navData) && !empty($navData['rule']) && count($navData['items']) > 0) {
  127. $this->parseNavData($navData, $navApi);
  128. if (!empty($navData['items'])) {
  129. array_push($navs, $navData);
  130. }
  131. }
  132. }
  133. }
  134. }
  135. }
  136. }
  137. }
  138. }
  139. return $navs;
  140. }
  141. /**
  142. * 解析导航数据
  143. * @param $navData
  144. * @param $navApi
  145. */
  146. private function parseNavData(&$navData, $navApi)
  147. {
  148. //TODO 检查导航数据合法性
  149. if (!empty($navData) && !empty($navData['rule']) && count($navData['items']) > 0) {
  150. $navData['name'] = $navApi['name'];
  151. $urlRule = $navData['rule'];
  152. $items = $navData['items'];
  153. $navData['items'] = [];
  154. if ($items instanceof \think\Collection) {
  155. $items = $items->toArray();
  156. }
  157. foreach ($items as $item) {
  158. $rule = [];
  159. $rule['action'] = $urlRule['action'];
  160. $rule['param'] = [];
  161. if (isset($urlRule['param'])) {
  162. foreach ($urlRule['param'] as $key => $val) {
  163. $rule['param'][$key] = $item[$val];
  164. }
  165. }
  166. array_push($navData['items'], [
  167. "name" => $item['name'],
  168. "url" => url($rule['action'], $rule['param']),
  169. "rule" => base64_encode(json_encode($rule)),
  170. "parent_id" => empty($item['parent_id']) ? 0 : $item['parent_id'],
  171. "id" => $item['id'],
  172. ]);
  173. }
  174. }
  175. }
  176. }