mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
增加演示环境自动清理
This commit is contained in:
parent
213bcb5ec1
commit
6659a97cba
@ -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')) {
|
||||||
|
@unlink("{$app->getBasePath()}admin/controller/api/Update.php");
|
||||||
|
@unlink("{$app->getBasePath()}admin/route/demo.php");
|
||||||
|
@rmdir("{$app->getBasePath()}admin/route");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
/*! 演示环境禁止操作路由绑定 */
|
||||||
|
if (SystemService::instance()->checkRunMode('demo')) {
|
||||||
|
$app->route->post('index/pass', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
||||||
});
|
});
|
||||||
app()->route->post('config/system', function () {
|
$app->route->post('config/system', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
|
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
|
||||||
});
|
});
|
||||||
app()->route->post('config/storage', function () {
|
$app->route->post('config/storage', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
|
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
|
||||||
});
|
});
|
||||||
app()->route->post('menu/index', function () {
|
$app->route->post('menu/index', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']);
|
return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']);
|
||||||
});
|
});
|
||||||
app()->route->post('menu/add', function () {
|
$app->route->post('menu/add', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止添加菜单!']);
|
return json(['code' => 0, 'info' => '演示环境禁止添加菜单!']);
|
||||||
});
|
});
|
||||||
app()->route->post('menu/edit', function () {
|
$app->route->post('menu/edit', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止编辑菜单!']);
|
return json(['code' => 0, 'info' => '演示环境禁止编辑菜单!']);
|
||||||
});
|
});
|
||||||
app()->route->post('menu/state', function () {
|
$app->route->post('menu/state', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止禁用菜单!']);
|
return json(['code' => 0, 'info' => '演示环境禁止禁用菜单!']);
|
||||||
});
|
});
|
||||||
app()->route->post('menu/remove', function () {
|
$app->route->post('menu/remove', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止删除菜单!']);
|
return json(['code' => 0, 'info' => '演示环境禁止删除菜单!']);
|
||||||
});
|
});
|
||||||
app()->route->post('user/pass', function () {
|
$app->route->post('user/pass', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user