mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 04:52:50 +00:00
150 lines
5.1 KiB
PHP
150 lines
5.1 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2017/11/02
|
|
*/
|
|
namespace app\admin\model\system;
|
|
|
|
use traits\ModelTrait;
|
|
use basic\ModelBasic;
|
|
use think\Url;
|
|
|
|
/**
|
|
* 菜单 model
|
|
* Class SystemMenus
|
|
* @package app\admin\model\system
|
|
*/
|
|
class SystemMenus extends ModelBasic
|
|
{
|
|
use ModelTrait;
|
|
|
|
public static $isShowStatus = [1=>'显示',0=>'不显示'];
|
|
|
|
public static $accessStatus = [1=>'管理员可用',0=>'管理员不可用'];
|
|
|
|
public static function legalWhere($where = [])
|
|
{
|
|
$where['is_show'] = 1;
|
|
}
|
|
|
|
public function setParamsAttr($value)
|
|
{
|
|
$value = $value ? explode('/',$value) : [];
|
|
$params = array_chunk($value,2);
|
|
$data = [];
|
|
foreach ($params as $param){
|
|
if(isset($param[0]) && isset($param[1])) $data[$param[0]] = $param[1];
|
|
}
|
|
return json_encode($data);
|
|
}
|
|
|
|
protected function setControllerAttr($value)
|
|
{
|
|
return lcfirst($value);
|
|
}
|
|
|
|
public function getParamsAttr($_value)
|
|
{
|
|
return json_decode($_value,true);
|
|
}
|
|
|
|
public function getPidAttr($value)
|
|
{
|
|
return !$value ? '顶级' : self::get($value)['menu_name'];
|
|
}
|
|
|
|
public static function getParentMenu($field='*',$filter=false)
|
|
{
|
|
$where = ['pid'=>0];
|
|
$query = self::field($field);
|
|
$query = $filter ? $query->where(self::legalWhere($where)) : $query->where($where);
|
|
return $query->order('sort DESC')->select();
|
|
}
|
|
|
|
public static function menuList()
|
|
{
|
|
$menusList = self::where('is_show','1')->where('access','1')->order('sort DESC')->select();
|
|
return self::tidyMenuTier(true,$menusList);
|
|
}
|
|
|
|
public static function ruleList()
|
|
{
|
|
$ruleList = self::order('sort DESC')->select();
|
|
return self::tidyMenuTier(false,$ruleList);
|
|
}
|
|
|
|
public static function rolesByRuleList($rules)
|
|
{
|
|
$res = SystemRole::where('id','IN',$rules)->field('GROUP_CONCAT(rules) as ids')->find();
|
|
$ruleList = self::where('id','IN',$res['ids'])->whereOr('pid',0)->order('sort DESC')->select();
|
|
return self::tidyMenuTier(false,$ruleList);
|
|
}
|
|
|
|
public static function getAuthName($action,$controller,$module,$route)
|
|
{
|
|
return strtolower($module.'/'.$controller.'/'.$action.'/'.SystemMenus::paramStr($route));
|
|
}
|
|
|
|
public static function tidyMenuTier($adminFilter = false,$menusList,$pid = 0,$navList = [])
|
|
{
|
|
static $allAuth = null;
|
|
static $adminAuth = null;
|
|
if($allAuth === null) $allAuth = $adminFilter == true ? SystemRole::getAllAuth() : [];//所有的菜单
|
|
if($adminAuth === null) $adminAuth = $adminFilter == true ? SystemAdmin::activeAdminAuthOrFail() : [];//当前登录用户的菜单
|
|
foreach ($menusList as $k=>$menu){
|
|
$menu = $menu->getData();
|
|
if($menu['pid'] == $pid){
|
|
unset($menusList[$k]);
|
|
$params = json_decode($menu['params'],true);//获取参数
|
|
$authName = self::getAuthName($menu['action'],$menu['controller'],$menu['module'],$params);// 按钮链接
|
|
if($pid != 0 && $adminFilter && in_array($authName,$allAuth) && !in_array($authName,$adminAuth)) continue;
|
|
$menu['child'] = self::tidyMenuTier($adminFilter,$menusList,$menu['id']);
|
|
if($pid != 0 && !count($menu['child']) && !$menu['controller'] && !$menu['action']) continue;
|
|
$menu['url'] = !count($menu['child']) ? Url::build($menu['module'].'/'.$menu['controller'].'/'.$menu['action'],$params) : 'javascript:void(0);';
|
|
if($pid == 0 && !count($menu['child'])) continue;
|
|
$navList[] = $menu;
|
|
}
|
|
}
|
|
return $navList;
|
|
}
|
|
|
|
public static function delMenu($id)
|
|
{
|
|
if(self::where('pid',$id)->count())
|
|
return self::setErrorInfo('请先删除改菜单下的子菜单!');
|
|
return self::del($id);
|
|
}
|
|
|
|
public static function getAdminPage($params)
|
|
{
|
|
$model = new self;
|
|
if($params['is_show'] !== '') $model = $model->where('is_show',$params['is_show']);
|
|
// if($params['access'] !== '') $model = $model->where('access',$params['access']);//子管理员是否可用
|
|
if($params['pid'] !== ''&& !$params['keyword'] ) $model = $model->where('pid',$params['pid']);
|
|
if($params['keyword'] !== '') $model = $model->where('menu_name|id|pid','LIKE',"%$params[keyword]%");
|
|
$model = $model->order('sort DESC,id DESC');
|
|
return self::page($model,$params);
|
|
}
|
|
|
|
public static function paramStr($params)
|
|
{
|
|
if(!is_array($params)) $params = json_decode($params,true)?:[];
|
|
$p = [];
|
|
foreach ($params as $key => $param){
|
|
$p[] = $key;
|
|
$p[] = $param;
|
|
}
|
|
return implode('/',$p);
|
|
}
|
|
|
|
public static function getVisitName($action,$controller,$module,array $route = [])
|
|
{
|
|
$params = json_encode($route);
|
|
return self::where('action',$action)
|
|
->where('controller',lcfirst($controller))
|
|
->where('module',lcfirst($module))
|
|
->where('params',['=',$params],['=','[]'],'or')->order('id DESC')->value('menu_name');
|
|
}
|
|
|
|
} |