|
@@ -6,6 +6,7 @@ import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.persagy.dmp.basic.model.QueryCriteria;
|
|
|
import com.persagy.dmp.common.constant.CommonConstant;
|
|
|
import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
|
|
|
+import com.persagy.proxy.adm.request.AdmCreateResponse;
|
|
|
import com.persagy.proxy.relation.model.SiInSpBase;
|
|
|
import com.persagy.proxy.relation.model.SiInSpBaseList;
|
|
|
import com.persagy.proxy.adm.request.AdmCreateRequest;
|
|
@@ -81,26 +82,26 @@ public class RelationSpInSiController {
|
|
|
* @return 创建的结果信息
|
|
|
*/
|
|
|
@PostMapping("/link-sp")
|
|
|
- public AdmResponse createSp(@RequestParam(value = "type", required = false) String type,
|
|
|
- @RequestBody SiInSpBaseList siInSpBaseList) {
|
|
|
+ public AdmCreateResponse createSp(@RequestParam(value = "type", required = false) String type,
|
|
|
+ @RequestBody SiInSpBaseList siInSpBaseList) {
|
|
|
List<String> ispaceIdList = siInSpBaseList.getIspaceIdList();
|
|
|
String spaceId = siInSpBaseList.getSpaceId();
|
|
|
if (StrUtil.isEmpty(spaceId) || CollectionUtils.isEmpty(ispaceIdList)) {
|
|
|
// return AdmResponse.failure("必填项:ispaceIdList(元空间id)、spaceId(空间id)");
|
|
|
- return AdmResponse.success();
|
|
|
+ return AdmCreateResponse.success();
|
|
|
}
|
|
|
InstanceUrlParam context = AdmContextUtil.toDmpContext();
|
|
|
AdmRelationTypeEnum typeEnum = AdmRelationTypeEnum.SP2SI;
|
|
|
String graphCode = typeEnum.getGraphCode();
|
|
|
String relCode = typeEnum.getRelCode();
|
|
|
- deleteBySpaceId(spaceId, context, typeEnum);
|
|
|
+ deleteBySpaceId(spaceId, context, typeEnum, type);
|
|
|
List<RelationDTO> voList = new ArrayList<>();
|
|
|
for (String ispaceId : ispaceIdList) {
|
|
|
- RelationDTO relation = new RelationDTO(null, graphCode, relCode, siInSpBaseList.getZoneType(), spaceId, ispaceId);
|
|
|
+ RelationDTO relation = new RelationDTO(null, graphCode, relCode, type, spaceId, ispaceId);
|
|
|
voList.add(relation);
|
|
|
}
|
|
|
service.doSave(context, voList);
|
|
|
- return AdmResponse.success();
|
|
|
+ return AdmCreateResponse.success(voList);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -110,12 +111,13 @@ public class RelationSpInSiController {
|
|
|
* @param context
|
|
|
* @param typeEnum
|
|
|
*/
|
|
|
- private void deleteBySpaceId(String spaceId, InstanceUrlParam context, AdmRelationTypeEnum typeEnum) {
|
|
|
+ private void deleteBySpaceId(String spaceId, InstanceUrlParam context, AdmRelationTypeEnum typeEnum, String zoneType) {
|
|
|
QueryCriteria criteria = new QueryCriteria();
|
|
|
ObjectNode node = JsonNodeFactory.instance.objectNode();
|
|
|
node.put("graphCode", typeEnum.getGraphCode());
|
|
|
node.put("relCode", typeEnum.getRelCode());
|
|
|
node.put("objFrom", spaceId);
|
|
|
+ node.put("relValue", zoneType);
|
|
|
criteria.setCriteria(node);
|
|
|
service.doDelete(context, criteria);
|
|
|
}
|