shopCart.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. // 供应链分组列表 算法版 map过滤supplyId 乱序
  98. // func shopCartList(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
  99. // var shopCarts []*model.ShopCart
  100. // userId, _ := primitive.ObjectIDFromHex(apictx.User.ID)
  101. // option := &repo.PageSearchOptions{
  102. // CollectName: repo.CollectionShopCart,
  103. // Query: repo.Map{"userId": userId},
  104. // }
  105. // repo.RepoDocsSearch(apictx.CreateRepoCtx(), option, &shopCarts)
  106. // supplyArr := map[primitive.ObjectID]struct{}{}
  107. // supplyList := make([]map[string]interface{}, 0)
  108. // if len(shopCarts) > 0 {
  109. // // 找出供应id 去重
  110. // for _, v := range shopCarts {
  111. // supplyArr[v.SupplyId] = struct{}{}
  112. // }
  113. // // supplyId分组列表
  114. // for k := range supplyArr {
  115. // // 查询产品信息
  116. // supply := model.Supply{}
  117. // // 供应商信息
  118. // repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  119. // CollectName: repo.CollectionSupply,
  120. // Query: repo.Map{"_id": k},
  121. // Project: []string{"name", "avatar", "contact"},
  122. // }, &supply)
  123. // products := make([]*model.ShopCart, 0)
  124. // for _, v := range shopCarts {
  125. // if k == v.SupplyId {
  126. // products = append(products, v)
  127. // }
  128. // }
  129. // supplyList = append(supplyList, map[string]interface{}{
  130. // "supply": supply,
  131. // "products": products,
  132. // })
  133. // }
  134. // }
  135. // return supplyList, nil
  136. // }
  137. // 供应链分组列表 数据库分组
  138. func shopCartGroupList(_ *gin.Context, apictx *ApiSession) (interface{}, error) {
  139. userId, _ := primitive.ObjectIDFromHex(apictx.User.ID)
  140. mongo := apictx.Svc.Mongo
  141. cond := []interface{}{
  142. bson.M{"$match": bson.M{"userId": userId}},
  143. bson.M{"$group": bson.M{"_id": "$supplyId", "products": bson.M{"$push": "$$ROOT"}}},
  144. bson.M{"$project": bson.M{"_id": 0, "supplyId": "$_id", "products": 1}},
  145. }
  146. tmp, err := mongo.GetCollection(repo.CollectionShopCart).Aggregate(context.Background(), cond)
  147. if err != nil {
  148. return nil, err
  149. }
  150. defer tmp.Close(context.Background())
  151. list := make([]map[string]interface{}, 0)
  152. tmp.All(context.Background(), &list)
  153. if len(list) > 0 {
  154. for _, item := range list {
  155. supply := model.Supply{}
  156. supplyId := item["supplyId"].(primitive.ObjectID)
  157. // 供应商信息
  158. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  159. CollectName: repo.CollectionSupply,
  160. Query: repo.Map{"_id": supplyId},
  161. }, &supply)
  162. item["supply"] = supply
  163. delete(item, "supplyId")
  164. }
  165. }
  166. return list, nil
  167. }