添加演示模式.

This commit is contained in:
lijiahang
2024-05-23 13:56:03 +08:00
parent ca8e629e4c
commit c201eb301f
35 changed files with 163 additions and 122 deletions

View File

@@ -3,7 +3,7 @@ package com.orion.visor.module.asset.controller;
import com.orion.visor.framework.biz.operator.log.core.annotation.OperatorLog;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.log.core.enums.IgnoreLogMode;
import com.orion.visor.framework.web.core.annotation.PreviewDisableApi;
import com.orion.visor.framework.web.core.annotation.DemoDisableApi;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.asset.define.operator.HostOperatorType;
import com.orion.visor.module.asset.entity.request.host.HostConfigUpdateRequest;
@@ -60,7 +60,7 @@ public class HostConfigController {
return hostConfigService.getHostConfigList(hostId);
}
@PreviewDisableApi
@DemoDisableApi
@OperatorLog(HostOperatorType.UPDATE_CONFIG)
@PutMapping("/update")
@Operation(summary = "更新主机配置")
@@ -69,7 +69,7 @@ public class HostConfigController {
return hostConfigService.updateHostConfig(request);
}
@PreviewDisableApi
@DemoDisableApi
@OperatorLog(HostOperatorType.UPDATE_CONFIG_STATUS)
@PutMapping("/update-status")
@Operation(summary = "更新主机配置状态/动态初始化配置")

View File

@@ -6,7 +6,7 @@ import com.orion.visor.framework.common.validator.group.Id;
import com.orion.visor.framework.common.validator.group.Page;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.log.core.enums.IgnoreLogMode;
import com.orion.visor.framework.web.core.annotation.PreviewDisableApi;
import com.orion.visor.framework.web.core.annotation.DemoDisableApi;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.asset.define.operator.HostConnectLogOperatorType;
import com.orion.visor.module.asset.entity.request.host.HostConnectLogQueryRequest;
@@ -89,7 +89,7 @@ public class HostConnectLogController {
return hostConnectLogService.clearHostConnectLog(request);
}
@PreviewDisableApi
@DemoDisableApi
@OperatorLog(HostConnectLogOperatorType.FORCE_OFFLINE)
@PutMapping("/force-offline")
@Operation(summary = "强制断开主机连接")

View File

