You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gomongo/curd.go

191 lines
7.0 KiB

2 years ago
package gomongo
import (
"context"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"reflect"
)
// Database 设置库名
2 years ago
func (c *Client) Database(database string) *Client {
c.DatabaseName = database
return c
2 years ago
}
// Collection 设置表名
2 years ago
func (c *Client) Collection(collection string) *Client {
c.collectionName = collection
return c
2 years ago
}
// Model 传入模型自动获取库名和表名
2 years ago
func (c *Client) Model(value interface{}) *Client {
2 years ago
// https://studygolang.com/articles/896
val := reflect.ValueOf(value)
if methodValue := val.MethodByName("Database"); methodValue.IsValid() {
2 years ago
c.DatabaseName = methodValue.Call(nil)[0].String()
2 years ago
}
if methodValue := val.MethodByName("TableName"); methodValue.IsValid() {
2 years ago
c.collectionName = methodValue.Call(nil)[0].String()
2 years ago
}
2 years ago
return c
2 years ago
}
2 years ago
func (c *Client) Session() (session mongo.Session, err error) {
session, err = c.Db.StartSession()
2 years ago
return
}
// InsertOne 插入单个文档
2 years ago
func (c *Client) InsertOne(value interface{}) (result *mongo.InsertOneResult, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result, err = collection.InsertOne(context.TODO(), value)
return result, err
}
// InsertMany 插入多个文档
2 years ago
func (c *Client) InsertMany(values []interface{}) (result *mongo.InsertManyResult, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result, err = collection.InsertMany(context.TODO(), values)
return result, err
}
// Delete 删除文档
2 years ago
func (c *Client) Delete(filter interface{}) (int64, error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
count, err := collection.DeleteOne(context.TODO(), filter, nil)
return count.DeletedCount, err
}
// DeleteMany 删除多个文档
2 years ago
func (c *Client) DeleteMany(key string, value interface{}) (int64, error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
filter := bson.D{{key, value}}
count, err := collection.DeleteMany(context.TODO(), filter)
return count.DeletedCount, err
}
// UpdateOne 更新单个文档
// 修改字段的值($set)
// 字段增加值 inc($inc)
// 从数组中增加一个元素 push($push)
// 从数组中删除一个元素 pull($pull)
2 years ago
func (c *Client) UpdateOne(filter, update interface{}) (int64, error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result, err := collection.UpdateOne(context.TODO(), filter, update)
return result.UpsertedCount, err
}
// UpdateMany 更新多个文档
// 修改字段的值($set)
// 字段增加值 inc($inc)
// 从数组中增加一个元素 push($push)
// 从数组中删除一个元素 pull($pull)
2 years ago
func (c *Client) UpdateMany(filter, update interface{}) (int64, error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result, err := collection.UpdateMany(context.TODO(), filter, update)
return result.UpsertedCount, err
}
// Find 查询
2 years ago
func (c *Client) Find(filter interface{}, opts ...*options.FindOptions) (result *mongo.Cursor, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result, err = collection.Find(context.TODO(), filter, opts...)
return result, err
}
// FindOne 查询单个文档
2 years ago
func (c *Client) FindOne(filter interface{}) (result *mongo.SingleResult) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result = collection.FindOne(context.TODO(), filter)
return result
}
// FindMany 查询多个文档
2 years ago
func (c *Client) FindMany(filter interface{}) (result *mongo.Cursor, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result, err = collection.Find(context.TODO(), filter)
return result, err
}
// FindManyByFilters 多条件查询
2 years ago
func (c *Client) FindManyByFilters(filter interface{}) (result *mongo.Cursor, err error) {
collection, err := c.Db.Database(c.DatabaseName).Collection(c.collectionName).Clone()
2 years ago
result, err = collection.Find(context.TODO(), bson.M{"$and": filter})
return result, err
}
// FindManyByFiltersSort 多条件查询支持排序
2 years ago
func (c *Client) FindManyByFiltersSort(filter interface{}, Sort interface{}) (result *mongo.Cursor, err error) {
collection, err := c.Db.Database(c.DatabaseName).Collection(c.collectionName).Clone()
2 years ago
findOptions := options.Find()
findOptions.SetSort(Sort)
result, err = collection.Find(context.TODO(), filter, findOptions)
return result, err
}
// FindCollection 查询集合文档
2 years ago
func (c *Client) FindCollection(Limit int64) (result *mongo.Cursor, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
findOptions := options.Find()
findOptions.SetLimit(Limit)
result, err = collection.Find(context.TODO(), bson.D{{}}, findOptions)
return result, err
}
// FindCollectionSort 查询集合文档支持排序
2 years ago
func (c *Client) FindCollectionSort(Sort interface{}, Limit int64) (result *mongo.Cursor, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
findOptions := options.Find()
findOptions.SetSort(Sort)
findOptions.SetLimit(Limit)
result, err = collection.Find(context.TODO(), bson.D{{}}, findOptions)
return result, err
}
// FindManyCollectionSort 查询集合文档支持排序支持条件
2 years ago
func (c *Client) FindManyCollectionSort(filter interface{}, Sort interface{}) (result *mongo.Cursor, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
findOptions := options.Find()
findOptions.SetSort(Sort)
result, err = collection.Find(context.TODO(), filter, findOptions)
return result, err
}
// CollectionCount 查询集合里有多少数据
2 years ago
func (c *Client) CollectionCount() (name string, size int64) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
name = collection.Name()
size, _ = collection.EstimatedDocumentCount(context.TODO())
return name, size
}
// CollectionDocuments 按选项查询集合
// Skip 跳过
// Limit 读取数量
// sort 1 -1 . 1 为升序 -1 为降序
2 years ago
func (c *Client) CollectionDocuments(Skip, Limit int64, sort int, key string, value interface{}) (result *mongo.Cursor, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
SORT := bson.D{{"_id", sort}}
filter := bson.D{{key, value}}
findOptions := options.Find().SetSort(SORT).SetLimit(Limit).SetSkip(Skip)
result, err = collection.Find(context.Background(), filter, findOptions)
return result, err
}
// AggregateByFiltersSort 统计分析
2 years ago
func (c *Client) AggregateByFiltersSort(pipeline interface{}, opts ...*options.AggregateOptions) (result *mongo.Cursor, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
result, err = collection.Aggregate(context.TODO(), pipeline, opts...)
return result, err
}
// CountDocumentsByFilters 统计数量
2 years ago
func (c *Client) CountDocumentsByFilters(filter interface{}) (count int64, err error) {
collection := c.Db.Database(c.DatabaseName).Collection(c.collectionName)
2 years ago
count, err = collection.CountDocuments(context.TODO(), filter)
return count, err
}