tree-query.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. package bus
  2. import (
  3. "assetcenter/db/repo"
  4. "encoding/json"
  5. "fmt"
  6. "go.mongodb.org/mongo-driver/bson"
  7. "infish.cn/comm"
  8. )
  9. type IteChildren func(n *comm.CategoryNode) []string
  10. type FindChild func(n *comm.CategoryNode, id string) []string
  11. func FindCategoryIds(c *comm.DbCategory, parents []string) ([]string, [][]string) {
  12. out := []string{}
  13. andOut := [][]string{}
  14. var allChildren IteChildren
  15. allChildren = func(n *comm.CategoryNode) []string {
  16. ids := []string{}
  17. if n == nil {
  18. return ids
  19. }
  20. ids = append(ids, n.Id)
  21. if n.Children != nil {
  22. for _, c := range n.Children {
  23. cids := allChildren(c)
  24. if len(cids) > 0 {
  25. ids = append(ids, cids...)
  26. }
  27. }
  28. }
  29. return ids
  30. }
  31. var findChildrens FindChild
  32. findChildrens = func(n *comm.CategoryNode, id string) []string {
  33. ids := []string{}
  34. if n == nil {
  35. return ids
  36. }
  37. if n.Id == id {
  38. ids = allChildren(n)
  39. return ids
  40. }
  41. if n.Children == nil {
  42. return ids
  43. }
  44. //查找孩子节点
  45. for _, c := range n.Children {
  46. ids = findChildrens(c, id)
  47. if len(ids) > 0 {
  48. break
  49. }
  50. }
  51. return ids
  52. }
  53. for _, v := range parents {
  54. for _, catnode := range c.Categories {
  55. extends := findChildrens(catnode, v)
  56. if len(extends) > 0 {
  57. andOut = append(andOut, extends)
  58. out = append(out, extends...)
  59. break
  60. }
  61. }
  62. }
  63. return out, andOut
  64. }
  65. func ParseCategories(query map[string]interface{}, repoSession *repo.RepoSession, dbConf *comm.AssetDbConf) error {
  66. filters := []bson.M{}
  67. keyfilters := []bson.M{}
  68. //keyword
  69. if query["keyword"] != nil {
  70. keyword := query["keyword"].(string)
  71. if len(keyword) > 0 {
  72. keyfilters = append(keyfilters, bson.M{"name": bson.M{"$regex": keyword, "$options": "$i"}})
  73. keyfilters = append(keyfilters, bson.M{"cusNum": bson.M{"$regex": keyword, "$options": "$i"}})
  74. filters = append(filters, bson.M{"$or": keyfilters})
  75. }
  76. query["keyword"] = nil
  77. }
  78. if query["cusCategories"] != nil && query["cateId"] != nil {
  79. categories := query["categories"].([]interface{})
  80. cateId := query["cateId"].(string)
  81. //查询所有子内容
  82. if len(categories) > 0 {
  83. cateConf := &comm.DbCategory{}
  84. filterCaties := []string{}
  85. //查询用户的
  86. ok, _ := repo.RepoSeachDoc(repoSession, &repo.DocSearchOptions{CollectName: repo.CollectionCategories, Query: repo.Map{"_id": cateId}}, cateConf)
  87. if !ok {
  88. return fmt.Errorf("cate get error")
  89. }
  90. for _, c := range categories {
  91. if c != nil {
  92. if str, ok := c.(string); ok {
  93. filterCaties = append(filterCaties, str)
  94. }
  95. }
  96. }
  97. extends, _ := FindCategoryIds(cateConf, filterCaties)
  98. if len(extends) > 0 {
  99. filter := bson.M{"categories": bson.M{"$elemMatch": bson.M{"$in": extends}}}
  100. filters = append(filters, filter)
  101. }
  102. }
  103. query["cusCategories"] = nil
  104. query["cateId"] = nil
  105. }
  106. if query["cusCategories"] != nil && query["cateConfJson"] != nil {
  107. categories := query["cusCategories"].([]interface{})
  108. cnfJson := query["cateConfJson"].(string)
  109. if len(cnfJson) > 0 {
  110. cateConf := &comm.DbCategory{}
  111. err := json.Unmarshal([]byte(cnfJson), cateConf)
  112. if err != nil {
  113. return fmt.Errorf("parse cateConfJson string error")
  114. }
  115. // filterCaties := []string{}
  116. for _, c := range categories { //每个对于一种分类
  117. currCate := c.(string)
  118. if len(currCate) > 0 {
  119. extends, _ := FindCategoryIds(cateConf, []string{currCate})
  120. if len(extends) > 0 {
  121. filter := bson.M{"cusCategories": bson.M{"$elemMatch": bson.M{"$in": extends}}}
  122. filters = append(filters, filter)
  123. }
  124. }
  125. // filterCaties = append(filterCaties, c.(string))
  126. }
  127. // extends := FindCategoryIds(cateConf, filterCaties)
  128. // if len(extends) > 0 {
  129. // filter := bson.M{"cusCategories": bson.M{"$elemMatch": bson.M{"$in": extends}}}
  130. // filters = append(filters, filter)
  131. // }
  132. }
  133. query["cusCategories"] = nil
  134. query["cateConfJson"] = nil
  135. }
  136. if query["categories"] != nil && dbConf.Db.Categories != nil {
  137. categories := query["categories"].([]interface{})
  138. delete(query, "categories")
  139. //查询所有子内容
  140. if len(categories) > 0 {
  141. cateConf := dbConf.Db.Categories
  142. filterCaties := []string{}
  143. for _, c := range categories {
  144. if c != nil {
  145. if str, ok := c.(string); ok {
  146. filterCaties = append(filterCaties, str)
  147. }
  148. }
  149. }
  150. oldextends, andExtends := FindCategoryIds(cateConf, filterCaties)
  151. // extends, andExtends := FindCategoryIds(cateConf, filterCaties)
  152. // if len(extends) > 0 {
  153. // filter := bson.M{"categories": bson.M{"$elemMatch": bson.M{"$in": extends}}}
  154. // filters = append(filters, filter)
  155. // }
  156. fmt.Println("old and :=============================================")
  157. fmt.Println(oldextends)
  158. fmt.Println(andExtends)
  159. // todo待测试
  160. // !多个分类筛选,包含在所有分类中
  161. andArrayCons := []bson.M{}
  162. // if len(andExtends) > 0 {
  163. // for _, cateCon := range andExtends {
  164. // if len(cateCon) > 0 {
  165. // andArrayCons = append(andArrayCons, bson.M{"categories": bson.M{"$elemMatch": bson.M{"$in": cateCon}}})
  166. // }
  167. // }
  168. // // !20250102 fix
  169. // if len(andArrayCons) > 0 {
  170. // filters = append(filters, bson.M{"$and": andArrayCons})
  171. // }
  172. // } else {
  173. // // !20250102 fix
  174. // // 如果没有子分类 传递的categories是叶子分类
  175. // query["categories"] = bson.M{"$elemMatch": bson.M{"$in": filterCaties}}
  176. // }
  177. if len(andExtends) > 0 {
  178. for _, cateCon := range andExtends {
  179. if len(cateCon) > 0 {
  180. andArrayCons = append(andArrayCons, bson.M{"categories": bson.M{"$elemMatch": bson.M{"$in": cateCon}}})
  181. }
  182. }
  183. }
  184. if len(andArrayCons) > 0 {
  185. filters = append(filters, bson.M{"$and": andArrayCons})
  186. }
  187. }
  188. // query["categories"] = nil
  189. }
  190. if len(filters) > 0 {
  191. query["$and"] = filters
  192. }
  193. fmt.Println("分类条件:==========================================>")
  194. fmt.Printf("%#v\n", query)
  195. return nil
  196. }