截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AuthLogic.php 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic;
  20. use app\common\basics\Logic;
  21. use app\common\model\Auth;
  22. use app\common\server\ArrayServer;
  23. class AuthLogic extends Logic
  24. {
  25. /**
  26. * Notes: 列表
  27. * @author 段誉(2021/4/12 16:38)
  28. * @return array
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\DbException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. */
  33. public static function lists()
  34. {
  35. $authModel = new Auth();
  36. $lists = $authModel
  37. ->where(['del' => 0])
  38. ->field(['id', 'type', 'system', 'pid', 'name', 'sort', 'icon', 'uri', 'disable'])
  39. ->order(['sort' => 'desc', 'type' => 'asc'])
  40. ->select()->toArray();
  41. $pids = $authModel
  42. ->where(['del'=>0,'type'=>1])
  43. ->column('pid');
  44. foreach ($lists as $k => $v) {
  45. $lists[$k]['type_str'] = $v['type'] == 1 ? '菜单' : '权限';
  46. $lists[$k]['open'] = in_array($v['id'],$pids) ? true : false;
  47. }
  48. return ArrayServer::linear_to_tree($lists);
  49. }
  50. /**
  51. * Notes: 添加
  52. * @param $post
  53. * @author 段誉(2021/4/12 16:38)
  54. * @return int|string
  55. */
  56. public static function addMenu($post)
  57. {
  58. $level = self::getParent($post['pid']);
  59. if ($level > 3) {
  60. self::$error = '菜单不允许超出三级';
  61. return false;
  62. }
  63. $data = [
  64. 'pid' => $post['pid'],
  65. 'type' => $post['type'],
  66. 'name' => $post['name'],
  67. 'icon' => $post['icon'],
  68. 'sort' => $post['sort'],
  69. 'uri' => $post['uri'],
  70. 'disable' => $post['disable'],
  71. ];
  72. return (new Auth())->insert($data);
  73. }
  74. /**
  75. * Notes: 修改
  76. * @param $post
  77. * @author 段誉(2021/4/12 16:38)
  78. * @return Auth|string
  79. */
  80. public static function editMenu($post)
  81. {
  82. $level = self::getParent($post['pid']);
  83. if ($level > 3) {
  84. self::$error = '菜单不允许超出三级';
  85. return false;
  86. }
  87. $data = [
  88. 'pid' => $post['pid'],
  89. 'type' => $post['type'],
  90. 'name' => $post['name'],
  91. 'icon' => $post['icon'],
  92. 'sort' => $post['sort'],
  93. 'uri' => $post['uri'],
  94. 'disable' => $post['disable'],
  95. 'update_time' => time(),
  96. ];
  97. return Auth::where(['id' => $post['id'], 'system' => 0])
  98. ->update($data);
  99. }
  100. /**
  101. * Notes: 菜单选项
  102. * @param string $id
  103. * @author 段誉(2021/4/12 16:38)
  104. * @return array
  105. * @throws \think\db\exception\DataNotFoundException
  106. * @throws \think\db\exception\DbException
  107. * @throws \think\db\exception\ModelNotFoundException
  108. */
  109. public static function chooseMenu($id = '')
  110. {
  111. $authModel = new Auth();
  112. $lists = $authModel
  113. ->field(['id', 'pid', 'name'])
  114. ->where(['del' => 0, 'type' => 1])
  115. ->select();
  116. if ($id) {
  117. $remove_ids = self::getChildIds($lists, $id);
  118. $remove_ids[] = $id;
  119. foreach ($lists as $key => $row) {
  120. if (in_array($row['id'], $remove_ids)) {
  121. unset($lists[$key]);
  122. }
  123. }
  124. $lists = array_values($lists);
  125. }
  126. return ArrayServer::multilevel_linear_sort($lists, '|-');
  127. }
  128. /**
  129. * Notes: 查找层级
  130. * @param $pid
  131. * @author 段誉(2021/4/12 16:38)
  132. * @return int
  133. * @throws \think\db\exception\DataNotFoundException
  134. * @throws \think\db\exception\DbException
  135. * @throws \think\db\exception\ModelNotFoundException
  136. */
  137. public static function getParent($pid)
  138. {
  139. static $count = 0;
  140. $auth = (new Auth())->where(['id' => $pid, 'type' => 1])->find();
  141. if ($auth) {
  142. $count += 1;
  143. if ($count < 3) {
  144. self::getParent($auth['pid']);
  145. }
  146. return $count;
  147. }
  148. return $count;
  149. }
  150. /**
  151. * Notes: 子级id
  152. * @param $lists
  153. * @param $id
  154. * @author 段誉(2021/4/12 16:39)
  155. * @return array
  156. */
  157. public static function getChildIds($lists, $id)
  158. {
  159. $ids = [];
  160. foreach ($lists as $key => $row) {
  161. if ($row['pid'] == $id) {
  162. $ids[] = $row['id'];
  163. $child_ids = self::getChildIds($lists, $row['id']);
  164. foreach ($child_ids as $child_id) {
  165. $ids[] = $child_id;
  166. }
  167. }
  168. }
  169. return $ids;
  170. }
  171. /**
  172. * Notes: 详情
  173. * @param $id
  174. * @author 段誉(2021/4/12 16:39)
  175. * @return array|\think\Model|null
  176. * @throws \think\db\exception\DataNotFoundException
  177. * @throws \think\db\exception\DbException
  178. * @throws \think\db\exception\ModelNotFoundException
  179. */
  180. public static function detail($id)
  181. {
  182. return Auth::where(['del' => 0, 'id' => $id])
  183. ->field(['id', 'pid', 'type', 'name', 'sort', 'icon', 'uri', 'disable'])
  184. ->find();
  185. }
  186. /**
  187. * Notes: 删除
  188. * @param $ids
  189. * @author 段誉(2021/4/12 16:39)
  190. * @return Auth
  191. * @throws \think\db\exception\DataNotFoundException
  192. * @throws \think\db\exception\DbException
  193. * @throws \think\db\exception\ModelNotFoundException
  194. */
  195. public static function delMenu($ids)
  196. {
  197. $lists = Auth::where(['del' => 0])
  198. ->field(['id', 'pid', 'name', 'sort', 'icon', 'disable'])
  199. ->select();
  200. $del_ids = $ids;
  201. foreach ($ids as $id) {
  202. $temp = self::getChildIds($lists, $id);
  203. $del_ids = array_merge($del_ids, $temp);
  204. }
  205. return Auth::where('id', 'in', $del_ids)
  206. ->where(['del' => 0, 'system' => 0])
  207. ->update(['del' => 1]);
  208. }
  209. /**
  210. * Notes: 设置状态
  211. * @param $post
  212. * @author 段誉(2021/4/12 16:39)
  213. * @return Auth
  214. */
  215. public static function setStatus($post)
  216. {
  217. $data = [
  218. 'disable' => $post['disable'],
  219. 'update_time' => time(),
  220. ];
  221. return Auth::where(['id' => $post['id'], 'system' => 0])
  222. ->update($data);
  223. }
  224. }