shopCart.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. package api
  2. import (
  3. "3dshow/db/model"
  4. "3dshow/db/repo"
  5. "context"
  6. "errors"
  7. "fmt"
  8. "time"
  9. "github.com/gin-gonic/gin"
  10. "go.mongodb.org/mongo-driver/bson"
  11. "go.mongodb.org/mongo-driver/bson/primitive"
  12. )
  13. func ShopCart(r *GinRouter) {
  14. r.POSTJWT("/shopCart/deleteBatch", ShopCartDeleteBatch)
  15. r.GETJWT("/shopCart/groupList", shopCartGroupList)
  16. CreateCRUD(r, "/shopCart", &CRUDOption{
  17. Collection: repo.CollectionShopCart,
  18. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  19. entity := &model.ShopCart{}
  20. err := c.ShouldBindJSON(entity)
  21. if err != nil {
  22. return nil, errors.New("参数错误")
  23. }
  24. if len(entity.SupplyId) < 12 {
  25. return nil, errors.New("供应链id错误")
  26. }
  27. if len(entity.ProductId) < 12 {
  28. return nil, errors.New("商品id错误")
  29. }
  30. entity.CreateTime = time.Now()
  31. _userId := apictx.User.ID
  32. userId, _ := primitive.ObjectIDFromHex(_userId)
  33. entity.UserId = userId
  34. return entity, nil
  35. },
  36. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  37. return &model.ShopCart{}
  38. },
  39. JWT: true,
  40. SearchFilter: func(_ *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  41. _userId := apictx.User.ID
  42. userId, _ := primitive.ObjectIDFromHex(_userId)
  43. query["userId"] = userId
  44. return query
  45. },
  46. OnUpdate: func(_ *gin.Context, _ *ApiSession, entity interface{}) {
  47. ety := entity.(*model.ShopCart)
  48. ety.UpdateTime = time.Now()
  49. },
  50. SearchPostProcess: func(page *repo.PageResult, _ *gin.Context, apictx *ApiSession, _ map[string]interface{}) (interface{}, error) {
  51. // 查询组装数据
  52. if len(page.List) > 0 {
  53. for _, v := range page.List {
  54. // 查询产品信息
  55. supplyId := v["supplyId"].(primitive.ObjectID)
  56. supply := model.Supply{}
  57. // 供应商信息
  58. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  59. CollectName: repo.CollectionSupply,
  60. Query: repo.Map{"_id": supplyId},
  61. Project: []string{"name", "avatar", "contact"},
  62. }, &supply)
  63. v["supplyName"] = supply.Name
  64. v["supplyAvatar"] = supply.Avatar
  65. v["supplyContact"] = supply.Contact
  66. }
  67. }
  68. return page, nil
  69. },
  70. })
  71. }
  72. // 批量删除
  73. type ShopCartDeleteBatchReq struct {
  74. Ids []string `json:"ids"`
  75. }
  76. func ShopCartDeleteBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  77. var form ShopCartDeleteBatchReq
  78. err := c.ShouldBindJSON(&form)
  79. if err != nil {
  80. fmt.Println(form)
  81. return nil, errors.New("参数错误")
  82. }
  83. if len(form.Ids) > 0 {
  84. // 批量删除
  85. for _, v := range form.Ids {
  86. // id 错误
  87. _, err := primitive.ObjectIDFromHex(v)
  88. if err != nil {
  89. continue
  90. }
  91. // 删除
  92. repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionShopCart, v)
  93. }
  94. }
  95. return true, nil
  96. }
  97. // 供应链分组列表 数据库分组
  98. func shopCartGroupList(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
  99. userId, _ := primitive.ObjectIDFromHex(apictx.User.ID)
  100. mongo := apictx.Svc.Mongo
  101. cond := []interface{}{
  102. bson.M{"$match": bson.M{"userId": userId}},
  103. bson.M{"$group": bson.M{"_id": "$supplyId", "products": bson.M{"$push": "$$ROOT"}}},
  104. bson.M{"$project": bson.M{"_id": 0, "supplyId": "$_id", "products": 1}},
  105. }
  106. tmp, err := mongo.GetCollection(repo.CollectionShopCart).Aggregate(context.Background(), cond)
  107. if err != nil {
  108. return nil, err
  109. }
  110. defer tmp.Close(context.Background())
  111. list := make([]map[string]interface{}, 0)
  112. tmp.All(context.Background(), &list)
  113. if len(list) > 0 {
  114. for _, item := range list {
  115. supply := model.Supply{}
  116. supplyId := item["supplyId"].(primitive.ObjectID)
  117. // 供应商信息
  118. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  119. CollectName: repo.CollectionSupply,
  120. Query: repo.Map{"_id": supplyId},
  121. }, &supply)
  122. item["supply"] = supply
  123. delete(item, "supplyId")
  124. }
  125. }
  126. return list, nil
  127. }