|
@@ -1,18 +1,22 @@
|
|
|
package com.persagy.proxy.adm.strategy;
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.Set;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.google.common.collect.Lists;
|
|
|
import com.persagy.dmp.basic.dto.RequestData;
|
|
|
import com.persagy.dmp.digital.entity.ObjectDigital;
|
|
|
+import com.persagy.proxy.adm.constant.AdmRelationType;
|
|
|
+import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
|
|
|
import com.persagy.proxy.adm.strategy.relationdata.RelationObjectStrategy;
|
|
|
import com.persagy.proxy.report.model.AdmRelationObject;
|
|
|
-import org.springframework.stereotype.Component;
|
|
|
-
|
|
|
-import javax.annotation.Resource;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
-import java.util.Set;
|
|
|
|
|
|
/**
|
|
|
* 获取关系对象的上下文类
|
|
@@ -55,13 +59,19 @@ public class RelationObjectContext {
|
|
|
* 检查关联对象的合法性
|
|
|
*
|
|
|
* @param relationObject 当前需要校验的对象
|
|
|
+ * @param groupCode
|
|
|
+ * @param projectId
|
|
|
* @param relType graphCode_relCode
|
|
|
* @param code 获取对象的依据
|
|
|
+ * @param admRelType ADM定义的类型
|
|
|
* @return String - 校验失败的原因, ObjectNode -- BDTP接口的参数,不会返回null,请用instanceOf 判断返回值
|
|
|
*/
|
|
|
- public Object checkRelationObject(AdmRelationObject relationObject, String groupCode, String projectId, String relType, String code) {
|
|
|
+ public Object checkRelationObject(AdmRelationObject relationObject, String groupCode, String projectId, String relType, String code, AdmRelationTypeEnum typeEnum) {
|
|
|
RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
|
|
|
- return strategy == null ? "不存在此策略类" : strategy.beforeSaveRelationObject(relationObject, groupCode, projectId, code);
|
|
|
+ if (strategy == null && typeEnum != null) {
|
|
|
+ strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
|
|
|
+ }
|
|
|
+ return strategy == null ? "不存在此类型" : strategy.beforeSaveRelationObject(relationObject, groupCode, projectId, code, typeEnum);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -75,6 +85,9 @@ public class RelationObjectContext {
|
|
|
*/
|
|
|
public boolean saveRelationObjects(List<ObjectNode> relationObjects, String groupCode, String projectId, String relType) {
|
|
|
RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
|
|
|
+ if (strategy == null) {
|
|
|
+ strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
|
|
|
+ }
|
|
|
return strategy == null ? false : strategy.saveRelationObjects(relationObjects, groupCode, projectId);
|
|
|
}
|
|
|
|
|
@@ -86,9 +99,12 @@ public class RelationObjectContext {
|
|
|
* @param relType graphCode_relCode
|
|
|
* @return
|
|
|
*/
|
|
|
- public long countRelationObjects(String groupCode, String projectId, String relType) {
|
|
|
+ public long countRelationObjects(String groupCode, String projectId, String relType, AdmRelationTypeEnum typeEnum) {
|
|
|
RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
|
|
|
- return strategy == null ? 0 : strategy.countRelationObjects(groupCode, projectId);
|
|
|
+ if (strategy == null && typeEnum != null) {
|
|
|
+ strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
|
|
|
+ }
|
|
|
+ return strategy == null ? 0 : strategy.countRelationObjects(groupCode, projectId, typeEnum);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -102,9 +118,12 @@ public class RelationObjectContext {
|
|
|
* @param mainContent 主对象的筛选关键字,筛选范围为id,name,local_id,local_name,cADID.为关系左侧对象
|
|
|
* @param slaveContent 从对象的筛选关键字.objTo对应的对象,筛选范围为id,name,local_id,local_name.为关系右侧对象
|
|
|
*/
|
|
|
- public List<ObjectDigital> queryAllRelations(String groupCode, String projectId, String relType, String mainContent, Set<String> slaveContent) {
|
|
|
+ public List<ObjectDigital> queryAllRelations(String groupCode, String projectId, String relType, String mainContent, Set<String> slaveContent, AdmRelationTypeEnum typeEnum) {
|
|
|
RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
|
|
|
- return strategy == null ? Lists.newArrayList() : strategy.queryAllRelations(groupCode, projectId, mainContent, slaveContent);
|
|
|
+ if (strategy == null && typeEnum != null) {
|
|
|
+ strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
|
|
|
+ }
|
|
|
+ return strategy == null ? Lists.newArrayList() : strategy.queryAllRelations(groupCode, projectId, mainContent, slaveContent, typeEnum);
|
|
|
}
|
|
|
|
|
|
/**
|