增加演示环境自动清理

This commit is contained in:
Anyon 2020-11-16 15:33:34 +08:00
parent 213bcb5ec1
commit 6659a97cba

View File

@ -15,33 +15,43 @@
use think\admin\service\SystemService; use think\admin\service\SystemService;
// 演示环境禁止操作路由绑定 invoke(function (\think\App $app) {
if (SystemService::instance()->checkRunMode('demo')) { /*! 非开发环境,清理限制文件 */
app()->route->post('index/pass', function () { if (!SystemService::instance()->checkRunMode('dev')) {
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']); @unlink("{$app->getBasePath()}admin/controller/api/Update.php");
}); @unlink("{$app->getBasePath()}admin/route/demo.php");
app()->route->post('config/system', function () { @rmdir("{$app->getBasePath()}admin/route");
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']); return;
}); }
app()->route->post('config/storage', function () { /*! 演示环境禁止操作路由绑定 */
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']); if (SystemService::instance()->checkRunMode('demo')) {
}); $app->route->post('index/pass', function () {
app()->route->post('menu/index', function () { return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']); });
}); $app->route->post('config/system', function () {
app()->route->post('menu/add', function () { return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
return json(['code' => 0, 'info' => '演示环境禁止添加菜单!']); });
}); $app->route->post('config/storage', function () {
app()->route->post('menu/edit', function () { return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
return json(['code' => 0, 'info' => '演示环境禁止编辑菜单!']); });
}); $app->route->post('menu/index', function () {
app()->route->post('menu/state', function () { return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']);
return json(['code' => 0, 'info' => '演示环境禁止禁用菜单!']); });
}); $app->route->post('menu/add', function () {
app()->route->post('menu/remove', function () { return json(['code' => 0, 'info' => '演示环境禁止添加菜单!']);
return json(['code' => 0, 'info' => '演示环境禁止删除菜单!']); });
}); $app->route->post('menu/edit', function () {
app()->route->post('user/pass', function () { return json(['code' => 0, 'info' => '演示环境禁止编辑菜单!']);
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']); });
}); $app->route->post('menu/state', function () {
} return json(['code' => 0, 'info' => '演示环境禁止禁用菜单!']);
});
$app->route->post('menu/remove', function () {
return json(['code' => 0, 'info' => '演示环境禁止删除菜单!']);
});
$app->route->post('user/pass', function () {
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
});
}
});