GenericApi.java 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.scbfkj.uni.api;
  2. import com.scbfkj.uni.library.RequestUtil;
  3. import com.scbfkj.uni.process.DataBase;
  4. import com.scbfkj.uni.service.DataProcessService;
  5. import com.scbfkj.uni.system.Config;
  6. import org.springframework.http.HttpStatusCode;
  7. import org.springframework.http.ResponseEntity;
  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.RestController;
  12. import java.util.Collections;
  13. import java.util.HashMap;
  14. import java.util.List;
  15. import java.util.Map;
  16. @RestController
  17. @RequestMapping("openApi")
  18. public class GenericApi {
  19. @PostMapping({"newdata", "modifydata", "movedata", "query"})
  20. public ResponseEntity<Map<String,Object>> base(@RequestBody Map<String, Object> body) throws Exception {
  21. String uri = RequestUtil.getUri();
  22. String event = "0";
  23. if (uri.endsWith("newdata")) {
  24. event = "1";
  25. } else if (uri.endsWith("modifydata")) {
  26. event = "2";
  27. } else if (uri.endsWith("movedata")) {
  28. event = "3";
  29. } else if (uri.endsWith("query")) {
  30. event = "0";
  31. }
  32. body.put("event", event);
  33. Map<String, Object> process = DataProcessService.process(body);
  34. return ResponseEntity.ok(process);
  35. }
  36. /**
  37. * 匹配服务的暴露的接口
  38. *
  39. * @param body
  40. * @return
  41. * @throws Exception
  42. */
  43. @PostMapping("{path}")
  44. public ResponseEntity<Map<String,Object>> matchService(@RequestBody Map<String, Object> body) throws Exception {
  45. String uri = RequestUtil.getUri();
  46. List<Map<String, Object>> serviceinfoList = DataBase.query(Config.centerConnectionStr, "select * from serviceinfo where urilist like concat('%',?,'%')", Collections.singletonList(new Object[]{"/openApi/%s".formatted(uri)}));
  47. if (serviceinfoList.isEmpty()) {
  48. return ResponseEntity.status(HttpStatusCode.valueOf(404)).build();
  49. }
  50. Object serviceid = serviceinfoList.get(0).get("serviceid");
  51. body.put("serviceid",serviceid);
  52. return ResponseEntity.ok(body);
  53. }
  54. }