diff --git a/internal/push/logic/push_to_client.go b/internal/push/logic/push_to_client.go index 5b7324908..48509320b 100644 --- a/internal/push/logic/push_to_client.go +++ b/internal/push/logic/push_to_client.go @@ -143,14 +143,28 @@ func MsgToUser(pushMsg *pbPush.PushMsgReq) { if detailContent == "" { detailContent = title } - pushResult, err := offlinePusher.Push(UIDList, title, detailContent, pushMsg.OperationID, opts) - if err != nil { - promePkg.PromeInc(promePkg.MsgOfflinePushFailedCounter) - log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error()) + if pushMsg.MsgData.ContentType == constant.SignalingNotification { + go func() { + pushResult, err := offlinePusher.Push(UIDList, title, detailContent, pushMsg.OperationID, opts) + if err != nil { + promePkg.PromeInc(promePkg.MsgOfflinePushFailedCounter) + log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error()) + } else { + promePkg.PromeInc(promePkg.MsgOfflinePushSuccessCounter) + log.NewDebug(pushMsg.OperationID, "offline push return result is ", pushResult, pushMsg.MsgData) + } + }() } else { - promePkg.PromeInc(promePkg.MsgOfflinePushSuccessCounter) - log.NewDebug(pushMsg.OperationID, "offline push return result is ", pushResult, pushMsg.MsgData) + pushResult, err := offlinePusher.Push(UIDList, title, detailContent, pushMsg.OperationID, opts) + if err != nil { + promePkg.PromeInc(promePkg.MsgOfflinePushFailedCounter) + log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error()) + } else { + promePkg.PromeInc(promePkg.MsgOfflinePushSuccessCounter) + log.NewDebug(pushMsg.OperationID, "offline push return result is ", pushResult, pushMsg.MsgData) + } } + } } @@ -290,26 +304,54 @@ func MsgToSuperGroupUser(pushMsg *pbPush.PushMsgReq) { } detailContent = title } - pushResult, err := offlinePusher.Push(needOfflinePushUserIDList, title, detailContent, pushMsg.OperationID, opts) - if err != nil { - promePkg.PromeInc(promePkg.MsgOfflinePushFailedCounter) - log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error()) - } else { - promePkg.PromeInc(promePkg.MsgOfflinePushSuccessCounter) - log.NewDebug(pushMsg.OperationID, "offline push return result is ", pushResult, pushMsg.MsgData) - } - needBackgroupPushUserID := utils.IntersectString(needOfflinePushUserIDList, WebAndPcBackgroundUserIDList) - grpcCons := getcdv3.GetDefaultGatewayConn4Unique(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), pushMsg.OperationID) - if len(needBackgroupPushUserID) > 0 { - //Online push message - log.Debug(pushMsg.OperationID, "len grpc", len(grpcCons), "data", pushMsg.String()) - for _, v := range grpcCons { - msgClient := pbRelay.NewRelayClient(v) - _, err := msgClient.SuperGroupBackgroundOnlinePush(context.Background(), &pbRelay.OnlineBatchPushOneMsgReq{OperationID: pushMsg.OperationID, MsgData: pushMsg.MsgData, - PushToUserIDList: needBackgroupPushUserID}) + if pushMsg.MsgData.ContentType == constant.SignalingNotification { + go func() { + pushResult, err := offlinePusher.Push(needOfflinePushUserIDList, title, detailContent, pushMsg.OperationID, opts) if err != nil { - log.NewError("push data to client rpc err", pushMsg.OperationID, "err", err) - continue + promePkg.PromeInc(promePkg.MsgOfflinePushFailedCounter) + log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error()) + } else { + promePkg.PromeInc(promePkg.MsgOfflinePushSuccessCounter) + log.NewDebug(pushMsg.OperationID, "offline push return result is ", pushResult, pushMsg.MsgData) + } + needBackgroupPushUserID := utils.IntersectString(needOfflinePushUserIDList, WebAndPcBackgroundUserIDList) + grpcCons := getcdv3.GetDefaultGatewayConn4Unique(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), pushMsg.OperationID) + if len(needBackgroupPushUserID) > 0 { + //Online push message + log.Debug(pushMsg.OperationID, "len grpc", len(grpcCons), "data", pushMsg.String()) + for _, v := range grpcCons { + msgClient := pbRelay.NewRelayClient(v) + _, err := msgClient.SuperGroupBackgroundOnlinePush(context.Background(), &pbRelay.OnlineBatchPushOneMsgReq{OperationID: pushMsg.OperationID, MsgData: pushMsg.MsgData, + PushToUserIDList: needBackgroupPushUserID}) + if err != nil { + log.NewError("push data to client rpc err", pushMsg.OperationID, "err", err) + continue + } + } + } + }() + } else { + pushResult, err := offlinePusher.Push(needOfflinePushUserIDList, title, detailContent, pushMsg.OperationID, opts) + if err != nil { + promePkg.PromeInc(promePkg.MsgOfflinePushFailedCounter) + log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error()) + } else { + promePkg.PromeInc(promePkg.MsgOfflinePushSuccessCounter) + log.NewDebug(pushMsg.OperationID, "offline push return result is ", pushResult, pushMsg.MsgData) + } + needBackgroupPushUserID := utils.IntersectString(needOfflinePushUserIDList, WebAndPcBackgroundUserIDList) + grpcCons := getcdv3.GetDefaultGatewayConn4Unique(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), pushMsg.OperationID) + if len(needBackgroupPushUserID) > 0 { + //Online push message + log.Debug(pushMsg.OperationID, "len grpc", len(grpcCons), "data", pushMsg.String()) + for _, v := range grpcCons { + msgClient := pbRelay.NewRelayClient(v) + _, err := msgClient.SuperGroupBackgroundOnlinePush(context.Background(), &pbRelay.OnlineBatchPushOneMsgReq{OperationID: pushMsg.OperationID, MsgData: pushMsg.MsgData, + PushToUserIDList: needBackgroupPushUserID}) + if err != nil { + log.NewError("push data to client rpc err", pushMsg.OperationID, "err", err) + continue + } } } } diff --git a/pkg/common/db/mysql_model/im_mysql_model/message_cms.go b/pkg/common/db/mysql_model/im_mysql_model/message_cms.go index 2add70b12..fc205a2ca 100644 --- a/pkg/common/db/mysql_model/im_mysql_model/message_cms.go +++ b/pkg/common/db/mysql_model/im_mysql_model/message_cms.go @@ -14,7 +14,7 @@ func GetChatLog(chatLog *db.ChatLog, pageNumber, showNumber int32, contentTypeLi if chatLog.Content != "" { mdb = mdb.Where(" content like ? ", fmt.Sprintf("%%%s%%", chatLog.Content)) } - if chatLog.SessionType == 1 { + if chatLog.SessionType == 1 || chatLog.SessionType == 4 { mdb = mdb.Where("session_type = ?", chatLog.SessionType) } else if chatLog.SessionType == 2 { mdb = mdb.Where("session_type in (?)", []int{constant.GroupChatType, constant.SuperGroupChatType}) @@ -37,7 +37,7 @@ func GetChatLog(chatLog *db.ChatLog, pageNumber, showNumber int32, contentTypeLi } var chatLogs []db.ChatLog mdb = mdb.Limit(int(showNumber)).Offset(int(showNumber * (pageNumber - 1))) - if err := mdb.Find(&chatLogs).Error; err != nil { + if err := mdb.Order("send_time desc").Find(&chatLogs).Error; err != nil { return 0, nil, err } return count, chatLogs, nil