es.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package knowledge
  2. import (
  3. "context"
  4. "encoding/json"
  5. "eta_gn/eta_api/models/knowledge"
  6. "eta_gn/eta_api/utils"
  7. "fmt"
  8. "strconv"
  9. )
  10. // SearchChartInfoData 查询es中的图表数据
  11. func SearchKnowledgeResourceByEs(resourceType int, keywordStr string, showSysIds, classifyIds []int, sourceList []string, tagIds []int, isIncludeFile bool, from, size int) (list []*knowledge.KnowledgeResource, total int64, err error) {
  12. indexName := utils.EsKnowledgeResourceIndexName
  13. list = make([]*knowledge.KnowledgeResource, 0)
  14. defer func() {
  15. if err != nil {
  16. fmt.Println("SearchKnowledgeResource Err:", err.Error())
  17. utils.FileLog.Info("SearchKnowledgeResource Err:", err.Error())
  18. }
  19. }()
  20. client := utils.EsClient
  21. mustMap := make([]interface{}, 0)
  22. mustMap = append(mustMap, map[string]interface{}{
  23. "term": map[string]interface{}{
  24. "ResourceType": resourceType,
  25. },
  26. })
  27. //指标来源
  28. if len(showSysIds) > 0 {
  29. mustMap = append(mustMap, map[string]interface{}{
  30. "terms": map[string]interface{}{
  31. "SysUserId": showSysIds,
  32. },
  33. })
  34. }
  35. if len(tagIds) > 0 {
  36. mustMap = append(mustMap, map[string]interface{}{
  37. "terms": map[string]interface{}{
  38. "TagId": tagIds,
  39. },
  40. })
  41. }
  42. if len(sourceList) > 0 {
  43. mustMap = append(mustMap, map[string]interface{}{
  44. "terms": map[string]interface{}{
  45. "SourceFrom": sourceList,
  46. },
  47. })
  48. }
  49. if len(classifyIds) > 0 {
  50. mustMap = append(mustMap, map[string]interface{}{
  51. "terms": map[string]interface{}{
  52. "ClassifyId": classifyIds,
  53. },
  54. })
  55. }
  56. mustMap = append(mustMap, map[string]interface{}{
  57. "term": map[string]interface{}{
  58. "IsDelete": 0,
  59. },
  60. })
  61. if !isIncludeFile {
  62. mustMap = append(mustMap, map[string]interface{}{
  63. "term": map[string]interface{}{
  64. "IsFile": 0,
  65. },
  66. })
  67. }
  68. if keywordStr != "" {
  69. shouldMap := map[string]interface{}{
  70. "should": []interface{}{
  71. map[string]interface{}{
  72. "match": map[string]interface{}{
  73. "Title": keywordStr,
  74. },
  75. },
  76. // 因为关键词被分了,所以需要用下面的语句来让他 整个词 查询,从而加重整词的权重
  77. map[string]interface{}{
  78. "match": map[string]interface{}{
  79. "Title": map[string]interface{}{
  80. "query": keywordStr,
  81. "operator": "and",
  82. },
  83. },
  84. },
  85. },
  86. }
  87. mustMap = append(mustMap, map[string]interface{}{
  88. "bool": shouldMap,
  89. })
  90. }
  91. queryMap := map[string]interface{}{
  92. "query": map[string]interface{}{
  93. "bool": map[string]interface{}{
  94. "must": mustMap,
  95. },
  96. },
  97. }
  98. //根据条件数量统计
  99. requestTotalHits := client.Count(indexName).BodyJson(queryMap)
  100. total, err = requestTotalHits.Do(context.Background())
  101. if err != nil {
  102. return
  103. }
  104. // 分页查询
  105. queryMap["from"] = from
  106. queryMap["size"] = size
  107. jsonBytes, _ := json.Marshal(queryMap)
  108. fmt.Println(string(jsonBytes))
  109. request := client.Search(indexName).Source(queryMap) // sets the JSON request
  110. searchMap := make(map[string]string)
  111. searchResp, err := request.Do(context.Background())
  112. if err != nil {
  113. return
  114. }
  115. fmt.Println(searchResp)
  116. fmt.Println(searchResp.Status)
  117. if searchResp.Status != 0 {
  118. return
  119. }
  120. if searchResp.Hits != nil {
  121. for _, v := range searchResp.Hits.Hits {
  122. if _, ok := searchMap[v.Id]; !ok {
  123. itemJson, tmpErr := v.Source.MarshalJSON()
  124. if tmpErr != nil {
  125. err = tmpErr
  126. fmt.Println("movieJson err:", err)
  127. return
  128. }
  129. knowledgeItem := new(knowledge.KnowledgeResource)
  130. tmpErr = json.Unmarshal(itemJson, &knowledgeItem)
  131. if err != nil {
  132. fmt.Println("json.Unmarshal chartInfoJson err:", err)
  133. err = tmpErr
  134. return
  135. }
  136. list = append(list, knowledgeItem)
  137. searchMap[v.Id] = v.Id
  138. }
  139. }
  140. }
  141. return
  142. }
  143. // EsAddOrEditKnowledgeResource 新增/修改es中的知识资源数据
  144. func EsAddOrEditKnowledgeResource(item *knowledge.KnowledgeResource) (err error) {
  145. defer func() {
  146. if err != nil {
  147. fmt.Println("EsAddOrEditData Err:", err.Error())
  148. utils.FileLog.Info("EsAddOrEditKnowledgeResource err:", err)
  149. }
  150. }()
  151. indexName := utils.EsKnowledgeResourceIndexName
  152. client := utils.EsClient
  153. request := client.Index().Index(indexName).Id(strconv.Itoa(item.KnowledgeResourceId)).BodyJson(item)
  154. response, err := request.Do(context.Background())
  155. if err != nil {
  156. jsonBytes, _ := json.Marshal(item)
  157. fmt.Println("add json:", string(jsonBytes))
  158. fmt.Println("EsAddOrEditKnowledgeResource err:", err)
  159. return
  160. }
  161. if response.Status == 0 {
  162. err = fmt.Errorf("add knowledge resource to es failed, response result is %s", response.Result)
  163. err = nil
  164. } else {
  165. fmt.Println("EsAddOrEditKnowledgeResource:", response.Status, response.Result)
  166. }
  167. return
  168. }