From d5ffbf4d672d900e3115141006f0a889632856ce Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Wed, 25 May 2022 17:38:49 +0800 Subject: [PATCH] del msg --- test/mongo/main.go | 33 +++++++++++++++++++++++++++++++++ test/mongo/mongo_utils.go | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 test/mongo/main.go create mode 100644 test/mongo/mongo_utils.go diff --git a/test/mongo/main.go b/test/mongo/main.go new file mode 100644 index 000000000..29ea4ea4f --- /dev/null +++ b/test/mongo/main.go @@ -0,0 +1,33 @@ +package mongo + +import ( + "context" + "flag" + "fmt" + "go.mongodb.org/mongo-driver/mongo" + "go.mongodb.org/mongo-driver/mongo/options" +) + +var ( + client *mongo.Client +) + +func initDB() { + clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:37017/openIM/?maxPoolSize=100") + client, err := mongo.Connect(context.TODO(), clientOptions) + if err != nil { + panic(err) + } + err = client.Ping(context.TODO(), nil) + if err != nil { + panic(err) + } + fmt.Println("Connected to MongoDB!") +} + +func main() { + userID := flag.String("userID", "", "userID") + flag.Parse() + fmt.Println("userID:", userID) + GetUserAllChat(*userID) +} diff --git a/test/mongo/mongo_utils.go b/test/mongo/mongo_utils.go new file mode 100644 index 000000000..e2c14ccdd --- /dev/null +++ b/test/mongo/mongo_utils.go @@ -0,0 +1,36 @@ +package mongo + +import ( + "Open_IM/pkg/common/config" + "Open_IM/pkg/common/db" + server_api_params "Open_IM/pkg/proto/sdk_ws" + "context" + "fmt" + "github.com/golang/protobuf/proto" + "go.mongodb.org/mongo-driver/bson/primitive" + "gopkg.in/mgo.v2/bson" +) + +func GetUserAllChat(uid string) { + collection := client.Database(config.Config.Mongo.DBDatabase).Collection("msg") + var userChatList []db.UserChat + result, err := collection.Find(context.Background(), bson.M{"uid": primitive.Regex{Pattern: uid}}) + if err != nil { + fmt.Println(err.Error()) + return + } + if err := result.All(context.Background(), &userChatList); err != nil { + fmt.Println(err.Error()) + } + for _, userChat := range userChatList { + for _, msg := range userChat.Msg { + msgData := &server_api_params.MsgData{} + err := proto.Unmarshal(msg.Msg, msgData) + if err != nil { + fmt.Println(err.Error(), msg) + continue + } + fmt.Println(*msgData) + } + } +}