其余文件

This commit is contained in:
2026-04-14 17:46:22 +08:00
parent 294b68fe37
commit 3691f4db22
1343 changed files with 189847 additions and 0 deletions

View File

@ -0,0 +1,101 @@
<?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\server;
use app\common\model\Auth;
use app\common\model\RoleAuthIndex;
class AuthServer
{
/**
* 获取角色没有的权限id
* @param int $role_id
* @return array
*/
public static function getRoleNoneAuthIds($role_id)
{
if ($role_id == 0) {
return [];
}
$role_auth = self::getRoleAuth($role_id);
$all_auth = self::getAllAuth();
return array_diff($all_auth, $role_auth);
}
/**
* 获取角色没有的uri
* @param $role_id
*/
public static function getRoleNoneAuthUris($role_id)
{
$ids = self::getRoleNoneAuthIds($role_id);
$result = (new Auth())
->where('id', 'in', $ids)
->column('uri');
$data = [];
foreach ($result as $k => $v) {
if (empty($v)) {
continue;
}
$data[] = strtolower($v);
}
return $data;
}
/**
* 获取角色权限
* @param $role_id
* @return array
*/
private static function getRoleAuth($role_id)
{
return (new RoleAuthIndex())
->where(['role_id' => $role_id])
->column('menu_auth_id');
}
/**
* 获取系统所有权限
* @return array
*/
private static function getAllAuth()
{
return (new Auth())
->where(['del' => 0, 'disable' => 0])
->column('id');
}
/**
* 获取用户没有权限uri
* @param $role_id
* @return array
*/
public static function getRoleNoneAuthArr($role_id)
{
return (new Auth())
->where('id', 'in', self::getRoleNoneAuthIds($role_id))
->column('uri');
}
}

View File

@ -0,0 +1,127 @@
<?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\server;
use app\common\model\Auth;
use app\common\server\ArrayServer;
class MenuServer
{
/**
* 获取菜单树
* @param $role_id (角色ID)
* @return array
*/
public static function getMenuTree($role_id)
{
try {
// 获取所有菜单
$lists = (new Auth())
->where(['type' => 1, 'del' => 0, 'disable' => 0])
->order(['sort' => 'desc'])
->withAttr('uri', function ($value) {
return self::uri($value);
})->select()->toArray();
// 处理返回数据
$none_auth = AuthServer::getRoleNoneAuthIds($role_id);
$lists = self::setRoleMenu($none_auth, $lists);
return ArrayServer::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)
{
return $uri;
// if ($uri) {
// return Route::buildUrl($uri);
// }
// return '';
}
/**
* 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;
}
}