collect.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. c.ShouldBindJSON(entity)
  16. entity.CreateTime = time.Now()
  17. _userId := apictx.User.ID
  18. userId, err := primitive.ObjectIDFromHex(_userId)
  19. if err != nil {
  20. return nil, errors.New("非法用户")
  21. }
  22. entity.UserId = userId
  23. return entity, nil
  24. },
  25. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  26. return &model.Collect{}
  27. },
  28. JWT: true,
  29. SearchFilter: func(_ *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  30. _userId := apictx.User.ID
  31. userId, err := primitive.ObjectIDFromHex(_userId)
  32. if err != nil {
  33. // 6369f4b028c4bf8b14f47a6b
  34. invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
  35. query["userId"] = invalidId
  36. return query
  37. }
  38. query["userId"] = userId
  39. return query
  40. },
  41. SearchPostProcess: func(page *repo.PageResult, _ *gin.Context, apictx *ApiSession, _ map[string]interface{}) (interface{}, error) {
  42. // 查询组装数据
  43. if len(page.List) > 0 {
  44. for _, v := range page.List {
  45. // 查询产品信息
  46. productId := v["productId"].(primitive.ObjectID)
  47. supplyId := v["supplyId"].(primitive.ObjectID)
  48. product := model.Product{}
  49. supply := model.Supply{}
  50. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  51. CollectName: repo.CollectionProduct,
  52. Query: repo.Map{"_id": productId},
  53. Project: []string{"name", "unit", "cover"},
  54. }, &product)
  55. // 供应商信息
  56. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  57. CollectName: repo.CollectionSupply,
  58. Query: repo.Map{"_id": supplyId},
  59. Project: []string{"name"},
  60. }, &supply)
  61. v["productName"] = product.Name
  62. v["productUnit"] = product.Unit
  63. v["productCover"] = product.Cover
  64. v["supplyName"] = supply.Name
  65. v["supplyAvatar"] = supply.Avatar
  66. v["supplyContact"] = supply.Contact
  67. }
  68. }
  69. return page, nil
  70. },
  71. })
  72. }