StdCenterEndPoint.java 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package com.yihu.hos.standard.controller;
  2. import com.yihu.hos.config.JsonDateValueProcessor;
  3. import com.yihu.hos.core.constants.MicroServices;
  4. import com.yihu.hos.standard.model.standard.*;
  5. import com.yihu.hos.standard.service.standard.*;
  6. import com.yihu.hos.web.framework.model.standard.StandardVersion;
  7. import com.yihu.hos.web.framework.util.controller.BaseController;
  8. import io.swagger.annotations.Api;
  9. import io.swagger.annotations.ApiOperation;
  10. import io.swagger.annotations.ApiParam;
  11. import net.sf.json.JSONArray;
  12. import net.sf.json.JsonConfig;
  13. import org.apache.commons.collections.CollectionUtils;
  14. import org.apache.commons.lang.StringUtils;
  15. import org.springframework.beans.factory.annotation.Autowired;
  16. import org.springframework.beans.factory.annotation.Value;
  17. import org.springframework.web.bind.annotation.RequestMapping;
  18. import org.springframework.web.bind.annotation.RequestMethod;
  19. import org.springframework.web.bind.annotation.RequestParam;
  20. import org.springframework.web.bind.annotation.RestController;
  21. import java.io.IOException;
  22. import java.text.ParseException;
  23. import java.util.ArrayList;
  24. import java.util.Date;
  25. import java.util.List;
  26. @RestController("StdCenterEndPoint")
  27. @RequestMapping(value = MicroServices.ApiVersion.Version1_0+"/standardCenter")
  28. @Api(description = "获取标准列表相关接口")
  29. public class StdCenterEndPoint extends BaseController {
  30. @Autowired
  31. private STDVersionService stdVersionService;
  32. @Autowired
  33. private StdDatasetService stdDatasetService;
  34. @Autowired
  35. private StdMetadataService stdMetadataService;
  36. @Autowired
  37. private StdDictService stdDictService;
  38. @Autowired
  39. private StdDictEntryService stdDictEntryService;
  40. @Autowired
  41. private StdIndexService stdIndexService;
  42. @Autowired
  43. private StdRelationService stdRelationService;
  44. @Autowired
  45. private StandardService standardService;
  46. @Value("${org_code}")
  47. private String defaultOrgCode;
  48. @RequestMapping(value="/stdInfo/list",method = RequestMethod.GET)
  49. @ApiOperation(value = "获取版本列表", produces = "application/json", notes = "获取版本列表")
  50. public String getStdInfo(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  51. @RequestParam(value = "filters", required = false) String filters) throws ParseException {
  52. List<StandardModel> list = standardService.search(null, filters, null, null, null);
  53. JSONArray json = JSONArray.fromObject(list);
  54. return json.toString();
  55. }
  56. @RequestMapping(value="/version/list",method = RequestMethod.GET)
  57. @ApiOperation(value = "获取版本号列表", produces = "application/json", notes = "获取版本号列表")
  58. public String getVersions(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  59. @RequestParam(value = "filters", required = false) String filters) throws ParseException {
  60. List versions = stdVersionService.search(null, filters, null, null, null);
  61. JsonConfig config = new JsonConfig();
  62. config.registerJsonValueProcessor(Date.class, new JsonDateValueProcessor());
  63. JSONArray json = JSONArray.fromObject(versions, config);
  64. return json.toString();
  65. }
  66. @RequestMapping(value="/dataset/list",method = RequestMethod.GET)
  67. @ApiOperation(value = "获取数据集列表", produces = "application/json", notes = "获取数据集列表")
  68. public String getDatasetList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  69. @RequestParam(value = "filters", required = false) String filters,
  70. @ApiParam(name = "version", value = "版本", defaultValue = "")
  71. @RequestParam(value = "version") String version) throws IOException {
  72. List<StdDataSetModel> list = stdDatasetService.searchPage(StdDataSetModel.class, StandardVersion.DataSetTable,version, filters, null, null, null,true);
  73. JSONArray json = JSONArray.fromObject(list);
  74. return json.toString();
  75. }
  76. @RequestMapping(value="/metadata/list",method = RequestMethod.GET)
  77. @ApiOperation(value = "获取数据元列表", produces = "application/json", notes = "获取数据元列表")
  78. public String getMetadataList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  79. @RequestParam(value = "filters", required = false) String filters,
  80. @ApiParam(name = "version", value = "版本", defaultValue = "")
  81. @RequestParam(value = "version") String version) throws IOException {
  82. List<StdMetaDataModel> list = stdMetadataService.searchPage(StdMetaDataModel.class, StandardVersion.MetaDataTable,version, filters, null, null, null,true);
  83. JSONArray json = JSONArray.fromObject(list);
  84. return json.toString();
  85. }
  86. @RequestMapping(value="/dict/list",method = RequestMethod.GET)
  87. @ApiOperation(value = "获取标准字典列表", produces = "application/json", notes = "获取标准字典列表")
  88. public String getDictList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  89. @RequestParam(value = "filters", required = false) String filters,
  90. @ApiParam(name = "version", value = "版本", defaultValue = "")
  91. @RequestParam(value = "version") String version) throws IOException {
  92. List<StdDictionaryModel> list = stdDictService.searchPage(StdDictionaryModel.class, StandardVersion.DictTable,version, filters, null, null, null,true);
  93. JsonConfig config = new JsonConfig();
  94. config.registerJsonValueProcessor(Date.class, new JsonDateValueProcessor());
  95. JSONArray json = JSONArray.fromObject(list, config);
  96. return json.toString();
  97. }
  98. @RequestMapping(value="/dictItem/list",method = RequestMethod.GET)
  99. @ApiOperation(value = "获取标准字典项列表", produces = "application/json", notes = "获取标准字典项列表")
  100. public String getDictItemList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  101. @RequestParam(value = "filters", required = false) String filters,
  102. @ApiParam(name = "version", value = "版本", defaultValue = "")
  103. @RequestParam(value = "version") String version) throws IOException {
  104. List<StdDictionaryEntryModel> list = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,version, filters, null, null, null,true);
  105. JSONArray json = JSONArray.fromObject(list);
  106. return json.toString();
  107. }
  108. @RequestMapping(value="/datasetIndex/list",method = RequestMethod.GET)
  109. @ApiOperation(value = "获取标准索引列表", produces = "application/json", notes = "获取标准索引列表")
  110. public String getDatasetIndexList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  111. @RequestParam(value = "filters", required = false) String filters,
  112. @ApiParam(name = "version", value = "版本", defaultValue = "")
  113. @RequestParam(value = "version") String version) throws IOException {
  114. List<StdIndex> list = stdIndexService.searchPage(StdIndex.class, StandardVersion.StdIndexTable,version, filters, null, null, null,true);
  115. JSONArray json = JSONArray.fromObject(list);
  116. return json.toString();
  117. }
  118. @RequestMapping(value="/relation/list",method = RequestMethod.GET)
  119. @ApiOperation(value = "获取版本号列表", produces = "application/json", notes = "获取版本号列表")
  120. public String getRelation(@ApiParam(name = "version", value = "版本", defaultValue = "")
  121. @RequestParam(value = "version") String version,
  122. @ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  123. @RequestParam(value = "filters", required = false) String filters) throws IOException {
  124. List<StdDatasetRelation> list = stdRelationService.searchPage(StdDatasetRelation.class, StandardVersion.StdRelationTable,version, filters, null, null, null,true);
  125. JSONArray json = JSONArray.fromObject(list);
  126. return json.toString();
  127. }
  128. @RequestMapping(value="/lastDictItem/list",method = RequestMethod.GET)
  129. @ApiOperation(value = "根据字典code,获取健康之路最新的字典项", produces = "application/json", notes = "根据字典code,获取健康之路最新的字典项")
  130. public List getLastDictItem(@ApiParam(name = "code", value = "字典code", defaultValue = "")
  131. @RequestParam(value = "code") String code,
  132. @ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
  133. @RequestParam(value = "filters", required = false) String filters) throws IOException {
  134. List result = new ArrayList();
  135. String ver = standardService.getLastStandByOrgCode(defaultOrgCode);
  136. if(StringUtils.isNotBlank(ver)){
  137. List<StdDictionaryModel> list = stdDictService.searchPage(StdDictionaryModel.class, StandardVersion.DictTable,ver, "code="+code, null, null, null,true);
  138. if(CollectionUtils.isNotEmpty(list)){
  139. Long id = list.get(0).getId();
  140. if(StringUtils.isBlank(filters)){
  141. result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id, null, null, null,true);
  142. }else{
  143. result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id+";"+filters, null, null, null,true);
  144. }
  145. }
  146. }
  147. return result;
  148. }
  149. }