CrawlerController.java 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package com.yihu.hos.central.rest.controllers;
  2. import com.yihu.ehr.util.rest.Envelop;
  3. import com.yihu.hos.central.rest.common.util.ImportDataToDataBase;
  4. import com.yihu.hos.central.rest.feign.RedisClient;
  5. import com.yihu.hos.central.rest.services.crawler.CrawlerManager;
  6. import com.yihu.hos.central.rest.services.qc.EsSimplePackage;
  7. import com.yihu.hos.central.rest.services.upload.UploadDetailService;
  8. import io.swagger.annotations.Api;
  9. import io.swagger.annotations.ApiOperation;
  10. import io.swagger.annotations.ApiParam;
  11. import org.springframework.beans.factory.annotation.Autowired;
  12. import org.springframework.web.bind.annotation.RequestMapping;
  13. import org.springframework.web.bind.annotation.RequestMethod;
  14. import org.springframework.web.bind.annotation.RequestParam;
  15. import org.springframework.web.bind.annotation.RestController;
  16. import java.sql.SQLException;
  17. import java.util.Arrays;
  18. import java.util.Date;
  19. /**
  20. * 从EHR 微服务获取档案数据,并写入到中间库
  21. * <p>
  22. * Created by Airhead on 2015/12/16.
  23. */
  24. @RequestMapping("/crawlerInsert")
  25. @RestController("crawlerInsertController")
  26. @Api(protocols = "http", value = "CrawlerController", description = "档案采集写入接口,用于从资源中获取数据并写入特定中间表中", tags = {"档案上传"})
  27. public class CrawlerController {
  28. @Autowired
  29. private CrawlerManager crawlerManager;
  30. @Autowired
  31. private UploadDetailService uploadDetailService;
  32. @Autowired
  33. private RedisClient redisClient;
  34. @RequestMapping(value = "/test", produces = "application/json;charset=UTF-8", method = RequestMethod.GET)
  35. @ApiOperation(value = "测试服务器可以正常连接", produces = "application/json", notes = "测试服务器可以正常连接")
  36. public String test() {
  37. System.out.println("接口调用成功?,日志乱码?");
  38. return "test";
  39. }
  40. @RequestMapping(value = "/testSql", produces = "application/json;charset=UTF-8", method = RequestMethod.POST)
  41. @ApiOperation(value = "测试sql语法", produces = "application/json", notes = "测试sql语法")
  42. public String testSql(
  43. @ApiParam(name = "sql", value = "sql", required = true)
  44. @RequestParam(value = "sql") String sql) throws SQLException {
  45. ImportDataToDataBase.exportSqlToOracle(Arrays.asList(sql));
  46. return "test";
  47. }
  48. @RequestMapping(value = "updateUploadDetail", method = RequestMethod.GET)
  49. @ApiOperation(value = "更新上传情况", produces = "application/json", notes = "更新上传情况")
  50. public void update() throws Exception {
  51. uploadDetailService.saveOrUpdate(new Date());
  52. }
  53. @RequestMapping(value = "/packQcReport/setStartTime", method = RequestMethod.GET)
  54. @ApiOperation(value = "设置上传数据集统计数据 - 抽取时间")
  55. public Envelop setStartTime(
  56. @ApiParam(name = "date", value = "日期", required = true)
  57. @RequestParam(value = "date") String date) throws Exception {
  58. Envelop envelop = new Envelop();
  59. redisClient.set("start_upload_date",date);
  60. envelop.setSuccessFlg(true);
  61. return envelop;
  62. }
  63. @RequestMapping(value = "test2", method = RequestMethod.GET)
  64. @ApiOperation(value = "测试接口,后续删除", produces = "application/json", notes = "test2")
  65. public void test2() throws Exception {
  66. EsSimplePackage pack = new EsSimplePackage();
  67. pack.setPatient_id("RY00278359");
  68. pack.setPatient_name("刘明");
  69. pack.setEvent_no("20180103-7394");
  70. pack.setEvent_type(0);
  71. pack.setEvent_date("2018-01-03 09:59:36");
  72. pack.setRowkey("492330267_20180103-7394_1514944776000");
  73. pack.setOrg_code("492330267");
  74. crawlerManager.collectProcessByRowkey(pack);
  75. }
  76. }