TaoLer/app/common/controller/AdminController.php

97 lines
2.6 KiB
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
2022-08-02 20:48:54 +08:00
/*
* @Author: TaoLer <alipay_tao@qq.com>
* @Date: 2021-12-06 16:04:50
2022-08-02 21:13:36 +08:00
* @LastEditTime: 2022-05-17 11:15:46
2022-08-02 20:48:54 +08:00
* @LastEditors: TaoLer
2022-08-02 21:13:36 +08:00
* @Description: 后台控制器设置
2022-08-02 20:48:54 +08:00
* @FilePath: \TaoLer\app\common\controller\AdminController.php
* Copyright (c) 2020~2022 https://www.aieok.com All rights reserved.
*/
2020-01-01 13:17:19 +08:00
declare (strict_types = 1);
namespace app\common\controller;
use think\facade\Session;
use think\facade\View;
use think\facade\Db;
2020-02-12 17:20:07 +08:00
use taoser\think\Auth;
2020-03-05 20:15:01 +08:00
use taoler\com\Files;
2020-01-01 13:17:19 +08:00
/**
* 控制器基础类
*/
2021-07-16 17:42:07 +08:00
class AdminController extends \app\BaseController
2020-01-01 13:17:19 +08:00
{
2021-12-15 15:46:04 +08:00
/**
* 初始化菜单
*/
2020-01-01 13:17:19 +08:00
protected function initialize()
{
//权限auth检查
2021-12-15 15:46:04 +08:00
$this->aid = Session::get('admin_id');
//系统配置
$this->getIndexUrl();
2020-01-01 13:17:19 +08:00
}
/**
* 获取侧边栏菜单
*/
protected function getMenu()
{
$menu = [];
2022-04-17 17:09:19 +08:00
$admin_id = $this->aid;
2020-01-01 13:17:19 +08:00
$auth = new Auth();
2023-03-16 22:30:36 +08:00
$auth_rule_list = Db::name('auth_rule')->where(['status'=> 1, 'ismenu'=>1, 'delete_time'=> 0])->select();
2020-01-01 13:17:19 +08:00
foreach ($auth_rule_list as $value) {
if ($auth->check($value['name'], $admin_id) || $admin_id == 1) {
2022-04-17 17:09:19 +08:00
// 查询是否设置映射
// $map = array_search('admin',config('app.app_map'));
// //dump($map,$value);
// //stripos($value);
// if($map){
// $menu[] = strtr($value,'admin',$map);
// } else {
// $menu[] = $value;
// }
//dump($menu);
2020-01-01 13:17:19 +08:00
$menu[] = $value;
}
}
2022-11-25 22:44:04 +08:00
return !empty($menu) ? getTree($menu) : [];
2020-01-01 13:17:19 +08:00
}
/**
* 获取角色菜单
* $type 1 admin后端权限,2 index前端权限
2020-01-01 13:17:19 +08:00
*/
2021-10-12 16:55:44 +08:00
protected function getMenus($type)
2020-01-01 13:17:19 +08:00
{
$menu = [];
2022-11-18 10:31:44 +08:00
$auth_rule_list = Db::name('auth_rule')->where(['delete_time'=> 0, 'status'=> 1,'type'=> $type])->select();
2020-01-01 13:17:19 +08:00
//var_export($auth_rule_list);
foreach ($auth_rule_list as $value) {
$menu[] = $value;
}
2022-11-25 22:44:04 +08:00
return !empty($menu) ? getTree($menu) : [];
2020-01-01 13:17:19 +08:00
}
2020-03-05 20:15:01 +08:00
//清除缓存Cache
public function clearSysCache()
2021-07-16 17:42:07 +08:00
{
//清理缓存
$atemp = str_replace('\\',"/",app()->getRootPath().'runtime/admin/temp/');
$itemp = str_replace('\\',"/",app()->getRootPath().'runtime/index/temp/');
$cache = str_replace('\\',"/",app()->getRootPath().'runtime/cache/');
Files::delDirAndFile($atemp);
Files::delDirAndFile($itemp);
Files::delDirAndFile($cache);
return true;
2020-03-05 20:15:01 +08:00
}
2020-01-01 13:17:19 +08:00
}