|
|
<?php
|
|
|
// +----------------------------------------------------------------------
|
|
|
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
|
|
// +----------------------------------------------------------------------
|
|
|
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
|
|
// | 开源版本可自由商用,可去除界面版权logo
|
|
|
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
|
|
// | github下载:https://github.com/likeshop-github/likeadmin
|
|
|
// | 访问官网:https://www.likeadmin.cn
|
|
|
// | likeadmin团队 版权所有 拥有最终解释权
|
|
|
// +----------------------------------------------------------------------
|
|
|
// | author: likeadminTeam
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
namespace app\adminapi\controller\config;
|
|
|
|
|
|
use Predis\Client;
|
|
|
use app\adminapi\controller\BaseAdminController;
|
|
|
use app\adminapi\lists\config\ConfigFilesLists;
|
|
|
use app\adminapi\logic\config\ConfigFilesLogic;
|
|
|
use app\adminapi\validate\config\ConfigFilesValidate;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* ConfigFiles控制器
|
|
|
* Class ConfigFilesController
|
|
|
* @package app\adminapi\controller\config
|
|
|
*/
|
|
|
class ConfigFilesController extends BaseAdminController
|
|
|
{
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @notes 获取列表
|
|
|
* @return \think\response\Json
|
|
|
* @author likeadmin
|
|
|
* @date 2024/03/14 17:45
|
|
|
*/
|
|
|
public function lists()
|
|
|
{
|
|
|
return $this->dataLists(new ConfigFilesLists());
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @notes 添加
|
|
|
* @return \think\response\Json
|
|
|
* @author likeadmin
|
|
|
* @date 2024/03/14 17:45
|
|
|
*/
|
|
|
public function add()
|
|
|
{
|
|
|
$params = (new ConfigFilesValidate())->post()->goCheck('add');
|
|
|
$result = ConfigFilesLogic::add($params);
|
|
|
if (true === $result) {
|
|
|
return $this->success('添加成功', [], 1, 1);
|
|
|
}
|
|
|
return $this->fail(ConfigFilesLogic::getError());
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @notes 编辑
|
|
|
* @return \think\response\Json
|
|
|
* @author likeadmin
|
|
|
* @date 2024/03/14 17:45
|
|
|
*/
|
|
|
public function edit()
|
|
|
{
|
|
|
$params = (new ConfigFilesValidate())->post()->goCheck('edit');
|
|
|
$result = ConfigFilesLogic::edit($params);
|
|
|
if (true === $result) {
|
|
|
return $this->success('编辑成功', [], 1, 1);
|
|
|
}
|
|
|
return $this->fail(ConfigFilesLogic::getError());
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @notes 删除
|
|
|
* @return \think\response\Json
|
|
|
* @author likeadmin
|
|
|
* @date 2024/03/14 17:45
|
|
|
*/
|
|
|
public function delete()
|
|
|
{
|
|
|
$params = (new ConfigFilesValidate())->post()->goCheck('delete');
|
|
|
ConfigFilesLogic::delete($params);
|
|
|
return $this->success('删除成功', [], 1, 1);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @notes 获取详情
|
|
|
* @return \think\response\Json
|
|
|
* @author likeadmin
|
|
|
* @date 2024/03/14 17:45
|
|
|
*/
|
|
|
public function detail()
|
|
|
{
|
|
|
$params = (new ConfigFilesValidate())->goCheck('detail');
|
|
|
$result = ConfigFilesLogic::detail($params);
|
|
|
return $this->data($result);
|
|
|
}
|
|
|
|
|
|
public function refresh()
|
|
|
{
|
|
|
$cids = $this->request->get('cids', '');
|
|
|
if (!$cids) {
|
|
|
return $this->fail('请选择要刷新的区服');
|
|
|
}
|
|
|
|
|
|
$config = config('cache.stores.redis');
|
|
|
$client = new Client($config);
|
|
|
foreach ($cids as $cid) {
|
|
|
$key = 'refreshConfig_' . $cid;
|
|
|
$client->set($key, 1);
|
|
|
}
|
|
|
return $this->success('插入排队成功,等待刷新', [], 1, 1);
|
|
|
}
|
|
|
}
|