TaoLer/app/common/controller/AdminController.php

184 lines
5.3 KiB
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
declare (strict_types = 1);
namespace app\common\controller;
use think\facade\Session;
use think\facade\View;
use think\facade\Db;
use think\facade\Request;
2020-02-12 17:20:07 +08:00
use taoser\think\Auth;
2020-03-05 20:15:01 +08:00
use taoler\com\Files;
2021-07-16 17:42:07 +08:00
use think\facade\Lang;
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');
2020-01-01 13:17:19 +08:00
//$this->checkAuth();
$this->getMenu();
//系统配置
$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();
2022-04-17 17:09:19 +08:00
$auth_rule_list = Db::name('auth_rule')->where('delete_time',0)->where(['status'=> 1,'ishidden'=>1])->order(['sort' => 'asc'])->select();
2020-01-01 13:17:19 +08:00
//var_export($auth_rule_list);
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;
}
}
$menu = !empty($menu) ? array2tree($menu) : [];
2021-12-15 15:46:04 +08:00
View::assign('menu', $menu);
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-04-17 17:09:19 +08:00
$auth_rule_list = Db::name('auth_rule')->where('delete_time',0)->where(['status'=> 1])->where('type',$type)->order(['sort' => 'ASC', 'id' => 'ASC'])->select();
2020-01-01 13:17:19 +08:00
//var_export($auth_rule_list);
foreach ($auth_rule_list as $value) {
$menu[] = $value;
}
$menus = !empty($menu) ? array2tree($menu) : [];
//$menu2 = getTree($menu);
return $menus;
//return View::assign('menus', $menus);
}
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
}
//显示网站设置
protected function getSystem()
{
//1.系统配置信息
return Db::name('system')->cache('system',3600)->find(1);
}
//域名协议转换 把数据库中的带HTTP或不带协议的域名转换为当前协议的域名前缀
protected function getHttpUrl($url)
{
//域名转换为无http协议
$www = stripos($url,'://') ? substr(stristr($url,'://'),3) : $url;
$htpw = Request::scheme().'://'. $www;
return $htpw;
}
//得到当前系统安装前台域名
protected function getIndexUrl()
{
2021-07-16 17:42:07 +08:00
$sys = $this->getSystem();
$domain = $this->getHttpUrl($sys['domain']);
$syscy = $sys['clevel'] ? Lang::get('Authorized') : Lang::get('Free version');
$runTime = $this->getRunTime();
View::assign(['domain'=>$domain,'insurl'=>$sys['domain'],'syscy'=>$syscy,'clevel'=>$sys['clevel'],'runTime'=>$runTime]);
2022-04-17 17:09:19 +08:00
return $domain;
}
2021-07-16 17:42:07 +08:00
protected function getRunTime()
{
//运行时间
$now = time();
$sys = $this->getSystem();
$count = $now-$sys['create_time'];
$days = floor($count/86400);
$hos = floor(($count%86400)/3600);
$mins = floor(($count%3600)/60);
$years = floor($days/365);
if($years >= 1){
$days = floor($days%365);
}
$runTime = $years ? "{$years}{$days}{$hos}{$mins}" : "{$days}{$hos}{$mins}";
return $runTime;
}
2022-08-02 18:46:05 +08:00
/**
* 获取文章链接地址
*
* @param integer $aid
* @return string
*/
protected function getRouteUrl(int $aid) : string
{
$indexUrl = $this->getIndexUrl();
$artUrl = (string) url('detail_id', ['id' => $aid]);
// 判断是否开启绑定
//$domain_bind = array_key_exists('domain_bind',config('app'));
// 判断index应用是否绑定域名
$bind_index = array_search('index',config('app.domain_bind'));
// 判断admin应用是否绑定域名
$bind_admin = array_search('admin',config('app.domain_bind'));
// 判断index应用是否域名映射
$map_index = array_search('index',config('app.app_map'));
// 判断admin应用是否域名映射
$map_admin = array_search('admin',config('app.app_map'));
$index = $map_index ? $map_index : 'index'; // index应用名
$admin = $map_admin ? $map_admin : 'admin'; // admin应用名
if($bind_index) {
// index绑定域名
$url = $indexUrl . str_replace($admin.'/','',$artUrl);
} else { // index未绑定域名
// admin绑定域名
if($bind_admin) {
$url = $indexUrl .'/' . $index . $artUrl;
} else {
$url = $indexUrl . str_replace($admin,$index,$artUrl);
}
}
return $url;
}
2020-01-01 13:17:19 +08:00
}