基本 CURD

概述

本章节介绍 mon 包的 CURD 相对复杂的方法介绍。

准备条件

  1. 完成 mon 的链接创建。
  2. 基本 CURD 学习。

新增

  1. InsertMany
  1. 函数签名:
  2. InsertMany func(ctx context.Context, documents []interface{}, opts ...*mopt.InsertManyOptions) (
  3. *mongo.InsertManyResult, error)
  4. 说明:
  5. 1. 新增多个文档记录。
  6. 入参:
  7. 1. ctx: context
  8. 2. documents: 记录信息
  9. 3. opts: 操作选项
  10. 返回值:
  11. 1. *mongo.InsertManyResult: 新增结果,包含新增记录的 _id 列表
  12. 2. error: 执行结果
  13. 示例:
  14. type User struct {
  15. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  16. // TODO: Fill your own fields
  17. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  18. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  19. }
  20. func (m *defaultUserModel) InsertMany(ctx context.Context, data []*User) error {
  21. var docs = make([]interface{}, 0, len(data))
  22. for _, d := range data {
  23. if d.ID.IsZero() {
  24. d.ID = primitive.NewObjectID()
  25. d.CreateAt = time.Now()
  26. d.UpdateAt = time.Now()
  27. }
  28. docs = append(docs, d)
  29. }
  30. _, err := m.conn.InsertMany(ctx, docs)
  31. return err
  32. }
  1. BulkInserter
  1. 函数签名:
  2. NewBulkInserter(coll Collection, interval ...time.Duration) (*BulkInserter, error)
  3. 说明:
  4. 1. 如果存在大批量新增数据时,可以使用。
  5. 2. 插入过程会按 bulk(1000) 周期时间分组插入。
  6. 入参:
  7. 1. coll: mongo 连接对象
  8. 2. interval: 批量插入周期, intervals[0] 是有效值
  9. 返回值:
  10. 1. *BulkInserter: bulk 模块对象
  11. 2. error: 创建结果
  12. 示例:
  13. type User struct {
  14. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  15. // TODO: Fill your own fields
  16. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  17. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  18. }
  19. // NewUserModel returns a model for the mongo.
  20. func NewUserModel(url, db, collection string) UserModel {
  21. conn := mon.MustNewModel(url, db, collection)
  22. blk, err := mon.NewBatchInserter(conn.Collection, time.Second)
  23. if err != nil {
  24. log.Fatal(err)
  25. }
  26. return &customUserModel{
  27. defaultUserModel: newDefaultUserModel(conn),
  28. blk: blk,
  29. }
  30. }
  31. func (m *customUserModel) BatchInsert(ctx context.Context, data []*User) error {
  32. m.blk.SetResultHandler(func(result *mongo.InsertManyResult, err error) {
  33. if err != nil {
  34. log.Println(err)
  35. }
  36. })
  37. for _, d := range data {
  38. if d.ID.IsZero() {
  39. d.ID = primitive.NewObjectID()
  40. d.CreateAt = time.Now()
  41. d.UpdateAt = time.Now()
  42. }
  43. m.blk.Insert(d)
  44. }
  45. m.blk.Flush()
  46. return nil
  47. }

更新

  1. UpdateOne
  1. 函数签名:
  2. UpdateOne (ctx context.Context, filter, update interface{},
  3. opts ...*mopt.UpdateOptions) (*mongo.UpdateResult, error)
  4. 说明:
  5. 1. 更新单个文档记录。
  6. 入参:
  7. 1. ctx: context
  8. 2. filter: 过滤条件
  9. 3. update: 更新记录
  10. 4. opts: 操作选项
  11. 返回值:
  12. 1. *mongo.UpdateResult: 更新结果,包含更新的 _id, 匹配的数量等信息
  13. 2. error: 执行结果
  14. 示例:
  15. type User struct {
  16. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  17. // TODO: Fill your own fields
  18. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  19. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  20. }
  21. func (m *defaultUserModel) Update(ctx context.Context, data *User) error {
  22. data.UpdateAt = time.Now()
  23. _, err := m.conn.UpdateOne(ctx, bson.M{"_id": data.ID}, data)
  24. return err
  25. }
  1. UpdateByID
  1. 函数签名:
  2. UpdateByID (ctx context.Context, id, update interface{},
  3. opts ...*mopt.UpdateOptions) (*mongo.UpdateResult, error)
  4. 说明:
  5. 1. 通过 _id 更新单个文档记录。
  6. 入参:
  7. 1. ctx: context
  8. 2. id: _id
  9. 3. update: 更新记录
  10. 4. opts: 操作选项
  11. 返回值:
  12. 1. *mongo.UpdateResult: 更新结果,包含更新的 _id, 匹配的数量等信息
  13. 2. error: 执行结果
  14. 示例:
  15. type User struct {
  16. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  17. // TODO: Fill your own fields
  18. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  19. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  20. }
  21. func (m *defaultUserModel) Update(ctx context.Context, data *User) error {
  22. data.UpdateAt = time.Now()
  23. _, err := m.conn.UpdateByID(ctx, data.ID, data)
  24. return err
  25. }
  1. UpdateMany
  1. 函数签名:
  2. UpdateMany (ctx context.Context, filter, update interface{},
  3. opts ...*mopt.UpdateOptions) (*mongo.UpdateResult, error)
  4. 说明:
  5. 1. 更新多个文档记录。
  6. 入参:
  7. 1. ctx: context
  8. 2. filter: 过滤条件
  9. 3. update: 更新记录
  10. 4. opts: 操作选项
  11. 返回值:
  12. 1. *mongo.UpdateResult: 更新结果,包含更新的 _id 列表, 匹配的数量等信息
  13. 2. error: 执行结果
  14. 示例:
  15. type User struct {
  16. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  17. Name string `bson:"name,omitempty" json:"name,omitempty"`
  18. Age int `bson:"age,omitempty" json:"age,omitempty"`
  19. // TODO: Fill your own fields
  20. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  21. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  22. }
  23. func (m *customUserModel) UpdateAge(ctx context.Context, name string, age int) error {
  24. _, err := m.conn.UpdateMany(ctx, bson.M{"name": name}, bson.M{"$set": bson.M{"age": age}})
  25. return err
  26. }

