123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
-
-
- namespace app\admin\logic;
-
-
- use app\common\basics\Logic;
- use app\common\model\Auth;
- use app\common\server\ArrayServer;
-
- class AuthLogic extends Logic
- {
-
- /**
- * Notes: 列表
- * @author 段誉(2021/4/12 16:38)
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function lists()
- {
- $authModel = new Auth();
- $lists = $authModel
- ->where(['del' => 0])
- ->field(['id', 'type', 'system', 'pid', 'name', 'sort', 'icon', 'uri', 'disable'])
- ->order(['sort' => 'desc', 'type' => 'asc'])
- ->select()->toArray();
- $pids = $authModel
- ->where(['del'=>0,'type'=>1])
- ->column('pid');
-
- foreach ($lists as $k => $v) {
- $lists[$k]['type_str'] = $v['type'] == 1 ? '菜单' : '权限';
- $lists[$k]['open'] = in_array($v['id'],$pids) ? true : false;
- }
-
- return ArrayServer::linear_to_tree($lists);
- }
-
-
- /**
- * Notes: 添加
- * @param $post
- * @author 段誉(2021/4/12 16:38)
- * @return int|string
- */
- public static function addMenu($post)
- {
- $level = self::getParent($post['pid']);
- if ($level > 3) {
- self::$error = '菜单不允许超出三级';
- return false;
- }
-
- $data = [
- 'pid' => $post['pid'],
- 'type' => $post['type'],
- 'name' => $post['name'],
- 'icon' => $post['icon'],
- 'sort' => $post['sort'],
- 'uri' => $post['uri'],
- 'disable' => $post['disable'],
- ];
- return (new Auth())->insert($data);
- }
-
-
- /**
- * Notes: 修改
- * @param $post
- * @author 段誉(2021/4/12 16:38)
- * @return Auth|string
- */
- public static function editMenu($post)
- {
- $level = self::getParent($post['pid']);
- if ($level > 3) {
- self::$error = '菜单不允许超出三级';
- return false;
- }
-
- $data = [
- 'pid' => $post['pid'],
- 'type' => $post['type'],
- 'name' => $post['name'],
- 'icon' => $post['icon'],
- 'sort' => $post['sort'],
- 'uri' => $post['uri'],
- 'disable' => $post['disable'],
- 'update_time' => time(),
- ];
- return Auth::where(['id' => $post['id'], 'system' => 0])
- ->update($data);
- }
-
-
-
-
-
- /**
- * Notes: 菜单选项
- * @param string $id
- * @author 段誉(2021/4/12 16:38)
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function chooseMenu($id = '')
- {
- $authModel = new Auth();
- $lists = $authModel
- ->field(['id', 'pid', 'name'])
- ->where(['del' => 0, 'type' => 1])
- ->select();
- if ($id) {
- $remove_ids = self::getChildIds($lists, $id);
- $remove_ids[] = $id;
- foreach ($lists as $key => $row) {
- if (in_array($row['id'], $remove_ids)) {
- unset($lists[$key]);
- }
- }
- $lists = array_values($lists);
- }
- return ArrayServer::multilevel_linear_sort($lists, '|-');
- }
-
-
-
- /**
- * Notes: 查找层级
- * @param $pid
- * @author 段誉(2021/4/12 16:38)
- * @return int
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function getParent($pid)
- {
- static $count = 0;
- $auth = (new Auth())->where(['id' => $pid, 'type' => 1])->find();
- if ($auth) {
- $count += 1;
- if ($count < 3) {
- self::getParent($auth['pid']);
- }
- return $count;
- }
- return $count;
- }
-
-
- /**
- * Notes: 子级id
- * @param $lists
- * @param $id
- * @author 段誉(2021/4/12 16:39)
- * @return array
- */
- public static function getChildIds($lists, $id)
- {
- $ids = [];
- foreach ($lists as $key => $row) {
- if ($row['pid'] == $id) {
- $ids[] = $row['id'];
- $child_ids = self::getChildIds($lists, $row['id']);
- foreach ($child_ids as $child_id) {
- $ids[] = $child_id;
- }
- }
- }
- return $ids;
- }
-
-
- /**
- * Notes: 详情
- * @param $id
- * @author 段誉(2021/4/12 16:39)
- * @return array|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function detail($id)
- {
- return Auth::where(['del' => 0, 'id' => $id])
- ->field(['id', 'pid', 'type', 'name', 'sort', 'icon', 'uri', 'disable'])
- ->find();
- }
-
-
- /**
- * Notes: 删除
- * @param $ids
- * @author 段誉(2021/4/12 16:39)
- * @return Auth
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function delMenu($ids)
- {
- $lists = Auth::where(['del' => 0])
- ->field(['id', 'pid', 'name', 'sort', 'icon', 'disable'])
- ->select();
-
- $del_ids = $ids;
- foreach ($ids as $id) {
- $temp = self::getChildIds($lists, $id);
- $del_ids = array_merge($del_ids, $temp);
- }
-
- return Auth::where('id', 'in', $del_ids)
- ->where(['del' => 0, 'system' => 0])
- ->update(['del' => 1]);
- }
-
-
- /**
- * Notes: 设置状态
- * @param $post
- * @author 段誉(2021/4/12 16:39)
- * @return Auth
- */
- public static function setStatus($post)
- {
- $data = [
- 'disable' => $post['disable'],
- 'update_time' => time(),
- ];
- return Auth::where(['id' => $post['id'], 'system' => 0])
- ->update($data);
- }
-
- }
|