RelationFlThroughFlController.java 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package com.persagy.proxy.adm.controller;
  2. import cn.hutool.core.collection.CollUtil;
  3. import cn.hutool.core.util.StrUtil;
  4. import com.alibaba.fastjson.JSONArray;
  5. import com.alibaba.fastjson.JSONObject;
  6. import com.fasterxml.jackson.databind.node.JsonNodeFactory;
  7. import com.fasterxml.jackson.databind.node.ObjectNode;
  8. import com.persagy.dmp.basic.model.QueryCriteria;
  9. import com.persagy.proxy.adm.request.AdmResponse;
  10. import com.persagy.proxy.adm.service.IAdmRelationService;
  11. import com.persagy.proxy.adm.utils.AdmContextUtil;
  12. import com.persagy.proxy.common.entity.InstanceUrlParam;
  13. import com.persagy.proxy.common.entity.RelationDTO;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.web.bind.annotation.PostMapping;
  16. import org.springframework.web.bind.annotation.RequestBody;
  17. import org.springframework.web.bind.annotation.RequestMapping;
  18. import org.springframework.web.bind.annotation.RestController;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. /**
  22. * @description: 021关系-楼层的贯通
  23. * @author:lgy
  24. * @data:2021/9/13 11:02
  25. */
  26. @RestController
  27. @RequestMapping("/rel/fl-through-fl")
  28. public class RelationFlThroughFlController {
  29. private static final String GRAPH_CODE = "ThroughRelationship";
  30. private static final String REL_CODE = "Fl2Fl";
  31. @Autowired
  32. private IAdmRelationService service;
  33. /**
  34. * 创建楼层的贯通关系
  35. * @param param
  36. * @return
  37. * @throws Exception
  38. */
  39. @PostMapping(value = {"/link"})
  40. public AdmResponse create(@RequestBody JSONObject param) throws Exception {
  41. String floorId = param.getString("floorId");
  42. String floorOtherId = param.getString("floorOtherId");
  43. if(!StrUtil.isAllNotEmpty(floorId,floorOtherId)) {
  44. return AdmResponse.failure("必填项:FloorId(楼层id)、FloorOtherId(其他楼层id)");
  45. }
  46. // 创建关系对象
  47. List<RelationDTO> voList = new ArrayList<>();
  48. RelationDTO relation = RelationDTO.builder().graphCode(GRAPH_CODE)
  49. .relCode(REL_CODE).objFrom(floorId).objTo(floorOtherId).build();
  50. voList.add(relation);
  51. service.doSave(AdmContextUtil.toDmpContext(), voList);
  52. return AdmResponse.success();
  53. }
  54. /**
  55. * 根据对象删除关系
  56. * 根据对象删除楼层的贯通关系,只针对一个对象
  57. * @param param 对象
  58. * @return 删除的结果信息
  59. */
  60. @PostMapping("/unlink")
  61. public AdmResponse delete(@RequestBody JSONObject param) throws Exception {
  62. if(CollUtil.isEmpty(param)) {
  63. return AdmResponse.failure("必填项:FloorId(楼层id)、FloorOtherId(其他楼层id)");
  64. }
  65. String floorId = param.getString("floorId");
  66. String floorOtherId = param.getString("floorOtherId");
  67. if(!StrUtil.isAllNotEmpty(floorId,floorOtherId)) {
  68. return AdmResponse.failure("必填项:FloorId(楼层id)、FloorOtherId(其他楼层id)");
  69. }
  70. deleteById(AdmContextUtil.toDmpContext(), floorId, floorOtherId);
  71. return AdmResponse.success();
  72. }
  73. /**
  74. * 通过楼层Id删除
  75. * @param context
  76. * @param fromId
  77. * @param toId
  78. */
  79. private void deleteById(InstanceUrlParam context, String fromId, String toId) {
  80. // 都为空不处理
  81. if(StrUtil.isAllBlank(fromId, toId)) {
  82. return;
  83. }
  84. // 关系条件
  85. ObjectNode node = JsonNodeFactory.instance.objectNode();
  86. node.put("graphCode", GRAPH_CODE);
  87. node.put("relCode", REL_CODE);
  88. if(StrUtil.isNotBlank(fromId)) {
  89. node.put("objFrom", fromId);
  90. }
  91. if(StrUtil.isNotBlank(toId)) {
  92. node.put("objTo",toId);
  93. }
  94. // 执行删除
  95. QueryCriteria criteria = new QueryCriteria();
  96. criteria.setCriteria(node);
  97. service.doDelete(context, criteria);
  98. }
  99. /**
  100. * 创建楼层的贯通关系
  101. * 楼层的贯通,楼层一对多
  102. * @param param 楼层和其他楼层列表关系对象r
  103. * @return
  104. * @throws Exception
  105. */
  106. @PostMapping("/link-or")
  107. public AdmResponse createFloorOtherIdList(@RequestBody JSONObject param) {
  108. String floorId = param.getString("floorId");
  109. JSONArray floorOtherIdList = param.getJSONArray("floorOtherIdList");
  110. if(StrUtil.isBlank(floorId)) {
  111. return AdmResponse.failure("必填项:FloorId(楼层id),此方法会覆盖以前的记录");
  112. }
  113. InstanceUrlParam context = AdmContextUtil.toDmpContext();
  114. // 先删除floorId的所有关系
  115. deleteById(context, floorId, null);
  116. deleteById(context, null, floorId);
  117. // 如果没有待添加的,返回
  118. if(CollUtil.isEmpty(floorOtherIdList)) {
  119. return AdmResponse.success();
  120. }
  121. // 创建关系对象.先删除,后添加
  122. List<RelationDTO> voList = new ArrayList<>();
  123. for(int i = 0;i < floorOtherIdList.size();i++) {
  124. String floorOtherId = floorOtherIdList.getString(i);
  125. if(StrUtil.isBlank(floorOtherId)) {
  126. continue;
  127. }
  128. // 创建关系对象
  129. RelationDTO relation = RelationDTO.builder().graphCode(GRAPH_CODE)
  130. .relCode(REL_CODE).objFrom(floorId).objTo(floorOtherId).build();
  131. voList.add(relation);
  132. }
  133. // 组装上下文条件
  134. service.doSave(context, voList);
  135. return AdmResponse.success();
  136. }
  137. /**
  138. * 楼层的贯通,其他楼层一对多
  139. * @param param 楼层和其他楼层列表关系对象r
  140. * @return
  141. * @throws Exception
  142. */
  143. @PostMapping("/link-fl")
  144. public AdmResponse createFloorIdList(@RequestBody JSONObject param) {
  145. String floorOtherId = param.getString("floorOtherId");
  146. JSONArray floorIdList = param.getJSONArray("floorIdList");
  147. if(StrUtil.isBlank(floorOtherId)) {
  148. return AdmResponse.failure("必填项:FloorOtherId(其他楼层id),测方法会覆盖以前的记录");
  149. }
  150. InstanceUrlParam context = AdmContextUtil.toDmpContext();
  151. // 先删除floorOtherId的所有关系
  152. deleteById(context, floorOtherId, null);
  153. deleteById(context, null, floorOtherId);
  154. // 如果没有待添加的,返回
  155. if(CollUtil.isEmpty(floorIdList)) {
  156. return AdmResponse.success();
  157. }
  158. // 创建关系对象.先删除,后添加
  159. List<RelationDTO> voList = new ArrayList<>();
  160. for(int i = 0;i < floorIdList.size();i++) {
  161. String floorId = floorIdList.getString(i);
  162. if(StrUtil.isBlank(floorId)) {
  163. continue;
  164. }
  165. // 创建关系对象
  166. RelationDTO relation = RelationDTO.builder().graphCode(GRAPH_CODE)
  167. .relCode(REL_CODE).objFrom(floorId).objTo(floorOtherId).build();
  168. voList.add(relation);
  169. }
  170. // 组装上下文条件
  171. service.doSave(context, voList);
  172. return AdmResponse.success();
  173. }
  174. }