@@ -5,7 +5,7 @@ import com.orion.visor.framework.biz.operator.log.core.annotation.OperatorLog;
import com.orion.visor.framework.common.validator.group.Page;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.log.core.enums.IgnoreLogMode;
import com.orion.visor.framework.web.core.annotation.PreviewDisableApi;
import com.orion.visor.framework.web.core.annotation.DemoDisableApi;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.asset.define.operator.HostOperatorType;
import com.orion.visor.module.asset.entity.request.host.HostCreateRequest;
@@ -43,6 +43,7 @@ public class HostController {
@Resource
private HostService hostService;
@DemoDisableApi
@OperatorLog(HostOperatorType.CREATE)
@PostMapping("/create")
@Operation(summary = "创建主机")
@@ -51,6 +52,7 @@ public class HostController {
return hostService.createHost(request);
}
@DemoDisableApi
@OperatorLog(HostOperatorType.UPDATE)
@PutMapping("/update")
@Operation(summary = "通过 id 更新主机")
@@ -84,7 +86,7 @@ public class HostController {
return hostService.getHostPage(request);
}
@PreviewDisableApi
@DemoDisableApi
@OperatorLog(HostOperatorType.DELETE)
@DeleteMapping("/delete")
@Operation(summary = "通过 id 删除主机")

View File

@@ -3,7 +3,7 @@ package com.orion.visor.module.asset.controller;
import com.orion.visor.framework.biz.operator.log.core.annotation.OperatorLog;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.log.core.enums.IgnoreLogMode;
import com.orion.visor.framework.web.core.annotation.PreviewDisableApi;
import com.orion.visor.framework.web.core.annotation.DemoDisableApi;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.asset.define.operator.HostGroupOperatorType;
import com.orion.visor.module.asset.entity.request.host.HostGroupRelUpdateRequest;
@@ -43,6 +43,7 @@ public class HostGroupController {
@Resource
private HostGroupService hostGroupService;
@DemoDisableApi
@OperatorLog(HostGroupOperatorType.CREATE)
@PostMapping("/create")
@Operation(summary = "创建主机分组")
@@ -59,6 +60,7 @@ public class HostGroupController {
return hostGroupService.queryHostGroupTree();
}
@DemoDisableApi
@OperatorLog(HostGroupOperatorType.RENAME)
@PutMapping("/rename")
@Operation(summary = "修改名称")
@@ -67,6 +69,7 @@ public class HostGroupController {
return hostGroupService.updateHostGroupName(request);
}
@DemoDisableApi
@OperatorLog(HostGroupOperatorType.MOVE)
@PutMapping("/move")
@Operation(summary = "移动位置")
@@ -75,7 +78,7 @@ public class HostGroupController {
return hostGroupService.moveHostGroup(request);
}
@PreviewDisableApi
@DemoDisableApi
@OperatorLog(HostGroupOperatorType.DELETE)
@DeleteMapping("/delete")
@Operation(summary = "删除主机分组")
@@ -93,6 +96,7 @@ public class HostGroupController {
return hostGroupService.queryHostGroupRel(groupId);
}
@DemoDisableApi
@OperatorLog(HostGroupOperatorType.UPDATE_REL)
@PutMapping("/update-rel")
@Operation(summary = "修改分组内主机")

View File

@@ -5,7 +5,7 @@ import com.orion.visor.framework.biz.operator.log.core.annotation.OperatorLog;
import com.orion.visor.framework.common.validator.group.Page;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.log.core.enums.IgnoreLogMode;
import com.orion.visor.framework.web.core.annotation.PreviewDisableApi;
import com.orion.visor.framework.web.core.annotation.DemoDisableApi;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.asset.define.operator.HostIdentityOperatorType;
import com.orion.visor.module.asset.entity.request.host.HostIdentityCreateRequest;
@@ -43,6 +43,7 @@ public class HostIdentityController {
@Resource
private HostIdentityService hostIdentityService;
@DemoDisableApi
@OperatorLog(HostIdentityOperatorType.CREATE)
@PostMapping("/create")
@Operation(summary = "创建主机身份")
@@ -51,7 +52,7 @@ public class HostIdentityController {
return hostIdentityService.createHostIdentity(request);
}
@PreviewDisableApi
@DemoDisableApi
@OperatorLog(HostIdentityOperatorType.UPDATE)
@PutMapping("/update")
@Operation(summary = "通过 id 更新主机身份")
@@ -86,7 +87,7 @@ public class HostIdentityController {
return hostIdentityService.getHostIdentityPage(request);
}
@PreviewDisableApi
@DemoDisableApi
@OperatorLog(HostIdentityOperatorType.DELETE)
@DeleteMapping("/delete")
@Operation(summary = "通过 id 删除主机身份")

View File

@@ -5,6 +5,7 @@ import com.orion.visor.framework.biz.operator.log.core.annotation.OperatorLog;
import com.orion.visor.framework.common.validator.group.Page;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.log.core.enums.IgnoreLogMode;
import com.orion.visor.framework.web.core.annotation.DemoDisableApi;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.asset.define.operator.HostKeyOperatorType;
import com.orion.visor.module.asset.entity.request.host.HostKeyCreateRequest;
@@ -42,6 +43,7 @@ public class HostKeyController {
@Resource
private HostKeyService hostKeyService;
@DemoDisableApi
@OperatorLog(HostKeyOperatorType.CREATE)
@PostMapping("/create")
@Operation(summary = "创建主机密钥")
@@ -50,6 +52,7 @@ public class HostKeyController {
return hostKeyService.createHostKey(request);
}
@DemoDisableApi
@OperatorLog(HostKeyOperatorType.UPDATE)
@PutMapping("/update")
@Operation(summary = "通过 id 更新主机密钥")
@@ -83,6 +86,7 @@ public class HostKeyController {
return hostKeyService.getHostKeyPage(request);
}
@DemoDisableApi
@OperatorLog(HostKeyOperatorType.DELETE)
@DeleteMapping("/delete")
@Operation(summary = "通过 id 删除主机密钥")