pay_lihaink_cn/app/admin/controller/setting/StorageController.php
2023-10-09 13:42:49 +08:00

63 lines
1.4 KiB
PHP

<?php
namespace app\admin\controller\setting;
use app\admin\controller\BaseAdminController;
use app\admin\logic\setting\StorageLogic;
use app\admin\validate\setting\StorageValidate;
class StorageController extends BaseAdminController
{
/**
* @notes 获取存储引擎列表
* @author 乔峰
* @date 2022/4/20 16:13
*/
public function lists()
{
return $this->success('获取成功', StorageLogic::lists());
}
/**
* @notes 存储配置信息
* @author 乔峰
* @date 2022/4/20 16:19
*/
public function detail()
{
$param = (new StorageValidate())->get()->goCheck('detail');
return $this->success('获取成功', StorageLogic::detail($param));
}
/**
* @notes 设置存储参数
* @author 乔峰
* @date 2022/4/20 16:19
*/
public function setup()
{
$params = (new StorageValidate())->post()->goCheck('setup');
$result = StorageLogic::setup($params);
if (true === $result) {
return $this->success('配置成功', [], 1, 1);
}
return $this->success($result, [], 1, 1);
}
/**
* @notes 切换存储引擎
* @author 乔峰
* @date 2022/4/20 16:19
*/
public function change()
{
$params = (new StorageValidate())->post()->goCheck('change');
StorageLogic::change($params);
return $this->success('切换成功', [], 1, 1);
}
}