user.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package repo
  2. import (
  3. "fmt"
  4. "mats/db/model"
  5. "time"
  6. "go.mongodb.org/mongo-driver/bson"
  7. "go.mongodb.org/mongo-driver/bson/primitive"
  8. "go.mongodb.org/mongo-driver/mongo"
  9. "go.mongodb.org/mongo-driver/mongo/options"
  10. )
  11. func UserSearchByPhoneAndPwd(ctx *RepoSession, phone string, pwdMd5 string) (*model.User, error) {
  12. users := ctx.Client.GetCollection(CollectionUser)
  13. filter := bson.M{"phone": phone, "password": pwdMd5}
  14. opt := &options.FindOneOptions{Projection: bson.M{"_id": 1, "phone": 1, "lastLogin": 1, "createTime": 1, "avatar": 1, "name": 1, "company": 1, "city": 1, "desc": 1, "email": 1}}
  15. out := &model.User{}
  16. err := users.FindOne(ctx.Ctx, filter, opt).Decode(out)
  17. if err == mongo.ErrNoDocuments {
  18. return nil, nil
  19. }
  20. if err != nil {
  21. return nil, err
  22. }
  23. return out, nil
  24. }
  25. func UserSearchByPhone(ctx *RepoSession, phone string) (*model.User, error) {
  26. users := ctx.Client.GetCollection(CollectionUser)
  27. filter := bson.M{"phone": phone}
  28. opt := &options.FindOneOptions{Projection: bson.M{"_id": 1, "phone": 1, "lastLogin": 1, "createTime": 1, "avatar": 1, "name": 1, "company": 1, "city": 1, "desc": 1, "email": 1}}
  29. out := &model.User{}
  30. err := users.FindOne(ctx.Ctx, filter, opt).Decode(out)
  31. if err == mongo.ErrNoDocuments {
  32. return nil, nil
  33. }
  34. if err != nil {
  35. return nil, err
  36. }
  37. return out, nil
  38. }
  39. func UserSearchById(ctx *RepoSession, id string) (*model.User, error) {
  40. users := ctx.Client.GetCollection(CollectionUser)
  41. objId, _ := primitive.ObjectIDFromHex(id)
  42. filter := bson.M{"_id": objId}
  43. opt := &options.FindOneOptions{Projection: bson.M{"phone": 1, "teamId": 1, "isPlatform": 1, "roles": 1, "lastLogin": 1, "canDeployDesign": 1, "createTime": 1, "avatar": 1, "name": 1, "company": 1, "city": 1, "desc": 1, "email": 1, "editorSet": 1}}
  44. out := &model.User{}
  45. err := users.FindOne(ctx.Ctx, filter, opt).Decode(out)
  46. if err == mongo.ErrNoDocuments {
  47. return nil, nil
  48. }
  49. if err != nil {
  50. return nil, err
  51. }
  52. return out, nil
  53. }
  54. func UserLoginSucc(ctx *RepoSession, uid primitive.ObjectID, phone string) error {
  55. filter := bson.M{"_id": uid}
  56. users := ctx.Client.GetCollection(CollectionUser)
  57. update := bson.M{"$set": bson.M{"lastLogin": time.Now()}}
  58. result := users.FindOneAndUpdate(ctx.Ctx, filter, update)
  59. fmt.Println(result)
  60. update2 := bson.M{"$set": bson.M{"children.$.lastLogin": time.Now(), "children.$.uid": uid}}
  61. filter2 := bson.M{"children.phone": phone}
  62. result2, err := users.UpdateMany(ctx.Ctx, filter2, update2)
  63. if err != nil {
  64. return err
  65. }
  66. fmt.Println(result2)
  67. return nil
  68. }
  69. func GetUserParents(ctx *RepoSession, phone string) []map[string]interface{} {
  70. _, list := RepoSeachDocsMap(ctx, &DocsSearchOptions{
  71. CollectName: CollectionUser,
  72. Query: map[string]interface{}{"children.phone": phone},
  73. Project: []string{"_id", "name", "phone", "children.phone", "children.password"},
  74. })
  75. return list
  76. }
  77. func AddUser(ctx *RepoSession, u *model.User) string {
  78. users := ctx.Client.GetCollection(CollectionUser)
  79. result, err := users.InsertOne(ctx.Ctx, u)
  80. if err != nil {
  81. return ""
  82. }
  83. return result.InsertedID.(primitive.ObjectID).Hex()
  84. }