shopCart.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package api
  2. import (
  3. "3dshow/db/model"
  4. "3dshow/db/repo"
  5. "errors"
  6. "time"
  7. "github.com/gin-gonic/gin"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. )
  10. func ShopCart(r *GinRouter) {
  11. CreateCRUD(r, "/shopCart", &CRUDOption{
  12. Collection: repo.CollectionShopCart,
  13. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  14. entity := &model.ShopCart{}
  15. err := c.ShouldBindJSON(entity)
  16. if err != nil {
  17. return nil, errors.New("参数错误")
  18. }
  19. if len(entity.SupplyId) < 12 {
  20. return nil, errors.New("供应链id错误")
  21. }
  22. if len(entity.ProductId) < 12 {
  23. return nil, errors.New("商品id错误")
  24. }
  25. entity.CreateTime = time.Now()
  26. _userId := apictx.User.ID
  27. userId, _ := primitive.ObjectIDFromHex(_userId)
  28. entity.UserId = userId
  29. return entity, nil
  30. },
  31. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  32. return &model.ShopCart{}
  33. },
  34. JWT: true,
  35. SearchFilter: func(_ *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  36. _userId := apictx.User.ID
  37. userId, _ := primitive.ObjectIDFromHex(_userId)
  38. query["userId"] = userId
  39. return query
  40. },
  41. OnUpdate: func(_ *gin.Context, _ *ApiSession, entity interface{}) {
  42. ety := entity.(*model.ShopCart)
  43. ety.UpdateTime = time.Now()
  44. },
  45. SearchPostProcess: func(page *repo.PageResult, _ *gin.Context, apictx *ApiSession, _ map[string]interface{}) (interface{}, error) {
  46. // 查询组装数据
  47. if len(page.List) > 0 {
  48. for _, v := range page.List {
  49. // 查询产品信息
  50. supplyId := v["supplyId"].(primitive.ObjectID)
  51. supply := model.Supply{}
  52. // 供应商信息
  53. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  54. CollectName: repo.CollectionSupply,
  55. Query: repo.Map{"_id": supplyId},
  56. Project: []string{"name", "avatar", "contact"},
  57. }, &supply)
  58. v["supplyName"] = supply.Name
  59. v["supplyAvatar"] = supply.Avatar
  60. v["supplyContact"] = supply.Contact
  61. }
  62. }
  63. return page, nil
  64. },
  65. })
  66. }