shopCart.go 3.1 KB

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