SettingController.php
7.5 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?php
// +----------------------------------------------------------------------
// | bronet [ 以客户为中心 以奋斗者为本 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.bronet.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 小夏 < 449134904@qq.com>
// +----------------------------------------------------------------------
namespace app\admin\controller;
use app\admin\model\RouteModel;
use cmf\controller\AdminBaseController;
use think\Db;
/**
* Class SettingController
* @package app\admin\controller
* @adminMenuRoot(
* 'name' =>'设置',
* 'action' =>'default',
* 'parent' =>'',
* 'display'=> true,
* 'order' => 0,
* 'icon' =>'cogs',
* 'remark' =>'系统设置入口'
* )
*/
class SettingController extends AdminBaseController
{
/**
* 网站信息
* @adminMenu(
* 'name' => '网站信息',
* 'parent' => 'default',
* 'display'=> true,
* 'hasView'=> true,
* 'order' => 0,
* 'icon' => '',
* 'remark' => '网站信息',
* 'param' => ''
* )
*/
public function site()
{
$noNeedDirs = [".", "..", ".svn", 'fonts'];
$adminThemesDir = config('cmf_admin_theme_path') . config('cmf_admin_default_theme') . '/public/assets/themes/';
$adminStyles = cmf_scan_dir($adminThemesDir . '*', GLOB_ONLYDIR);
$adminStyles = array_diff($adminStyles, $noNeedDirs);
$cdnSettings = cmf_get_option('cdn_settings');
$cmfSettings = cmf_get_option('cmf_settings');
$adminSettings = cmf_get_option('admin_settings');
$this->assign(cmf_get_option('site_info'));
$this->assign("admin_styles", $adminStyles);
$this->assign("templates", []);
$this->assign("cdn_settings", $cdnSettings);
$this->assign("admin_settings", $adminSettings);
$this->assign("cmf_settings", $cmfSettings);
return $this->fetch();
}
/**
* 网站信息设置提交
* @adminMenu(
* 'name' => '网站信息设置提交',
* 'parent' => 'site',
* 'display'=> false,
* 'hasView'=> false,
* 'order' => 10000,
* 'icon' => '',
* 'remark' => '网站信息设置提交',
* 'param' => ''
* )
*/
public function sitePost()
{
if ($this->request->isPost()) {
$result = $this->validate($this->request->param(), 'SettingSite');
if ($result !== true) {
$this->error($result);
}
$options = $this->request->param('options/a');
cmf_set_option('site_info', $options);
$cmfSettings = $this->request->param('cmf_settings/a');
$bannedUsernames = preg_replace("/[^0-9A-Za-z_\\x{4e00}-\\x{9fa5}-]/u", ",", $cmfSettings['banned_usernames']);
$cmfSettings['banned_usernames'] = $bannedUsernames;
cmf_set_option('cmf_settings', $cmfSettings);
$cdnSettings = $this->request->param('cdn_settings/a');
cmf_set_option('cdn_settings', $cdnSettings);
$adminSettings = $this->request->param('admin_settings/a');
$routeModel = new RouteModel();
if (!empty($adminSettings['admin_password'])) {
$routeModel->setRoute($adminSettings['admin_password'].'$', 'admin/Index/index', [], 2, 5000);
} else {
$routeModel->deleteRoute('admin/Index/index', []);
}
$routeModel->getRoutes(true);
cmf_set_option('admin_settings', $adminSettings);
$this->success("保存成功!", '');
}
}
/**
* 密码修改
* @adminMenu(
* 'name' => '密码修改',
* 'parent' => 'default',
* 'display'=> false,
* 'hasView'=> true,
* 'order' => 10000,
* 'icon' => '',
* 'remark' => '密码修改',
* 'param' => ''
* )
*/
public function password()
{
return $this->fetch();
}
/**
* 密码修改提交
* @adminMenu(
* 'name' => '密码修改提交',
* 'parent' => 'password',
* 'display'=> false,
* 'hasView'=> false,
* 'order' => 10000,
* 'icon' => '',
* 'remark' => '密码修改提交',
* 'param' => ''
* )
*/
public function passwordPost()
{
if ($this->request->isPost()) {
$data = $this->request->param();
if (empty($data['old_password'])) {
$this->error("原始密码不能为空!");
}
if (empty($data['password'])) {
$this->error("新密码不能为空!");
}
$userId = cmf_get_current_admin_id();
$admin = Db::name('user')->where(["id" => $userId])->find();
$oldPassword = $data['old_password'];
$password = $data['password'];
$rePassword = $data['re_password'];
if (cmf_compare_password($oldPassword, $admin['user_pass'])) {
if ($password == $rePassword) {
if (cmf_compare_password($password, $admin['user_pass'])) {
$this->error("新密码不能和原始密码相同!");
} else {
Db::name('user')->where('id', $userId)->update(['user_pass' => cmf_password($password)]);
$this->success("密码修改成功!");
}
} else {
$this->error("密码输入不一致!");
}
} else {
$this->error("原始密码不正确!");
}
}
}
/**
* 上传限制设置界面
* @adminMenu(
* 'name' => '上传设置',
* 'parent' => 'default',
* 'display'=> true,
* 'hasView'=> true,
* 'order' => 10000,
* 'icon' => '',
* 'remark' => '上传设置',
* 'param' => ''
* )
*/
public function upload()
{
$uploadSetting = cmf_get_upload_setting();
$this->assign($uploadSetting);
return $this->fetch();
}
/**
* 上传限制设置界面提交
* @adminMenu(
* 'name' => '上传设置提交',
* 'parent' => 'upload',
* 'display'=> false,
* 'hasView'=> false,
* 'order' => 10000,
* 'icon' => '',
* 'remark' => '上传设置提交',
* 'param' => ''
* )
*/
public function uploadPost()
{
if ($this->request->isPost()) {
//TODO 非空验证
$uploadSetting = $this->request->post();
cmf_set_option('upload_setting', $uploadSetting);
$this->success('保存成功!');
}
}
/**
* 清除缓存
* @adminMenu(
* 'name' => '清除缓存',
* 'parent' => 'default',
* 'display'=> false,
* 'hasView'=> true,
* 'order' => 10000,
* 'icon' => '',
* 'remark' => '清除缓存',
* 'param' => ''
* )
*/
public function clearCache()
{
cmf_clear_cache();
return $this->fetch();
}
}