RelationShContainSpBaseController.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. package com.persagy.proxy.relation.controller;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.Set;
  5. import java.util.stream.Collectors;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.beans.factory.annotation.Value;
  8. import org.springframework.web.bind.annotation.PostMapping;
  9. import org.springframework.web.bind.annotation.RequestBody;
  10. import org.springframework.web.bind.annotation.RequestMapping;
  11. import org.springframework.web.bind.annotation.RequestParam;
  12. import org.springframework.web.bind.annotation.RestController;
  13. import com.alibaba.fastjson.JSONArray;
  14. import com.alibaba.fastjson.JSONObject;
  15. import com.fasterxml.jackson.databind.node.JsonNodeFactory;
  16. import com.fasterxml.jackson.databind.node.ObjectNode;
  17. import com.google.common.collect.Sets;
  18. import com.persagy.dmp.basic.dto.RequestData;
  19. import com.persagy.dmp.basic.model.QueryCriteria;
  20. import com.persagy.dmp.common.context.AppContext;
  21. import com.persagy.dmp.define.entity.ObjectTypeDefine;
  22. import com.persagy.dmp.digital.client.DigitalObjectFacade;
  23. import com.persagy.dmp.digital.entity.ObjectDigital;
  24. import com.persagy.dmp.digital.entity.ObjectRelation;
  25. import com.persagy.proxy.adm.constant.AdmCommonConstant;
  26. import com.persagy.proxy.adm.constant.AdmDictCategoryEnum;
  27. import com.persagy.proxy.adm.constant.AdmObjectType;
  28. import com.persagy.proxy.adm.request.AdmResponse;
  29. import com.persagy.proxy.adm.service.IAdmRelationService;
  30. import com.persagy.proxy.adm.utils.AdmContextUtil;
  31. import com.persagy.proxy.common.client.DmpRwdClient;
  32. import com.persagy.proxy.common.entity.InstanceUrlParam;
  33. import com.persagy.proxy.common.entity.RelationDTO;
  34. import com.persagy.proxy.report.service.IRelationReportService;
  35. import cn.hutool.core.collection.CollUtil;
  36. import cn.hutool.core.collection.CollectionUtil;
  37. import cn.hutool.core.util.ObjectUtil;
  38. import cn.hutool.core.util.StrUtil;
  39. /**
  40. * @description:023、关系-竖井下的业务空间
  41. * @author:lgy
  42. * @data:2021/9/13 14:49
  43. */
  44. @RestController
  45. @RequestMapping("/rel/sh-contain-sp-base")
  46. public class RelationShContainSpBaseController {
  47. @Autowired
  48. private IAdmRelationService service;
  49. @Autowired
  50. DmpRwdClient rwdClient;
  51. @Value("${middleware.group.code}")
  52. private String groupCode;
  53. @Autowired
  54. private IRelationReportService relationReportService;
  55. /**
  56. * 默认图类型
  57. */
  58. public static String DEFAULT_GRAPH_CODE = "ArchSubset";
  59. /**
  60. * 默认边类型
  61. */
  62. public static String DEFAULT_REL_CODE = "Sh2Sp";
  63. /**
  64. * 创建竖井下的业务空间关系
  65. * @param param 竖井和业务空间的关系对象
  66. * @return
  67. * @throws Exception
  68. */
  69. @PostMapping(value = {"/link"})
  70. public AdmResponse create(@RequestBody JSONObject param) throws Exception {
  71. String shaftId = param.getString("shaftId");
  72. String spaceId = param.getString("spaceId");
  73. String type = param.getString("objectType");
  74. if(!StrUtil.isAllNotEmpty(shaftId,spaceId)) {
  75. return AdmResponse.failure("必填项:ShaftID(竖井id)、SpaceID(业务空间id)");
  76. }
  77. // 创建关系对象
  78. List<RelationDTO> voList = new ArrayList<>();
  79. voList.add(new RelationDTO(null, DEFAULT_GRAPH_CODE, DEFAULT_REL_CODE, type, shaftId , spaceId));
  80. service.doSave(AdmContextUtil.toDmpContext(), voList);
  81. return AdmResponse.success();
  82. }
  83. /**
  84. * 根据对象删除关系
  85. *根据对象删除竖井下的业务空间关系,只针对一个对象
  86. * @param param 对象
  87. * @param type 空间类型
  88. * @return 删除的结果信息
  89. */
  90. @PostMapping("/unlink")
  91. public AdmResponse delete(@RequestParam(value = "type", required = false) String type,
  92. @RequestBody JSONObject param) throws Exception {
  93. if(CollUtil.isEmpty(param)) {
  94. return AdmResponse.success();
  95. }
  96. // 组装上下文条件
  97. InstanceUrlParam context = AdmContextUtil.toDmpContext();
  98. // 组装条件
  99. QueryCriteria criteria = new QueryCriteria();
  100. String shaftId = param.getString("shaftId");
  101. String spaceId = param.getString("spaceId");
  102. if(!StrUtil.isAllNotEmpty(shaftId,spaceId)) {
  103. return AdmResponse.failure("必填项:ShaftID(竖井id)、SpaceID(业务空间id)");
  104. }
  105. ObjectNode node = JsonNodeFactory.instance.objectNode();
  106. node.put("graphCode", DEFAULT_GRAPH_CODE);
  107. node.put("relCode", DEFAULT_REL_CODE);
  108. node.put("relValue", type);
  109. node.put("objFrom", shaftId);
  110. node.put("objTo",spaceId);
  111. criteria.setCriteria(node);
  112. service.doDelete(context, criteria);
  113. return AdmResponse.success();
  114. }
  115. /**
  116. * 创建竖井下的业务空间关系
  117. *
  118. * @param param 竖井和业务空间的关系对象
  119. * @param type 空间类型
  120. * @return 创建的结果信息
  121. */
  122. @PostMapping("/link-shsps")
  123. public AdmResponse createShsps(@RequestParam(value = "type", required = false) String type,
  124. @RequestBody JSONObject param) {
  125. String shaftId = param.getString("shaftId");
  126. JSONArray spaceIdList = param.getJSONArray("spaceIdList");
  127. if(StrUtil.isBlank(shaftId) || CollUtil.isEmpty(spaceIdList)) {
  128. return AdmResponse.failure("必填项:SpaceIdList(业务空间id列表)、ShaftID(竖井id),此方法不会覆盖以前的记录");
  129. }
  130. // 创建关系对象.先删除,后添加
  131. InstanceUrlParam context = AdmContextUtil.toDmpContext();
  132. List<RelationDTO> voList = new ArrayList<>();
  133. for(int i = 0;i < spaceIdList.size();i++) {
  134. String spaceId = spaceIdList.getString(i);
  135. if(StrUtil.isBlank(spaceId)) {
  136. continue;
  137. }
  138. QueryCriteria queryRequest = new QueryCriteria();
  139. ObjectNode node = JsonNodeFactory.instance.objectNode();
  140. node.put("graphCode", DEFAULT_GRAPH_CODE);
  141. node.put("relCode", DEFAULT_REL_CODE);
  142. node.put("relValue", type);
  143. node.put("objFrom", shaftId);
  144. node.put("objTo", spaceId);
  145. queryRequest.setCriteria(node);
  146. service.doDelete(context,queryRequest);
  147. // 创建关系对象 - 参考(datasyn中DataCenterSync.kt)
  148. voList.add(new RelationDTO(null, DEFAULT_GRAPH_CODE, DEFAULT_REL_CODE, type, shaftId, spaceId));
  149. }
  150. // 组装上下文条件
  151. service.doSave(context, voList);
  152. return AdmResponse.success();
  153. }
  154. /**
  155. * 竖井下的业务空间,空间一对多
  156. * @param param 竖井和业务空间的关系对象
  157. * @param type 空间类型
  158. * @return 创建的结果信息
  159. */
  160. @PostMapping("/link-spshs")
  161. public AdmResponse createSpshs(@RequestParam(value = "type", required = false) String type,
  162. @RequestBody JSONObject param) {
  163. String spaceId = param.getString("spaceId");
  164. JSONArray shaftIdList = param.getJSONArray("shaftIdList");
  165. if(StrUtil.isBlank(spaceId) || CollUtil.isEmpty(shaftIdList)) {
  166. return AdmResponse.failure("必填项:SpaceId(业务空间id)、ShaftIDList(竖井id列表)");
  167. }
  168. // 创建关系对象.先删除,后添加
  169. InstanceUrlParam context = AdmContextUtil.toDmpContext();
  170. List<RelationDTO> voList = new ArrayList<>();
  171. for(int i = 0;i < shaftIdList.size();i++) {
  172. String shaftId = shaftIdList.getString(i);
  173. if(StrUtil.isBlank(shaftId)) {
  174. continue;
  175. }
  176. QueryCriteria queryRequest = new QueryCriteria();
  177. ObjectNode node = JsonNodeFactory.instance.objectNode();
  178. node.put("graphCode", DEFAULT_GRAPH_CODE);
  179. node.put("relCode", DEFAULT_REL_CODE);
  180. node.put("relValue", type);
  181. node.put("objFrom", shaftId);
  182. node.put("objTo", spaceId);
  183. queryRequest.setCriteria(node);
  184. service.doDelete(context,queryRequest);
  185. // 创建关系对象 - 参考(datasyn中DataCenterSync.kt)
  186. voList.add(new RelationDTO(null, DEFAULT_GRAPH_CODE, DEFAULT_REL_CODE, type, shaftId, spaceId));
  187. }
  188. // 组装上下文条件
  189. service.doSave(context, voList);
  190. return AdmResponse.success();
  191. }
  192. /**
  193. * 创建竖井下的业务空间,竖井一对多,此方法会覆盖以前的记录
  194. *
  195. * @param param 竖井和业务空间的关系对象
  196. * @param type 空间类型
  197. * @return 创建的结果信息
  198. */
  199. @PostMapping("/link-shsps-replace")
  200. public AdmResponse createShSpsReplace(@RequestParam(value = "Type", required = false) String type,
  201. @RequestParam(value = "BuildingId", required = false) String buildingId,
  202. @RequestParam(value = "FloorId", required = false) String floorId,
  203. @RequestBody JSONObject param) throws Exception {
  204. String shaftId = param.getString("shaftId");
  205. JSONArray spaceIdList = param.getJSONArray("spaceIdList");
  206. InstanceUrlParam context = AdmContextUtil.toDmpContext();
  207. // 查出和当前竖井关联并为当前空间类型的的业务空间id
  208. QueryCriteria queryRequestTmp = new QueryCriteria();
  209. ObjectNode nodeTmp = JsonNodeFactory.instance.objectNode();
  210. nodeTmp.put("graphCode", DEFAULT_GRAPH_CODE);
  211. nodeTmp.put("relCode", DEFAULT_REL_CODE);
  212. nodeTmp.put("relValue", type);
  213. nodeTmp.put("objFrom", shaftId);
  214. queryRequestTmp.setCriteria(nodeTmp);
  215. Set<String> oldSpaceIds = service.queryByCondition(context, queryRequestTmp).stream().map(ObjectRelation::getObjTo).collect(Collectors.toSet());
  216. // 楼层、建筑、对象类查询的空间id
  217. RequestData requestData = RequestData.builder().buildingId(buildingId).classCode(type)
  218. .floorId(floorId).projectId(context.getProjectId()).objType(AdmDictCategoryEnum.SPACE.getValue()).build();
  219. List<ObjectDigital> objectDigitals = DigitalObjectFacade.queryObjectListSuperiorId(context.getGroupCode(),
  220. context.getProjectId(), AdmCommonConstant.APP_ID, context.getUserId(), requestData);
  221. Set<String> spaceIdSet = objectDigitals.stream().map(ObjectDigital::getId).collect(Collectors.toSet());
  222. //空间id取交集
  223. if(ObjectUtil.isNotEmpty(oldSpaceIds)){
  224. spaceIdSet.retainAll(oldSpaceIds);
  225. }
  226. //删除空间关系
  227. for (String oldSpaceId : spaceIdSet) {
  228. QueryCriteria queryRequest = new QueryCriteria();
  229. ObjectNode node = JsonNodeFactory.instance.objectNode();
  230. node.put("graphCode", DEFAULT_GRAPH_CODE);
  231. node.put("relCode", DEFAULT_REL_CODE);
  232. node.put("relValue", type);
  233. node.put("objFrom", shaftId);
  234. node.put("objTo", oldSpaceId);
  235. queryRequest.setCriteria(node);
  236. service.doDelete(context,queryRequest);
  237. }
  238. //替换空间关系
  239. if (CollectionUtil.isNotEmpty(spaceIdList)) {
  240. List<RelationDTO> voList = new ArrayList<>();
  241. for(int i = 0;i < spaceIdList.size();i++) {
  242. String spaceId = spaceIdList.getString(i);
  243. if(StrUtil.isBlank(spaceId)) {
  244. continue;
  245. }
  246. QueryCriteria queryRequest = new QueryCriteria();
  247. ObjectNode node = JsonNodeFactory.instance.objectNode();
  248. node.put("graphCode", DEFAULT_GRAPH_CODE);
  249. node.put("relCode", DEFAULT_REL_CODE);
  250. node.put("relValue", type);
  251. node.put("objFrom", shaftId);
  252. node.put("objTo", spaceId);
  253. queryRequest.setCriteria(node);
  254. service.doDelete(context,queryRequest);
  255. // 创建关系对象 - 参考(datasyn中DataCenterSync.kt)
  256. voList.add(new RelationDTO(null, DEFAULT_GRAPH_CODE, DEFAULT_REL_CODE, type, shaftId, spaceId));
  257. }
  258. // 组装上下文条件
  259. service.doSave(context, voList);
  260. }
  261. return AdmResponse.success();
  262. }
  263. /**
  264. * 查询空间类型和名称
  265. * @param shaftId shaftId 竖井id
  266. * @param param param
  267. * @return {@link AdmResponse}
  268. * @author lgy
  269. * @date 2021/9/23 18:37
  270. */
  271. @PostMapping("/space-type-query")
  272. public AdmResponse spaceTypeQuery(@RequestParam(value = "shaftId", required = false) String shaftId,
  273. @RequestBody JSONObject param) throws Exception {
  274. // 组装上下文条件
  275. //InstanceUrlParam context = AdmContextUtil.toDmpContext();
  276. if (StrUtil.isBlank(shaftId)) {
  277. shaftId = param.getString("shaftId");
  278. }
  279. String groupCode = AppContext.getContext().getGroupCode();
  280. String projectId = AppContext.getContext().getProjectId();
  281. List<ObjectTypeDefine> classList = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(AdmObjectType.SPACE.getIndex()), null);
  282. if (CollectionUtil.isEmpty(classList)) {
  283. return AdmResponse.success();
  284. }
  285. JSONArray result = new JSONArray();
  286. for (ObjectTypeDefine objectTypeDefine : classList) {
  287. JSONObject temp = new JSONObject();
  288. temp.put("objectType", objectTypeDefine.getCode());
  289. temp.put("objectTypeName", objectTypeDefine.getName());
  290. result.add(temp);
  291. }
  292. return AdmResponse.success(result);
  293. }
  294. }