查询

  1. FindOne
  1. 函数签名:
  2. FindOne func(ctx context.Context, v, filter interface{}, opts ...*mopt.FindOneOptions) error
  3. 说明:
  4. 1. 查询单个文档记录。
  5. 入参:
  6. 1. ctx: context
  7. 2. v: 查询结果
  8. 2. filter: 过滤条件
  9. 3. opts: 操作选项
  10. 返回值:
  11. 1. error: 执行结果
  12. 示例:
  13. type User struct {
  14. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  15. // TODO: Fill your own fields
  16. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  17. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  18. }
  19. func (m *defaultUserModel) FindOne(ctx context.Context, id string) (*User, error) {
  20. oid, err := primitive.ObjectIDFromHex(id)
  21. if err != nil {
  22. return nil, ErrInvalidObjectId
  23. }
  24. var data User
  25. err = m.conn.FindOne(ctx, &data, bson.M{"_id": oid})
  26. switch err {
  27. case nil:
  28. return &data, nil
  29. case mon.ErrNotFound:
  30. return nil, ErrNotFound
  31. default:
  32. return nil, err
  33. }
  34. }
  1. Find
  1. 函数签名:
  2. Find func(ctx context.Context, v, filter interface{}, opts ...*mopt.FindOptions) error
  3. 说明:
  4. 1. 查询单个文档记录。
  5. 入参:
  6. 1. ctx: context
  7. 2. v: 查询结果(数组指针)
  8. 2. filter: 过滤条件
  9. 3. opts: 操作选项
  10. 返回值:
  11. 1. error: 执行结果
  12. 示例:
  13. type User struct {
  14. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  15. // TODO: Fill your own fields
  16. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  17. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  18. }
  19. func (m *defaultUserModel) Find(ctx context.Context, id string) ([]*User, error) {
  20. oid, err := primitive.ObjectIDFromHex(id)
  21. if err != nil {
  22. return nil, ErrInvalidObjectId
  23. }
  24. var data []*User
  25. err = m.conn.Find(ctx, &data, bson.M{"_id": oid})
  26. return data, nil
  27. }

删除

  1. DeleteOne
  1. 函数签名:
  2. DeleteOne func(ctx context.Context, filter interface{}, opts ...*mopt.DeleteOptions) (int64, error)
  3. 说明:
  4. 1. 新增单个文档记录。
  5. 入参:
  6. 1. ctx: context
  7. 2. filter: 过滤条件
  8. 3. opts: 操作选项
  9. 返回值:
  10. 1. int64: 删除数量
  11. 2. error: 执行结果
  12. 示例:
  13. type User struct {
  14. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  15. // TODO: Fill your own fields
  16. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  17. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  18. }
  19. func (m *defaultUserModel) Delete(ctx context.Context, id string) error {
  20. oid, err := primitive.ObjectIDFromHex(id)
  21. if err != nil {
  22. return ErrInvalidObjectId
  23. }
  24. _, err = m.conn.DeleteOne(ctx, bson.M{"_id": oid})
  25. return err
  26. }
  1. DeleteMany
  1. 函数签名:
  2. DeleteMany func(ctx context.Context, filter interface{}, opts ...*mopt.DeleteOptions) (
  3. *mongo.DeleteResult, error)
  4. 说明:
  5. 1. 新增单个文档记录。
  6. 入参:
  7. 1. ctx: context
  8. 2. filter: 过滤条件
  9. 3. opts: 操作选项
  10. 返回值:
  11. 1. *mongo.DeleteResult: 删除结果
  12. 2. error: 执行结果
  13. 示例:
  14. type User struct {
  15. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  16. // TODO: Fill your own fields
  17. UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
  18. CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
  19. }
  20. func (m *defaultUserModel) Delete(ctx context.Context, id string) error {
  21. oid, err := primitive.ObjectIDFromHex(id)
  22. if err != nil {
  23. return ErrInvalidObjectId
  24. }
  25. _, err = m.conn.DeleteMany(ctx, bson.M{"_id": oid})
  26. return err
  27. }