2019-06-06 15:07:21 +08:00

88 lines
2.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | framework
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://framework.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/framework
// +----------------------------------------------------------------------
namespace app\admin\controller;
use library\Controller;
use library\tools\Data;
use think\Db;
/**
* 系统节点管理
* Class Node
* @package app\admin\controller
*/
class Node extends Controller
{
/**
* 指定当前数据表
* @var string
*/
protected $table = 'SystemNode';
/**
* 系统节点管理
* @throws \ReflectionException
*/
public function index()
{
$this->title = '系统节点管理';
list($nodes, $groups) = [\app\admin\service\Auth::get(), []];
$this->nodes = Data::arr2table($nodes, 'node', 'pnode');
foreach ($this->nodes as $node) {
$pnode = explode('/', $node['node'])[0];
if ($node['node'] === $pnode) $groups[$pnode]['node'] = $node;
$groups[$pnode]['list'][] = $node;
}
$this->groups = $groups;
$this->fetch();
}
/**
* 清理无效的节点
* @throws \ReflectionException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function clear()
{
$nodes = array_unique(array_column(\app\admin\service\Auth::get(), 'node'));
if (false !== Db::name($this->table)->whereNotIn('node', $nodes)->delete()) {
$this->success('清理无效的节点配置成功!', '');
} else {
$this->error('清理无效的节点配置,请稍候再试!');
}
}
/**
* 更新节点数据
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function save()
{
if ($this->request->isPost()) {
list($post, $data) = [$this->request->post(), []];
foreach ($post['list'] as $vo) if (!empty($vo['node'])) {
$data['node'] = $vo['node'];
$data[$vo['name']] = $vo['value'];
}
empty($data) || data_save($this->table, $data, 'node');
$this->success('节点配置保存成功!', '');
} else {
$this->error('访问异常,请重新进入...');
}
}
}