address.go 2.7 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 Address(r *GinRouter) {
  11. CreateCRUD(r, "/address", &CRUDOption{
  12. Collection: repo.CollectionAddress,
  13. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  14. entity := &model.Address{}
  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. if entity.Addr == "" {
  23. return nil, errors.New("地址不能为空")
  24. }
  25. if entity.Contact == "" {
  26. return nil, errors.New("联系人不能为空")
  27. }
  28. entity.UserId = userId
  29. // 默认设置第一条数据为默认数据
  30. first, _ := repo.RepoCountDoc(apictx.CreateRepoCtx(), repo.CollectionAddress, repo.Map{"userId": userId})
  31. if first > 0 {
  32. entity.Defualt = -1
  33. } else {
  34. entity.Defualt = 1
  35. }
  36. return entity, nil
  37. },
  38. OnUpdate: func(_ *gin.Context, apictx *ApiSession, entity interface{}) {
  39. address := entity.(*model.Address)
  40. _userId := apictx.User.ID
  41. userId, err := primitive.ObjectIDFromHex(_userId)
  42. if err != nil {
  43. invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
  44. userId = invalidId
  45. }
  46. // 更改默认地址的流程
  47. if address.Defualt == 1 {
  48. // 将已有的默认地址更改为非默认
  49. opt := repo.PageSearchOptions{
  50. CollectName: repo.CollectionAddress,
  51. Query: repo.Map{"userId": userId, "defualt": 1},
  52. Project: []string{"_id"},
  53. }
  54. defs := make([]*model.Address, 0)
  55. repo.RepoDocsSearch(apictx.CreateRepoCtx(), &opt, &defs)
  56. if len(defs) > 0 {
  57. for _, v := range defs {
  58. // 设置为非默认
  59. repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionAddress, v.Id.Hex(), &model.Address{Defualt: -1})
  60. }
  61. }
  62. }
  63. },
  64. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  65. return &model.Address{}
  66. },
  67. JWT: true,
  68. SearchFilter: func(_ *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  69. _userId := apictx.User.ID
  70. userId, err := primitive.ObjectIDFromHex(_userId)
  71. if err != nil {
  72. // 6369f4b028c4bf8b14f47a6b
  73. invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
  74. query["userId"] = invalidId
  75. return query
  76. }
  77. query["userId"] = userId
  78. return query
  79. },
  80. SearchProject: []string{"province", "city", "area", "addr", "contact", "phone", "defualt", "createTime"},
  81. DetailProject: []string{"province", "city", "area", "addr", "contact", "phone", "defualt", "createTime"},
  82. })
  83. }