添加网站文件
This commit is contained in:
333
application/admin/logic/AuthLogic.php
Normal file
333
application/admin/logic/AuthLogic.php
Normal file
@@ -0,0 +1,333 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace app\admin\logic;
|
||||
|
||||
|
||||
use think\Db;
|
||||
|
||||
class AuthLogic
|
||||
{
|
||||
|
||||
/**
|
||||
* 获取菜单列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function lists()
|
||||
{
|
||||
$lists = Db::name('dev_auth')
|
||||
->where(['del' => 0])
|
||||
->field(['id', 'type', 'system', 'pid', 'name', 'sort', 'icon', 'uri', 'disable'])
|
||||
->order(['sort' => 'desc', 'type' => 'asc'])
|
||||
->select();
|
||||
$pids = Db::name('dev_auth')
|
||||
->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 linear_to_tree($lists);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取菜单信息
|
||||
* @param $id
|
||||
* @return array|\PDOStatement|string|\think\Model|null
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function info($id)
|
||||
{
|
||||
return Db::name('dev_auth')
|
||||
->where(['del' => 0, 'id' => $id])
|
||||
->field(['id', 'pid', 'type', 'name', 'sort', 'icon', 'uri', 'disable'])
|
||||
->find();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取菜单选项
|
||||
* @param string $id 当前编辑菜单id(选项不包含该菜单的子菜单)
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function chooseMenu($id = '')
|
||||
{
|
||||
$lists = Db::name('dev_auth')
|
||||
->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 multilevel_linear_sort($lists, '|-');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取子类id
|
||||
* @param $lists
|
||||
* @param $id
|
||||
* @return array
|
||||
*/
|
||||
private 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加菜单
|
||||
* @param $post
|
||||
* @return int|string
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function addMenu($post)
|
||||
{
|
||||
if ($post['type'] == 1) {
|
||||
$level = self::getParent($post['pid']);
|
||||
if ($level >= 3) {
|
||||
return '菜单不允许超出三级';
|
||||
}
|
||||
}
|
||||
|
||||
$data = [
|
||||
'pid' => $post['pid'],
|
||||
'type' => $post['type'],
|
||||
'name' => $post['name'],
|
||||
'icon' => $post['icon'],
|
||||
'sort' => $post['sort'],
|
||||
'uri' => $post['uri'],
|
||||
'disable' => $post['disable'],
|
||||
'create_time' => time(),
|
||||
];
|
||||
return Db::name('dev_auth')->insert($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 查找层级
|
||||
* @param $pid
|
||||
* @author 张无忌(2021/2/6 11:08)
|
||||
* @return int
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function getParent($pid)
|
||||
{
|
||||
static $count = 0;
|
||||
$auth = Db::name('dev_auth')->where(['id' => $pid])->find();
|
||||
if ($auth) {
|
||||
$count += 1;
|
||||
if ($count < 3) {
|
||||
self::getParent($auth['pid']);
|
||||
}
|
||||
return $count;
|
||||
}
|
||||
return $count;
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新菜单
|
||||
* @param $post
|
||||
* @return int|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function updateMenu($post)
|
||||
{
|
||||
if ($post['type'] == 1) {
|
||||
$level = self::getParent($post['pid']);
|
||||
if ($level >= 3) {
|
||||
return '菜单不允许超出三级';
|
||||
}
|
||||
}
|
||||
|
||||
$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 Db::name('dev_auth')
|
||||
->where(['id' => $post['id'], 'system' => 0])
|
||||
->update($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置菜单状态
|
||||
* @param $post
|
||||
* @return int|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function setStatus($post)
|
||||
{
|
||||
$data = [
|
||||
'disable' => $post['disable'],
|
||||
'update_time' => time(),
|
||||
];
|
||||
return Db::name('dev_auth')
|
||||
->where(['id' => $post['id'], 'system' => 0])
|
||||
->update($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除菜单
|
||||
* @param $ids
|
||||
* @return int|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function delMenu($ids)
|
||||
{
|
||||
$lists = Db::name('dev_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 Db::name('dev_auth')
|
||||
->where('id', 'in', $del_ids)
|
||||
->where(['del' => 0, 'system' => 0])
|
||||
->update(['del' => 1]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取到员工的权限
|
||||
* @param $ids
|
||||
* @return int|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function stafflists(){
|
||||
$lists = Db::name('dev_staffauth')
|
||||
->where(['del' => 0])
|
||||
|
||||
->order(['sort' => 'desc', 'type' => 'asc'])
|
||||
->select();
|
||||
$pids = Db::name('dev_staffauth')
|
||||
->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 linear_to_tree($lists);
|
||||
}
|
||||
/**
|
||||
* 获取菜单选项
|
||||
* @param string $id 当前编辑菜单id(选项不包含该菜单的子菜单)
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function staffchooseMenu($id = '')
|
||||
{
|
||||
$lists = Db::name('dev_staffauth')
|
||||
->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 multilevel_linear_sort($lists, '|-');
|
||||
}
|
||||
/**
|
||||
* 创建功能
|
||||
* @param string $id 当前编辑菜单id(选项不包含该菜单的子菜单)
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
|
||||
public static function add_staffauth($post){
|
||||
$data = [
|
||||
'pid' => $post['pid'],
|
||||
'type' => $post['type'],
|
||||
'name' => $post['name'],
|
||||
'icon' => $post['icon'],
|
||||
'sort' => $post['sort'],
|
||||
'url' => $post['uri'],
|
||||
'disable' => $post['disable'],
|
||||
'update_time' => time(),
|
||||
'create_time' =>time()
|
||||
];
|
||||
return Db::name('dev_staffauth') ->insert($data);
|
||||
}
|
||||
/**
|
||||
* 获取权限id
|
||||
* @param string $id 当前编辑菜单id(选项不包含该菜单的子菜单)
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function staffauthinfo($id){
|
||||
return Db::name('dev_staffauth')
|
||||
->where(['del' => 0, 'id' => $id])
|
||||
->find();
|
||||
}
|
||||
/**
|
||||
* 编辑权限功能
|
||||
* @param string $id 当前编辑菜单id(选项不包含该菜单的子菜单)
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
*/
|
||||
public static function edit_staffauth($post){
|
||||
$data = [
|
||||
'pid' => $post['pid'],
|
||||
'type' => $post['type'],
|
||||
'name' => $post['name'],
|
||||
'icon' => $post['icon'],
|
||||
'sort' => $post['sort'],
|
||||
'url' => $post['url'],
|
||||
'disable' => $post['disable'],
|
||||
'update_time' => time(),
|
||||
];
|
||||
return Db::name('dev_staffauth')
|
||||
->where(['id' => $post['id']])
|
||||
->update($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user