|
@@ -2,12 +2,14 @@ package com.persagy.bdtp.adm.controller;
|
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.persagy.bdtp.adm.client.RwdClient;
|
|
|
import com.persagy.bdtp.adm.common.AdmConst;
|
|
|
import com.persagy.bdtp.adm.common.AdmRequest;
|
|
|
import com.persagy.bdtp.adm.common.AdmResult;
|
|
|
+import com.persagy.bdtp.adm.dao.AdmContainerConfigMapper;
|
|
|
import com.persagy.bdtp.adm.dao.AdmPipeConfigMapper;
|
|
|
import com.persagy.bdtp.adm.dao.AdmRelsConfigMapper;
|
|
|
import com.persagy.bdtp.adm.entity.*;
|
|
@@ -128,10 +130,12 @@ public class ToolController {
|
|
|
//配置数据查询
|
|
|
List<AdmRelsConfig> relConfig = configService.queryRelsConfig(projectId);
|
|
|
List<AdmPipeConfig> pipeConfig = configService.queryPipeConfig(projectId);
|
|
|
+ List<AdmContainerConfig> containerConfig = configService.queryContainerConfig(projectId);
|
|
|
|
|
|
HashMap<String, Object> data = new HashMap<>();
|
|
|
data.put("relConfig", relConfig);
|
|
|
data.put("pipeConfig", pipeConfig);
|
|
|
+ data.put("containerConfig", containerConfig);
|
|
|
|
|
|
return AdmResult.success(data);
|
|
|
}
|
|
@@ -140,6 +144,9 @@ public class ToolController {
|
|
|
private AdmRelsConfigMapper relsConfigMapper;
|
|
|
@Autowired
|
|
|
private AdmPipeConfigMapper pipeConfigMapper;
|
|
|
+ @Autowired
|
|
|
+ private AdmContainerConfigMapper containerConfigMapper;
|
|
|
+
|
|
|
@PostMapping("/updateCfgItem")
|
|
|
public AdmResult<Object> updateCfgItem(@RequestBody Map<String, Object> content) {
|
|
|
String type = (String) content.get("type");
|
|
@@ -151,30 +158,29 @@ public class ToolController {
|
|
|
itemMap.put("id", newId);
|
|
|
}
|
|
|
|
|
|
+ boolean create = newId != null;
|
|
|
if("rel".equals(type)) {
|
|
|
- if(StrUtil.isNotBlank(delId))
|
|
|
- relsConfigMapper.deleteById(delId);
|
|
|
- else {
|
|
|
- AdmRelsConfig cfg = mapToObj(itemMap, AdmRelsConfig.class);
|
|
|
- if(newId != null)
|
|
|
- relsConfigMapper.insert(cfg);
|
|
|
- else
|
|
|
- relsConfigMapper.updateById(cfg);
|
|
|
- }
|
|
|
+ doUpdateItem(delId, itemMap, create, AdmRelsConfig.class, relsConfigMapper);
|
|
|
} else if ("pipe".equals(type)) {
|
|
|
- if(StrUtil.isNotBlank(delId))
|
|
|
- pipeConfigMapper.deleteById(delId);
|
|
|
- else {
|
|
|
- AdmPipeConfig cfg = mapToObj(itemMap, AdmPipeConfig.class);
|
|
|
- if(newId != null)
|
|
|
- pipeConfigMapper.insert(cfg);
|
|
|
- else
|
|
|
- pipeConfigMapper.updateById(cfg);
|
|
|
- }
|
|
|
+ doUpdateItem(delId, itemMap, create, AdmPipeConfig.class, pipeConfigMapper);
|
|
|
+ } else if("container".equals(type)) {
|
|
|
+ doUpdateItem(delId, itemMap, create, AdmContainerConfig.class, containerConfigMapper);
|
|
|
}
|
|
|
|
|
|
return AdmResult.success(newId);
|
|
|
}
|
|
|
+
|
|
|
+ private <T extends BaseAdmEntity> void doUpdateItem(String delId, Map<String, Object> itemMap, boolean create, Class<T> cls, BaseMapper<T> mapper){
|
|
|
+ if(StrUtil.isNotBlank(delId))
|
|
|
+ mapper.deleteById(delId);
|
|
|
+ else {
|
|
|
+ T cfg = mapToObj(itemMap, cls);
|
|
|
+ if(create)
|
|
|
+ mapper.insert(cfg);
|
|
|
+ else
|
|
|
+ mapper.updateById(cfg);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
private <T extends BaseAdmEntity> T mapToObj(Map<String, Object> map, Class<T> cls){
|
|
|
try {
|