MenuService.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.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\service;
  15. use think\admin\extend\DataExtend;
  16. use think\admin\extend\NodeExtend;
  17. /**
  18. * 系统菜单服务
  19. * Class MenuService
  20. * @package app\admin\service
  21. */
  22. class MenuService
  23. {
  24. /**
  25. * 获取可选菜单节点
  26. * @return array
  27. * @throws \ReflectionException
  28. */
  29. public static function getList()
  30. {
  31. static $nodes = [];
  32. if (count($nodes) > 0) return $nodes;
  33. foreach (NodeExtend::getMethods() as $node => $method) if ($method['ismenu']) {
  34. $nodes[] = ['node' => $node, 'title' => $method['title']];
  35. }
  36. return $nodes;
  37. }
  38. /**
  39. * 获取系统菜单树数据
  40. * @return array
  41. * @throws \ReflectionException
  42. * @throws \think\db\exception\DataNotFoundException
  43. * @throws \think\db\exception\DbException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. */
  46. public static function getTree()
  47. {
  48. $result = app()->db->name('SystemMenu')->where(['status' => '1'])->order('sort desc,id asc')->select();
  49. return self::buildData(DataExtend::arr2tree($result->toArray()), NodeExtend::getMethods());
  50. }
  51. /**
  52. * 后台主菜单权限过滤
  53. * @param array $menus 当前菜单列表
  54. * @param array $nodes 系统权限节点
  55. * @return array
  56. * @throws \ReflectionException
  57. */
  58. private static function buildData($menus, $nodes)
  59. {
  60. foreach ($menus as $key => &$menu) {
  61. if (!empty($menu['sub'])) {
  62. $menu['sub'] = self::buildData($menu['sub'], $nodes);
  63. }
  64. if (!empty($menu['sub'])) $menu['url'] = '#';
  65. elseif ($menu['url'] === '#') unset($menus[$key]);
  66. elseif (preg_match('|^https?://|i', $menu['url'])) continue;
  67. else {
  68. $node = join('/', array_slice(explode('/', preg_replace('/[\W]/', '/', $menu['url'])), 0, 3));
  69. $menu['url'] = url($menu['url']) . (empty($menu['params']) ? '' : "?{$menu['params']}");
  70. if (!AuthService::check($node)) unset($menus[$key]);
  71. }
  72. }
  73. return $menus;
  74. }
  75. }