category.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package repo
  2. import (
  3. "fmt"
  4. "mats/utils"
  5. "go.mongodb.org/mongo-driver/bson"
  6. "go.mongodb.org/mongo-driver/bson/primitive"
  7. )
  8. func CategoryExtend(categories []string, ctx *RepoSession) []string {
  9. out := []string{}
  10. cateIds := []primitive.ObjectID{}
  11. for _, cate := range categories {
  12. id, _ := primitive.ObjectIDFromHex(cate)
  13. cateIds = append(cateIds, id)
  14. }
  15. ok, cateItems := RepoSeachDocsMap(ctx, &DocsSearchOptions{CollectName: CollectionLibCategory, Query: Map{"_id": bson.M{"$in": cateIds}}, Project: []string{"orderId", "type"}})
  16. if !ok {
  17. return out
  18. }
  19. filters := []bson.M{}
  20. for _, item := range cateItems {
  21. orderId := item["orderId"].(int64)
  22. //ok, cateItems := RepoSeachDocsMap(ctx, &DocsSearchOptions{CollectName: CollectionLibCategory, Query: Map{"_id": bson.M{"$in": cateIds}}, Project: []string{"orderId", "type"}})
  23. fmt.Println(orderId)
  24. minId, maxId := utils.OrderIdRange(orderId)
  25. f := bson.M{"orderId": bson.M{"$gte": minId, "$lt": maxId}, "type": item["type"].(string)}
  26. filters = append(filters, f)
  27. }
  28. ok, extendsItems := RepoSeachDocsMap(ctx, &DocsSearchOptions{CollectName: CollectionLibCategory, Query: Map{"$or": filters}, Project: []string{"_id"}})
  29. if !ok {
  30. return out
  31. }
  32. for _, item := range extendsItems {
  33. out = append(out, item["_id"].(primitive.ObjectID).Hex())
  34. }
  35. fmt.Println(filters)
  36. return out
  37. }
  38. func CategoryExtendList(categories []string, ctx *RepoSession) []map[string]interface{} {
  39. out := []map[string]interface{}{}
  40. cateIds := []primitive.ObjectID{}
  41. for _, cate := range categories {
  42. id, _ := primitive.ObjectIDFromHex(cate)
  43. cateIds = append(cateIds, id)
  44. }
  45. ok, cateItems := RepoSeachDocsMap(ctx, &DocsSearchOptions{CollectName: CollectionLibCategory, Query: Map{"_id": bson.M{"$in": cateIds}}, Project: []string{"orderId", "type"}})
  46. if !ok {
  47. return out
  48. }
  49. filters := []bson.M{}
  50. for _, item := range cateItems {
  51. orderId := item["orderId"].(int64)
  52. //ok, cateItems := RepoSeachDocsMap(ctx, &DocsSearchOptions{CollectName: CollectionLibCategory, Query: Map{"_id": bson.M{"$in": cateIds}}, Project: []string{"orderId", "type"}})
  53. fmt.Println(orderId)
  54. minId, maxId := utils.OrderIdRange(orderId)
  55. f := bson.M{"orderId": bson.M{"$gte": minId, "$lt": maxId}, "type": item["type"].(string)}
  56. filters = append(filters, f)
  57. }
  58. _, extendsItems := RepoSeachDocsMap(ctx, &DocsSearchOptions{CollectName: CollectionLibCategory, Query: Map{"$or": filters}, Project: []string{"name", "type", "parent", "createTime", "type", "value", "level", "orderId"}})
  59. return extendsItems
  60. }