From 4ce0c6be50b77fb5023845d07af434c6dcbbaf43 Mon Sep 17 00:00:00 2001 From: Gordon <1432970085@qq.com> Date: Tue, 26 Oct 2021 11:08:03 +0800 Subject: [PATCH] api change --- src/api/chat/{newest_seq.go => get_max_min_seq.go} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) rename src/api/chat/{newest_seq.go => get_max_min_seq.go} (90%) diff --git a/src/api/chat/newest_seq.go b/src/api/chat/get_max_min_seq.go similarity index 90% rename from src/api/chat/newest_seq.go rename to src/api/chat/get_max_min_seq.go index 9fa7e1836..73d98b4ef 100644 --- a/src/api/chat/newest_seq.go +++ b/src/api/chat/get_max_min_seq.go @@ -31,7 +31,7 @@ func UserNewestSeq(c *gin.Context) { c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": "token validate err"}) return } - pbData := pbMsg.GetNewSeqReq{} + pbData := pbMsg.GetMaxAndMinSeqReq{} pbData.UserID = params.SendID pbData.OperationID = params.OperationID grpcConn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImOfflineMessageName) @@ -40,7 +40,7 @@ func UserNewestSeq(c *gin.Context) { log.ErrorByKv("get grpcConn err", pbData.OperationID, "args", params) } msgClient := pbMsg.NewChatClient(grpcConn) - reply, err := msgClient.GetNewSeq(context.Background(), &pbData) + reply, err := msgClient.GetMaxAndMinSeq(context.Background(), &pbData) if err != nil { log.ErrorByKv("rpc call failed to getNewSeq", pbData.OperationID, "err", err, "pbData", pbData.String()) return @@ -52,7 +52,8 @@ func UserNewestSeq(c *gin.Context) { "msgIncr": params.MsgIncr, "reqIdentifier": params.ReqIdentifier, "data": gin.H{ - "seq": reply.Seq, + "maxSeq": reply.MaxSeq, + "minSeq": reply.MinSeq, }, })