添加网站文件
This commit is contained in:
100
application/admin/server/AuthServer.php
Normal file
100
application/admin/server/AuthServer.php
Normal file
@@ -0,0 +1,100 @@
|
||||
<?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;
|
||||
|
||||
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 = Db::name('dev_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 Db::name('role_dev_auth_index')
|
||||
->where(['role_id' => $role_id])
|
||||
->column('menu_auth_id');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取系统所有权限
|
||||
* @return array
|
||||
*/
|
||||
private static function getAllAuth()
|
||||
{
|
||||
return Db::name('dev_auth')
|
||||
->where(['del' => 0, 'disable' => 0])
|
||||
->column('id');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户没有权限uri
|
||||
* @param $role_id
|
||||
* @return array
|
||||
*/
|
||||
public static function getRoleNoneAuthArr($role_id)
|
||||
{
|
||||
return Db::name('dev_auth')
|
||||
->where('id', 'in', self::getRoleNoneAuthIds($role_id))
|
||||
->column('uri');
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
51
application/admin/server/LoginServer.php
Normal file
51
application/admin/server/LoginServer.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?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 app\admin\cache\LoginStateCache;
|
||||
|
||||
class LoginServer
|
||||
{
|
||||
|
||||
public static function setState($admin_id, $login = true)
|
||||
{
|
||||
//登录标识,该标示消失,自动下线
|
||||
$login_ctrl = new LoginStateCache($admin_id);
|
||||
if ($login) {
|
||||
$login_ctrl->set();
|
||||
} else {
|
||||
$login_ctrl->del();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 判断是否登录中
|
||||
* @param $admin_id
|
||||
* @return bool
|
||||
*/
|
||||
public static function isLogin($admin_id)
|
||||
{
|
||||
$login_state = new LoginStateCache($admin_id);
|
||||
return $login_state->isEmpty() ? false : true;
|
||||
}
|
||||
|
||||
}
|
||||
145
application/admin/server/MenuServer.php
Normal file
145
application/admin/server/MenuServer.php
Normal file
@@ -0,0 +1,145 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user