Files
duolamaojiazhen/application/admin/server/MenuServer.php
2025-12-22 13:59:40 +08:00

145 lines
4.7 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | likeshop100%开源免费商用商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | 商业版本务必购买商业授权,以免引起法律纠纷
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | 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团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshopTeam
// +----------------------------------------------------------------------
namespace app\admin\server;
use think\Db;
use think\facade\Cache;
use think\facade\Url;
class MenuServer
{
/**
* 获取菜单树
* @param $role_id (角色ID)
* @return array
*/
public static function getMenuTree($role_id)
{
try {
// 获取所有菜单
$lists = Db::name('dev_auth')
->where(['type' => 1, 'del' => 0, 'disable' => 0])
->order(['sort' => 'desc'])
->withAttr('uri', function ($value) {
return self::uri($value);
})->select();
// 处理返回数据
$none_auth = AuthServer::getRoleNoneAuthIds($role_id);
$lists = self::setRoleMenu($none_auth, $lists);
return linear_to_tree($lists);
} catch (\Exception $e) {
return [];
}
}
/**
* 设置角色菜单
* @param $none_auth
* @param $lists
* @return mixed
*/
private static function setRoleMenu(&$none_auth, $lists)
{
foreach ($lists as $k => $v) {
if (in_array($v['id'], $none_auth)) {
unset($lists[$k]);
}
}
return array_values($lists);
}
/**
* 设置uri
* @param $uri
* @return string
*/
private static function uri($uri)
{
if ($uri) {
return Url::build($uri);
}
return '';
}
/**
* 判断菜单配置是否更改
* @param $menu
* @param $role_id
* @return bool
*/
public static function menuIsUpdate($menu, $role_id)
{
$new_meu_md5 = md5($menu);
$menu_md5 = Cache::get('menu_md5_role_id' . $role_id);
if ($menu_md5 == $new_meu_md5) {
return false;
}
Cache::set('menu_md5', $new_meu_md5);
return true;
}
/**
* Notes: 创建菜单
* @param $menu
* @param bool $max
* @author 张无忌(2021/2/3 9:53)
* @return string
*/
protected static function createHtml($menu, $max = false)
{
//一级菜单
if ($max) {
$html = '';
$choose_class = 'layui-this';
foreach ($menu as $k => $v) {
$sub = isset($v['sub']) ? $v['sub'] : [];
if ($sub) {
$html .= '<li data-name="set" class="layui-nav-item"><a href="javascript:;" lay-tips="' . $v['name'] . '" lay-direction="2"><i class="layui-icon ' . $v['icon'] . '"></i><cite>' . $v['name'] . '</cite></a><dl class="layui-nav-child">';
$html .= self::createHtml($sub);
$html .= '</li>';
} else {
$html .= '<li data-name="set" class="layui-nav-item ' . $choose_class . '"><a href="javascript:;" lay-href="' . self::uri($v['uri']) . '" lay-tips="' . $v['name'] . '" lay-direction="2"><i class="layui-icon ' . $v['icon'] . '"></i><cite>' . $v['name'] . '</cite></a>';
$html .= '</dl></li>';
}
$choose_class = '';
}
return $html;
}
//二三级菜单无子菜单
$html = '';
foreach ($menu as $k => $v) {
$sub = isset($v['sub']) ? $v['sub'] : [];
if ($sub) {
$html .= '<dd class="layui-nav-itemed"><a href="javascript:;">' . $v['name'] . '<i class="layui-icon ' . $v['icon'] . '"></i></a><dl class="layui-nav-child">';
$html .= self::createHtml($sub);
$html .= '</dl></dd>';
} else {
$html .= '<dd><a href="javascript:;" lay-href="' . self::uri($v['uri']) . '"><i class="layui-icon ' . $v['icon'] . '"></i>' . $v['name'] . '</a></dd>';
}
}
return $html;
}
}