|
|
|
@ -20,7 +20,9 @@ func GetUserAllChat(uid string) {
|
|
|
|
|
ctx, _ := context.WithTimeout(context.Background(), time.Duration(config.Config.Mongo.DBTimeout)*time.Second)
|
|
|
|
|
collection := Client.Database(config.Config.Mongo.DBDatabase).Collection("msg")
|
|
|
|
|
var userChatList []db.UserChat
|
|
|
|
|
result, err := collection.Find(context.Background(), bson.M{"uid": bson.M{"$regex": uid}})
|
|
|
|
|
filter := bson.M{"uid": bson.M{"$regex": uid}}
|
|
|
|
|
//filter := bson.M{"uid": "17726378428:0"}
|
|
|
|
|
result, err := collection.Find(context.Background(), filter)
|
|
|
|
|
if err != nil {
|
|
|
|
|
fmt.Println("find error", err.Error())
|
|
|
|
|
return
|
|
|
|
@ -36,7 +38,7 @@ func GetUserAllChat(uid string) {
|
|
|
|
|
fmt.Println(err.Error(), msg)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
fmt.Println("sendID: ", msgData.SendID, "recvID: ", msgData.RecvID, "seq:", msgData.Seq, "status:", msgData.Status)
|
|
|
|
|
fmt.Println("seq: ", msgData.Seq, "status: ", msgData.Status, "sendID: ", msgData.SendID, "recvID: ", msgData.RecvID)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|