Ver código fonte

add shopcart api

animeic 2 anos atrás
pai
commit
d8ad6e32fa
3 arquivos alterados com 85 adições e 24 exclusões
  1. 12 4
      3dshow/api/collect.go
  2. 0 1
      3dshow/api/service.go
  3. 73 19
      3dshow/api/shopCart.go

+ 12 - 4
3dshow/api/collect.go

@@ -11,7 +11,6 @@ import (
 )
 
 func Collect(r *GinRouter) {
-
 	CreateCRUD(r, "/collect", &CRUDOption{
 		Collection: repo.CollectionCollect,
 		NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
@@ -28,9 +27,18 @@ func Collect(r *GinRouter) {
 			}
 			entity.CreateTime = time.Now()
 			_userId := apictx.User.ID
-			userId, err := primitive.ObjectIDFromHex(_userId)
-			if err != nil {
-				return nil, errors.New("非法用户")
+			userId, _ := primitive.ObjectIDFromHex(_userId)
+
+			// 同一用户对同一产品只能有一条收藏记录
+			// 联合唯一索引 db.collect.ensureIndex({userId:1,productId:1},{unique:true})
+			opt := &repo.DocSearchOptions{
+				CollectName: repo.CollectionCollect,
+				Query:       repo.Map{"userId": userId, "productId": entity.ProductId},
+			}
+			collect := &model.Collect{}
+			found, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), opt, &collect)
+			if found {
+				return entity, errors.New("该物品已被收藏")
 			}
 
 			entity.UserId = userId

+ 0 - 1
3dshow/api/service.go

@@ -60,7 +60,6 @@ func CreateCRUD(router *GinRouter, prefix string, option *CRUDOption) {
 
 			m := option.EmtyModel(c, apictx)
 			err := c.ShouldBindJSON(m)
-
 			if err != nil {
 				fmt.Println(err)
 				return nil, NewError("参数解析错误")

+ 73 - 19
3dshow/api/shopCart.go

@@ -4,6 +4,7 @@ import (
 	"3dshow/db/model"
 	"3dshow/db/repo"
 	"errors"
+	"fmt"
 	"time"
 
 	"github.com/gin-gonic/gin"
@@ -11,6 +12,8 @@ import (
 )
 
 func ShopCart(r *GinRouter) {
+	r.POSTJWT("/shopCart/deleteBatch", ShopCartDeleteBatch)
+	r.GETJWT("/shopCart/groupList", shopCartList)
 
 	CreateCRUD(r, "/shopCart", &CRUDOption{
 		Collection: repo.CollectionShopCart,
@@ -47,26 +50,77 @@ func ShopCart(r *GinRouter) {
 			ety := entity.(*model.ShopCart)
 			ety.UpdateTime = time.Now()
 		},
-		SearchPostProcess: func(page *repo.PageResult, _ *gin.Context, apictx *ApiSession, _ map[string]interface{}) (interface{}, error) {
-			// 查询组装数据
-			if len(page.List) > 0 {
-				for _, v := range page.List {
-					// 查询产品信息
-					supplyId := v["supplyId"].(primitive.ObjectID)
-					supply := model.Supply{}
-					// 供应商信息
-					repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
-						CollectName: repo.CollectionSupply,
-						Query:       repo.Map{"_id": supplyId},
-						Project:     []string{"name", "avatar", "contact"},
-					}, &supply)
-					v["supplyName"] = supply.Name
-					v["supplyAvatar"] = supply.Avatar
-					v["supplyContact"] = supply.Contact
+	})
+}
+
+type ShopCartDeleteBatchReq struct {
+	Ids []string `json:"ids"`
+}
+
+func ShopCartDeleteBatch(c *gin.Context, apictx *ApiSession) (interface{}, error) {
+	var form ShopCartDeleteBatchReq
+	err := c.ShouldBindJSON(&form)
+	if err != nil {
+		fmt.Println(form)
+		return nil, errors.New("参数错误")
+	}
+	if len(form.Ids) > 0 {
+		// 批量删除
+		for _, v := range form.Ids {
+			// id 错误
+			_, err := primitive.ObjectIDFromHex(v)
+			if err != nil {
+				continue
+			}
+			// 删除
+			repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionShopCart, v)
+
+		}
+	}
+
+	return true, nil
+}
+
+func shopCartList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
+	var shopCarts []*model.ShopCart
+	userId, _ := primitive.ObjectIDFromHex(apictx.User.ID)
+	option := &repo.PageSearchOptions{
+		CollectName: repo.CollectionShopCart,
+		Query:       repo.Map{"userId": userId},
+	}
+
+	repo.RepoDocsSearch(apictx.CreateRepoCtx(), option, &shopCarts)
+
+	supplyArr := map[primitive.ObjectID]struct{}{}
+	supplyList := make([]map[string]interface{}, 0)
+
+	if len(shopCarts) > 0 {
+		for _, v := range shopCarts {
+			supplyArr[v.SupplyId] = struct{}{}
+		}
+		// supplyId分组列表
+		for k, _ := range supplyArr {
+			// 查询产品信息
+			supply := model.Supply{}
+			// 供应商信息
+			repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
+				CollectName: repo.CollectionSupply,
+				Query:       repo.Map{"_id": k},
+				Project:     []string{"name", "avatar", "contact"},
+			}, &supply)
+			products := make([]*model.ShopCart, 0)
+			for _, v := range shopCarts {
+				if k == v.SupplyId {
+					products = append(products, v)
 
 				}
 			}
-			return page, nil
-		},
-	})
+			supplyList = append(supplyList, map[string]interface{}{
+				"supply":   supply,
+				"products": products,
+			})
+		}
+	}
+
+	return supplyList, nil
 }