address.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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(c *gin.Context, apictx *ApiSession, entity interface{}) {
  39. },
  40. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  41. return &model.Address{}
  42. },
  43. JWT: true,
  44. SearchFilter: func(_ *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  45. _userId := apictx.User.ID
  46. userId, err := primitive.ObjectIDFromHex(_userId)
  47. if err != nil {
  48. // 6369f4b028c4bf8b14f47a6b
  49. invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
  50. query["userId"] = invalidId
  51. return query
  52. }
  53. query["userId"] = userId
  54. return query
  55. },
  56. SearchProject: []string{"province", "city", "area", "addr", "contact", "phone", "defualt", "createTime"},
  57. DetailProject: []string{"province", "city", "area", "addr", "contact", "phone", "defualt", "createTime"},
  58. })
  59. }