截流自动化的商城平台
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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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\shop;
  20. use app\common\basics\Logic;
  21. use app\common\model\shop\ShopAuth;
  22. use app\common\server\ArrayServer;
  23. /**
  24. * 商家菜单逻辑
  25. * Class AuthLogic
  26. * @package app\admin\logic\shop
  27. */
  28. class AuthLogic extends Logic
  29. {
  30. /**
  31. * Notes: 列表
  32. * @author 段誉(2021/4/12 16:38)
  33. * @return array
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public static function lists()
  39. {
  40. $authModel = new ShopAuth();
  41. $lists = $authModel
  42. ->where(['del' => 0])
  43. ->field(['id', 'type', 'system', 'pid', 'name', 'sort', 'icon', 'uri', 'disable'])
  44. ->order(['sort' => 'desc', 'type' => 'asc'])
  45. ->select()->toArray();
  46. $pids = $authModel
  47. ->where(['del'=>0,'type'=>1])
  48. ->column('pid');
  49. foreach ($lists as $k => $v) {
  50. $lists[$k]['type_str'] = $v['type'] == 1 ? '菜单' : '权限';
  51. $lists[$k]['open'] = in_array($v['id'],$pids) ? true : false;
  52. }
  53. return ArrayServer::linear_to_tree($lists);
  54. }
  55. /**
  56. * Notes: 添加
  57. * @param $post
  58. * @author 段誉(2021/4/12 16:38)
  59. * @return int|string
  60. */
  61. public static function addMenu($post)
  62. {
  63. $level = self::getParent($post['pid']);
  64. if ($level > 3) {
  65. self::$error = '菜单不允许超出三级';
  66. return false;
  67. }
  68. $data = [
  69. 'pid' => $post['pid'],
  70. 'type' => $post['type'],
  71. 'name' => $post['name'],
  72. 'icon' => $post['icon'],
  73. 'sort' => $post['sort'],
  74. 'uri' => $post['uri'],
  75. 'disable' => $post['disable'],
  76. ];
  77. return (new ShopAuth())->insert($data);
  78. }
  79. /**
  80. * Notes: 修改
  81. * @param $post
  82. * @author 段誉(2021/4/12 16:38)
  83. * @return Auth|string
  84. */
  85. public static function editMenu($post)
  86. {
  87. $level = self::getParent($post['pid']);
  88. if ($level > 3) {
  89. self::$error = '菜单不允许超出三级';
  90. return false;
  91. }
  92. $data = [
  93. 'pid' => $post['pid'],
  94. 'type' => $post['type'],
  95. 'name' => $post['name'],
  96. 'icon' => $post['icon'],
  97. 'sort' => $post['sort'],
  98. 'uri' => $post['uri'],
  99. 'disable' => $post['disable'],
  100. ];
  101. return ShopAuth::where(['id' => $post['id'], 'system' => 0])->update($data);
  102. }
  103. /**
  104. * Notes: 菜单选项
  105. * @param string $id
  106. * @author 段誉(2021/4/12 16:38)
  107. * @return array
  108. * @throws \think\db\exception\DataNotFoundException
  109. * @throws \think\db\exception\DbException
  110. * @throws \think\db\exception\ModelNotFoundException
  111. */
  112. public static function chooseMenu($id = '')
  113. {
  114. $authModel = new ShopAuth();
  115. $lists = $authModel
  116. ->field(['id', 'pid', 'name'])
  117. ->where(['del' => 0, 'type' => 1])
  118. ->select();
  119. if ($id) {
  120. $remove_ids = self::getChildIds($lists, $id);
  121. $remove_ids[] = $id;
  122. foreach ($lists as $key => $row) {
  123. if (in_array($row['id'], $remove_ids)) {
  124. unset($lists[$key]);
  125. }
  126. }
  127. $lists = array_values($lists);
  128. }
  129. return ArrayServer::multilevel_linear_sort($lists, '|-');
  130. }
  131. /**
  132. * Notes: 查找层级
  133. * @param $pid
  134. * @author 段誉(2021/4/12 16:38)
  135. * @return int
  136. * @throws \think\db\exception\DataNotFoundException
  137. * @throws \think\db\exception\DbException
  138. * @throws \think\db\exception\ModelNotFoundException
  139. */
  140. public static function getParent($pid)
  141. {
  142. static $count = 0;
  143. $auth = (new ShopAuth())->where(['id' => $pid, 'type' => 1])->find();
  144. if ($auth) {
  145. $count += 1;
  146. if ($count < 3) {
  147. self::getParent($auth['pid']);
  148. }
  149. return $count;
  150. }
  151. return $count;
  152. }
  153. /**
  154. * Notes: 子级id
  155. * @param $lists
  156. * @param $id
  157. * @author 段誉(2021/4/12 16:39)
  158. * @return array
  159. */
  160. public static function getChildIds($lists, $id)
  161. {
  162. $ids = [];
  163. foreach ($lists as $key => $row) {
  164. if ($row['pid'] == $id) {
  165. $ids[] = $row['id'];
  166. $child_ids = self::getChildIds($lists, $row['id']);
  167. foreach ($child_ids as $child_id) {
  168. $ids[] = $child_id;
  169. }
  170. }
  171. }
  172. return $ids;
  173. }
  174. /**
  175. * Notes: 详情
  176. * @param $id
  177. * @author 段誉(2021/4/12 16:39)
  178. * @return array|\think\Model|null
  179. * @throws \think\db\exception\DataNotFoundException
  180. * @throws \think\db\exception\DbException
  181. * @throws \think\db\exception\ModelNotFoundException
  182. */
  183. public static function detail($id)
  184. {
  185. return ShopAuth::where(['del' => 0, 'id' => $id])
  186. ->field(['id', 'pid', 'type', 'name', 'sort', 'icon', 'uri', 'disable'])
  187. ->find();
  188. }
  189. /**
  190. * Notes: 删除
  191. * @param $ids
  192. * @author 段誉(2021/4/12 16:39)
  193. * @return Auth
  194. * @throws \think\db\exception\DataNotFoundException
  195. * @throws \think\db\exception\DbException
  196. * @throws \think\db\exception\ModelNotFoundException
  197. */
  198. public static function delMenu($ids)
  199. {
  200. $lists = ShopAuth::where(['del' => 0])
  201. ->field(['id', 'pid', 'name', 'sort', 'icon', 'disable'])
  202. ->select();
  203. $del_ids = $ids;
  204. foreach ($ids as $id) {
  205. $temp = self::getChildIds($lists, $id);
  206. $del_ids = array_merge($del_ids, $temp);
  207. }
  208. ShopAuth::where('id', 'in', $del_ids)
  209. ->where(['del' => 0, 'system' => 0])
  210. ->update(['del' => 1]);
  211. }
  212. /**
  213. * Notes: 设置状态
  214. * @param $post
  215. * @author 段誉(2021/4/12 16:39)
  216. * @return Auth
  217. */
  218. public static function setStatus($post)
  219. {
  220. $data = [
  221. 'disable' => $post['disable'],
  222. 'update_time' => time(),
  223. ];
  224. return ShopAuth::where(['id' => $post['id'], 'system' => 0])
  225. ->update($data);
  226. }
  227. }