diff --git a/application/admin/controller/Auth.php b/application/admin/controller/Auth.php index 7ad0df9e6..2488208c4 100644 --- a/application/admin/controller/Auth.php +++ b/application/admin/controller/Auth.php @@ -68,7 +68,7 @@ class Auth extends BasicAdmin { $nodes = NodeService::get(); $checked = Db::name('SystemAuthNode')->where(['auth' => $auth_id])->column('node'); - foreach ($nodes as $key => &$node) { + foreach ($nodes as &$node) { $node['checked'] = in_array($node['node'], $checked); } $all = $this->_apply_filter(ToolsService::arr2tree($nodes, 'node', 'pnode', '_sub_')); diff --git a/application/admin/controller/Config.php b/application/admin/controller/Config.php index 9ecf60938..3d5c47f6e 100644 --- a/application/admin/controller/Config.php +++ b/application/admin/controller/Config.php @@ -14,7 +14,6 @@ namespace app\admin\controller; -use app\store\OrderService; use controller\BasicAdmin; use service\ExtendService; use service\LogService; @@ -61,23 +60,13 @@ class Config extends BasicAdmin */ public function file() { - $this->title = '文件存储配置'; $alert = [ - 'type' => 'success', 'title' => '操作提示', - 'content' => '文件引擎参数影响全局文件上传功能,请勿随意修改!' + 'type' => 'danger', + 'title' => '操作安全警告(默认使用本地服务存储)', + 'content' => '请根据实际情况配置存储引擎,合理做好站点下载分流。建议尽量使用云存储服务,同时保证文件访问协议与网站访问协议一致!' ]; + $this->title = '文件存储配置'; $this->assign('alert', $alert); return $this->index(); } - - /** - * 短信参数配置 - */ - public function sms() - { - $this->title = '短信服务配置'; - $this->assign('result', ExtendService::querySmsBalance()); - return $this->index(); - } - } diff --git a/application/admin/controller/Index.php b/application/admin/controller/Index.php index f19b4e603..db4c11577 100644 --- a/application/admin/controller/Index.php +++ b/application/admin/controller/Index.php @@ -38,7 +38,7 @@ class Index extends BasicAdmin public function index() { NodeService::applyAuthNode(); - $list = (array)Db::name('SystemMenu')->where(['status' => '1'])->order('sort asc,id asc')->select(); + $list = (array) Db::name('SystemMenu')->where(['status' => '1'])->order('sort asc,id asc')->select(); $menus = $this->_filterMenuData(ToolsService::arr2tree($list), NodeService::get(), !!session('user')); return view('', ['title' => '系统管理', 'menus' => $menus]); } diff --git a/application/admin/controller/Log.php b/application/admin/controller/Log.php index e0a209834..3af893398 100644 --- a/application/admin/controller/Log.php +++ b/application/admin/controller/Log.php @@ -40,17 +40,14 @@ class Log extends BasicAdmin */ public function index() { - $this->title = '系统操作日志'; - $get = $this->request->get(); // 日志行为类别 $actions = Db::name($this->table)->group('action')->column('action'); $this->assign('actions', $actions); // 日志数据库对象 + list($this->title, $get) = ['系统操作日志', $this->request->get()]; $db = Db::name($this->table)->order('id desc'); foreach (['action', 'content', 'username'] as $key) { - if (isset($get[$key]) && $get[$key] !== '') { - $db->where($key, 'like', "%{$get[$key]}%"); - } + (isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%"); } if (isset($get['date']) && $get['date'] !== '') { list($start, $end) = explode('-', str_replace(' ', '', $get['date'])); diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php index 46f7078fe..e701783a4 100644 --- a/application/admin/controller/Menu.php +++ b/application/admin/controller/Menu.php @@ -95,13 +95,14 @@ class Menu extends BasicAdmin $current_path = "-{$vo['pid']}-{$vo['id']}"; if ($vo['pid'] !== '' && (stripos("{$menu['path']}-", "{$current_path}-") !== false || $menu['path'] === $current_path)) { unset($menus[$key]); + continue; } } } // 读取系统功能节点 $nodes = NodeService::get(); - foreach ($nodes as $key => $_vo) { - if (empty($_vo['is_menu'])) { + foreach ($nodes as $key => $node) { + if (empty($node['is_menu'])) { unset($nodes[$key]); } } diff --git a/application/admin/controller/Node.php b/application/admin/controller/Node.php index dff265baa..d70ea5593 100644 --- a/application/admin/controller/Node.php +++ b/application/admin/controller/Node.php @@ -40,8 +40,12 @@ class Node extends BasicAdmin */ public function index() { + $alert = [ + 'type' => 'danger', + 'title' => '操作安全警告(默认新节点所有人可以访问,请勾选登录控制)', + 'content' => '结构为系统自动生成,其权限各选项直接影响到不同权限用户的访问及操作,请勿随意修改数据!' + ]; $nodes = ToolsService::arr2table(NodeService::get(), 'node', 'pnode'); - $alert = ['type' => 'danger', 'title' => '安全警告', 'content' => '结构为系统自动生成, 状态数据请勿随意修改!']; return view('', ['title' => '系统节点管理', 'nodes' => $nodes, 'alert' => $alert]); } @@ -51,9 +55,8 @@ class Node extends BasicAdmin public function save() { if ($this->request->isPost()) { - $post = $this->request->post(); + list($data, $post) = [[], $this->request->post()]; if (isset($post['list'])) { - $data = []; foreach ($post['list'] as $vo) { $data['node'] = $vo['node']; $data[$vo['name']] = $vo['value']; diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php index 48c621acd..5df50f48d 100644 --- a/application/admin/controller/User.php +++ b/application/admin/controller/User.php @@ -43,9 +43,7 @@ class User extends BasicAdmin $get = $this->request->get(); $db = Db::name($this->table)->where(['is_deleted' => '0']); foreach (['username', 'phone', 'mail'] as $key) { - if (isset($get[$key]) && $get[$key] !== '') { - $db->where($key, 'like', "%{$get[$key]}%"); - } + (isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%"); } if (isset($get['date']) && $get['date'] !== '') { list($start, $end) = explode('-', str_replace(' ', '', $get['date'])); @@ -88,11 +86,12 @@ class User extends BasicAdmin $this->assign('verify', false); return $this->_form($this->table, 'pass'); } - $data = $this->request->post(); - if ($data['password'] !== $data['repassword']) { + $post = $this->request->post(); + if ($post['password'] !== $post['repassword']) { $this->error('两次输入的密码不一致!'); } - if (DataService::save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) { + $data = ['id' => $post['id'], 'password' => md5($post['password'])]; + if (DataService::save($this->table, $data, 'id')) { $this->success('密码修改成功,下次请使用新密码登录!', ''); } $this->error('密码修改失败,请稍候再试!'); @@ -110,7 +109,7 @@ class User extends BasicAdmin } if (isset($data['id'])) { unset($data['username']); - } elseif (Db::name($this->table)->where(['username' => $data['username']])->find()) { + } elseif (Db::name($this->table)->where(['username' => $data['username']])->count() > 0) { $this->error('用户账号已经存在,请使用其它账号!'); } } else { diff --git a/application/admin/view/config.file.html b/application/admin/view/config.file.html index cc7a3c198..9cba66d01 100644 --- a/application/admin/view/config.file.html +++ b/application/admin/view/config.file.html @@ -1,11 +1,10 @@ {extend name="extra@admin/content"} {block name="content"} -