collect.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 Collect(r *GinRouter) {
  11. CreateCRUD(r, "/collect", &CRUDOption{
  12. Collection: repo.CollectionCollect,
  13. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  14. entity := &model.Collect{}
  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, err := primitive.ObjectIDFromHex(_userId)
  28. if err != nil {
  29. return nil, errors.New("非法用户")
  30. }
  31. entity.UserId = userId
  32. return entity, nil
  33. },
  34. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  35. return &model.Collect{}
  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, err := primitive.ObjectIDFromHex(_userId)
  41. if err != nil {
  42. // 6369f4b028c4bf8b14f47a6b
  43. invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
  44. query["userId"] = invalidId
  45. return query
  46. }
  47. query["userId"] = userId
  48. return query
  49. },
  50. SearchProject: []string{""},
  51. SearchPostProcess: func(page *repo.PageResult, _ *gin.Context, apictx *ApiSession, _ map[string]interface{}) (interface{}, error) {
  52. // 查询组装数据
  53. if len(page.List) > 0 {
  54. for _, v := range page.List {
  55. // 查询产品信息
  56. productId := v["productId"].(primitive.ObjectID)
  57. supplyId := v["supplyId"].(primitive.ObjectID)
  58. product := model.Product{}
  59. supply := model.Supply{}
  60. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  61. CollectName: repo.CollectionProduct,
  62. Query: repo.Map{"_id": productId},
  63. Project: []string{"name", "unit", "cover"},
  64. }, &product)
  65. // 供应商信息
  66. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  67. CollectName: repo.CollectionSupply,
  68. Query: repo.Map{"_id": supplyId},
  69. Project: []string{"name"},
  70. }, &supply)
  71. v["productName"] = product.Name
  72. v["productUnit"] = product.Unit
  73. v["productCover"] = product.Cover
  74. v["supplyName"] = supply.Name
  75. v["supplyAvatar"] = supply.Avatar
  76. v["supplyContact"] = supply.Contact
  77. }
  78. }
  79. return page, nil
  80. },
  81. })
  82. }