AdminBaseController.php
3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +---------------------------------------------------------------------
// | Author: 小夏 < 449134904@qq.com>
// +----------------------------------------------------------------------
namespace cmf\controller;
use think\Db;
class AdminBaseController extends BaseController
{
public function _initialize()
{
// 监听admin_init
hook('admin_init');
parent::_initialize();
$session_admin_id = session('ADMIN_ID');
if (!empty($session_admin_id)) {
$user = Db::name('user')->where(['id' => $session_admin_id])->find();
if (!$this->checkAccess($session_admin_id)) {
$this->error("您没有访问权限!");
}
$this->assign("admin", $user);
} else {
if ($this->request->isPost()) {
$this->error("您还没有登录!", url("admin/public/login"));
} else {
header("Location:" . url("admin/public/login"));
exit();
}
}
}
public function _initializeView()
{
$cmfAdminThemePath = config('cmf_admin_theme_path');
$cmfAdminDefaultTheme = cmf_get_current_admin_theme();
$themePath = "{$cmfAdminThemePath}{$cmfAdminDefaultTheme}";
$root = cmf_get_root();
//使cdn设置生效
$cdnSettings = cmf_get_option('cdn_settings');
if (empty($cdnSettings['cdn_static_root'])) {
$viewReplaceStr = [
'__ROOT__' => $root,
'__TMPL__' => "{$root}/{$themePath}",
'__STATIC__' => "{$root}/static",
'__WEB_ROOT__' => $root
];
} else {
$cdnStaticRoot = rtrim($cdnSettings['cdn_static_root'], '/');
$viewReplaceStr = [
'__ROOT__' => $root,
'__TMPL__' => "{$cdnStaticRoot}/{$themePath}",
'__STATIC__' => "{$cdnStaticRoot}/static",
'__WEB_ROOT__' => $cdnStaticRoot
];
}
$viewReplaceStr = array_merge(config('view_replace_str'), $viewReplaceStr);
config('template.view_base', "$themePath/");
config('view_replace_str', $viewReplaceStr);
}
/**
* 初始化后台菜单
*/
public function initMenu()
{
}
/**
* 检查后台用户访问权限
* @param int $userId 后台用户id
* @return boolean 检查通过返回true
*/
private function checkAccess($userId)
{
// 如果用户id是1,则无需判断
if ($userId == 1) {
return true;
}
$module = $this->request->module();
$controller = $this->request->controller();
$action = $this->request->action();
$rule = $module . $controller . $action;
$notRequire = ["adminIndexindex", "adminMainindex"];
if (!in_array($rule, $notRequire)) {
return cmf_auth_check($userId);
} else {
return true;
}
}
/*
* 长度处理
* */
public function changeLen($text){
$change_html = strip_tags(htmlspecialchars_decode($text));
$sub_text_first = mb_substr($change_html,0,10,'utf-8');
if(strlen($change_html) > 10){
$sub_text = $sub_text_first.'...';
}else{
$sub_text = $sub_text_first;
}
return $sub_text;
}
}