mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
del msg
This commit is contained in:
parent
8511ea166b
commit
d5ffbf4d67
33
test/mongo/main.go
Normal file
33
test/mongo/main.go
Normal file
@ -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)
|
||||||
|
}
|
36
test/mongo/mongo_utils.go
Normal file
36
test/mongo/mongo_utils.go
Normal file
@ -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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user