collect.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. 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. productId := v["productId"].(primitive.ObjectID)
  56. supplyId := v["supplyId"].(primitive.ObjectID)
  57. product := model.Product{}
  58. supply := model.Supply{}
  59. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  60. CollectName: repo.CollectionProduct,
  61. Query: repo.Map{"_id": productId},
  62. Project: []string{"name", "unit", "cover"},
  63. }, &product)
  64. // 供应商信息
  65. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  66. CollectName: repo.CollectionSupply,
  67. Query: repo.Map{"_id": supplyId},
  68. Project: []string{"name", "avatar", "contact"},
  69. }, &supply)
  70. v["productName"] = product.Name
  71. v["productUnit"] = product.Unit
  72. v["productCover"] = product.Cover
  73. v["supplyName"] = supply.Name
  74. v["supplyAvatar"] = supply.Avatar
  75. v["supplyContact"] = supply.Contact
  76. }
  77. }
  78. return page, nil
  79. },
  80. })
  81. }