Menu.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. namespace app\common\library;
  3. use app\admin\model\AuthRule;
  4. use fast\Tree;
  5. use think\Exception;
  6. use think\exception\PDOException;
  7. class Menu
  8. {
  9. /**
  10. * 创建菜单
  11. * @param array $menu
  12. * @param mixed $parent 父类的name或pid
  13. */
  14. public static function create($menu, $parent = 0)
  15. {
  16. if (!is_numeric($parent))
  17. {
  18. $parentRule = AuthRule::getByName($parent);
  19. $pid = $parentRule ? $parentRule['id'] : 0;
  20. }
  21. else
  22. {
  23. $pid = $parent;
  24. }
  25. $allow = array_flip(['file', 'name', 'title', 'icon', 'condition', 'remark', 'ismenu']);
  26. foreach ($menu as $k => $v)
  27. {
  28. $hasChild = isset($v['sublist']) && $v['sublist'] ? true : false;
  29. $data = array_intersect_key($v, $allow);
  30. $data['ismenu'] = isset($data['ismenu']) ? $data['ismenu'] : ($hasChild ? 1 : 0);
  31. $data['icon'] = isset($data['icon']) ? $data['icon'] : ($hasChild ? 'fa fa-list' : 'fa fa-circle-o');
  32. $data['pid'] = $pid;
  33. $data['status'] = 'normal';
  34. try
  35. {
  36. $menu = AuthRule::create($data);
  37. if ($hasChild)
  38. {
  39. self::create($v['sublist'], $menu->id);
  40. }
  41. }
  42. catch (PDOException $e)
  43. {
  44. throw new Exception($e->getMessage());
  45. }
  46. }
  47. }
  48. /**
  49. * 删除菜单
  50. * @param string $name 规则name
  51. * @return boolean
  52. */
  53. public static function delete($name)
  54. {
  55. $ids = self::getAuthRuleIdsByName($name);
  56. if (!$ids)
  57. {
  58. return false;
  59. }
  60. AuthRule::destroy($ids);
  61. return true;
  62. }
  63. /**
  64. * 启用菜单
  65. * @param string $name
  66. * @return boolean
  67. */
  68. public static function enable($name)
  69. {
  70. $ids = self::getAuthRuleIdsByName($name);
  71. if (!$ids)
  72. {
  73. return false;
  74. }
  75. AuthRule::where('id', 'in', $ids)->update(['status' => 'normal']);
  76. return true;
  77. }
  78. /**
  79. * 禁用菜单
  80. * @param string $name
  81. * @return boolean
  82. */
  83. public static function disable($name)
  84. {
  85. $ids = self::getAuthRuleIdsByName($name);
  86. if (!$ids)
  87. {
  88. return false;
  89. }
  90. AuthRule::where('id', 'in', $ids)->update(['status' => 'hidden']);
  91. return true;
  92. }
  93. /**
  94. * 导出指定名称的菜单规则
  95. * @param string $name
  96. * @return array
  97. */
  98. public static function export($name)
  99. {
  100. $ids = self::getAuthRuleIdsByName($name);
  101. if (!$ids)
  102. {
  103. return [];
  104. }
  105. $menuList = [];
  106. $menu = AuthRule::getByName($name);
  107. if ($menu)
  108. {
  109. $ruleList = collection(AuthRule::where('id', 'in', $ids)->select())->toArray();
  110. $menuList = Tree::instance()->init($ruleList)->getTreeArray($menu['id']);
  111. }
  112. return $menuList;
  113. }
  114. /**
  115. * 根据名称获取规则IDS
  116. * @param string $name
  117. * @return array
  118. */
  119. public static function getAuthRuleIdsByName($name)
  120. {
  121. $ids = [];
  122. $menu = AuthRule::getByName($name);
  123. if ($menu)
  124. {
  125. // 必须将结果集转换为数组
  126. $ruleList = collection(AuthRule::order('weigh', 'desc')->field('id,pid,name')->select())->toArray();
  127. // 构造菜单数据
  128. $ids = Tree::instance()->init($ruleList)->getChildrenIds($menu['id'], true);
  129. }
  130. return $ids;
  131. }
  132. }