mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 03:13:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package apiChat
 | 
						|
 | 
						|
import (
 | 
						|
	"Open_IM/pkg/common/config"
 | 
						|
	"Open_IM/pkg/common/log"
 | 
						|
	"Open_IM/pkg/common/token_verify"
 | 
						|
	"Open_IM/pkg/grpc-etcdv3/getcdv3"
 | 
						|
	pbMsg "Open_IM/pkg/proto/chat"
 | 
						|
	"context"
 | 
						|
	"github.com/gin-gonic/gin"
 | 
						|
	"net/http"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
type paramsUserNewestSeq struct {
 | 
						|
	ReqIdentifier int    `json:"reqIdentifier" binding:"required"`
 | 
						|
	SendID        string `json:"sendID" binding:"required"`
 | 
						|
	OperationID   string `json:"operationID" binding:"required"`
 | 
						|
	MsgIncr       int    `json:"msgIncr" binding:"required"`
 | 
						|
}
 | 
						|
 | 
						|
func GetSeq(c *gin.Context) {
 | 
						|
	params := paramsUserNewestSeq{}
 | 
						|
	if err := c.BindJSON(¶ms); err != nil {
 | 
						|
		c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	token := c.Request.Header.Get("token")
 | 
						|
	if ok, err := token_verify.VerifyToken(token, params.SendID); !ok {
 | 
						|
		c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": "token validate err" + err.Error()})
 | 
						|
		return
 | 
						|
	}
 | 
						|
	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)
 | 
						|
 | 
						|
	if grpcConn == nil {
 | 
						|
		log.ErrorByKv("get grpcConn err", pbData.OperationID, "args", params)
 | 
						|
	}
 | 
						|
	msgClient := pbMsg.NewChatClient(grpcConn)
 | 
						|
	reply, err := msgClient.GetMaxAndMinSeq(context.Background(), &pbData)
 | 
						|
	if err != nil {
 | 
						|
		log.NewError(params.OperationID, "UserGetSeq rpc failed, ", params, err.Error())
 | 
						|
		c.JSON(http.StatusBadRequest, gin.H{"errCode": 401, "errMsg": "UserGetSeq rpc failed, " + err.Error()})
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	c.JSON(http.StatusOK, gin.H{
 | 
						|
		"errCode":       reply.ErrCode,
 | 
						|
		"errMsg":        reply.ErrMsg,
 | 
						|
		"msgIncr":       params.MsgIncr,
 | 
						|
		"reqIdentifier": params.ReqIdentifier,
 | 
						|
		"data": gin.H{
 | 
						|
			"maxSeq": reply.MaxSeq,
 | 
						|
			"minSeq": reply.MinSeq,
 | 
						|
		},
 | 
						|
	})
 | 
						|
 | 
						|
}
 |