mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
msg judge
This commit is contained in:
parent
a3fb32dfc6
commit
2d13a5fd35
@ -44,6 +44,17 @@ type MsgCallBackResp struct {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func userRelationshipVerification(data *pbChat.SendMsgReq) {
|
||||||
|
|
||||||
|
//etcdConn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImOfflineMessageName)
|
||||||
|
//client := pbChat.NewChatClient(etcdConn)
|
||||||
|
//reply, err := client.SendMsg(context.Background(), &req)
|
||||||
|
//if err != nil {
|
||||||
|
// log.NewError(req.OperationID, "SendMsg rpc failed, ", req.String(), err.Error())
|
||||||
|
//} else if reply.ErrCode != 0 {
|
||||||
|
// log.NewError(req.OperationID, "SendMsg rpc failed, ", req.String())
|
||||||
|
//}
|
||||||
|
}
|
||||||
func (rpc *rpcChat) encapsulateMsgData(msg *sdk_ws.MsgData) {
|
func (rpc *rpcChat) encapsulateMsgData(msg *sdk_ws.MsgData) {
|
||||||
msg.ServerMsgID = GetMsgID(msg.SendID)
|
msg.ServerMsgID = GetMsgID(msg.SendID)
|
||||||
if msg.SendTime == 0 {
|
if msg.SendTime == 0 {
|
||||||
@ -96,6 +107,7 @@ func (rpc *rpcChat) encapsulateMsgData(msg *sdk_ws.MsgData) {
|
|||||||
func (rpc *rpcChat) SendMsg(_ context.Context, pb *pbChat.SendMsgReq) (*pbChat.SendMsgResp, error) {
|
func (rpc *rpcChat) SendMsg(_ context.Context, pb *pbChat.SendMsgReq) (*pbChat.SendMsgResp, error) {
|
||||||
replay := pbChat.SendMsgResp{}
|
replay := pbChat.SendMsgResp{}
|
||||||
log.NewDebug(pb.OperationID, "rpc sendMsg come here", pb.String())
|
log.NewDebug(pb.OperationID, "rpc sendMsg come here", pb.String())
|
||||||
|
userRelationshipVerification(pb)
|
||||||
//if !utils.VerifyToken(pb.Token, pb.SendID) {
|
//if !utils.VerifyToken(pb.Token, pb.SendID) {
|
||||||
// return returnMsg(&replay, pb, http.StatusUnauthorized, "token validate err,not authorized", "", 0)
|
// return returnMsg(&replay, pb, http.StatusUnauthorized, "token validate err,not authorized", "", 0)
|
||||||
rpc.encapsulateMsgData(pb.MsgData)
|
rpc.encapsulateMsgData(pb.MsgData)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user