mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 19:02:31 +08:00
50 lines
1.7 KiB
Go
50 lines
1.7 KiB
Go
package newmgo
|
|
|
|
import (
|
|
"context"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/db/newmgo/mgotool"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/db/table/relation"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/pagination"
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
|
"time"
|
|
)
|
|
|
|
func NewLogMongo(db *mongo.Database) (relation.LogInterface, error) {
|
|
lm := &LogMgo{
|
|
coll: db.Collection("log"),
|
|
}
|
|
return lm, nil
|
|
}
|
|
|
|
type LogMgo struct {
|
|
coll *mongo.Collection
|
|
}
|
|
|
|
func (l *LogMgo) Create(ctx context.Context, log []*relation.Log) error {
|
|
return mgotool.InsertMany(ctx, l.coll, log)
|
|
}
|
|
|
|
func (l *LogMgo) Search(ctx context.Context, keyword string, start time.Time, end time.Time, pagination pagination.Pagination) (int64, []*relation.Log, error) {
|
|
filter := bson.M{"create_time": bson.M{"$gte": start, "$lte": end}}
|
|
if keyword != "" {
|
|
filter["user_id"] = bson.M{"$regex": keyword}
|
|
}
|
|
return mgotool.FindPage[*relation.Log](ctx, l.coll, filter, pagination, options.Find().SetSort(bson.M{"create_time": -1}))
|
|
}
|
|
|
|
func (l *LogMgo) Delete(ctx context.Context, logID []string, userID string) error {
|
|
if userID == "" {
|
|
return mgotool.DeleteMany(ctx, l.coll, bson.M{"log_id": bson.M{"$in": logID}})
|
|
}
|
|
return mgotool.DeleteMany(ctx, l.coll, bson.M{"log_id": bson.M{"$in": logID}, "user_id": userID})
|
|
}
|
|
|
|
func (l *LogMgo) Get(ctx context.Context, logIDs []string, userID string) ([]*relation.Log, error) {
|
|
if userID == "" {
|
|
return mgotool.Find[*relation.Log](ctx, l.coll, bson.M{"log_id": bson.M{"$in": logIDs}})
|
|
}
|
|
return mgotool.Find[*relation.Log](ctx, l.coll, bson.M{"log_id": bson.M{"$in": logIDs}, "user_id": userID})
|
|
}
|