mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
* optimization: change the configuration file from being read globally to being read independently. * optimization: change the configuration file from being read globally to being read independently. * optimization: change the configuration file from being read globally to being read independently. * optimization: config file changed to dependency injection. * fix: replace global config with dependency injection * fix: replace global config with dependency injection * fix: import the enough param * fix: import the enough param * fix: import the enough param * fix: fix the component check of path * fix: fix the kafka of tls is nil problem * fix: fix the TLS.CACrt is nil error * fix: fix the valiable shadows problem * fix: fix the comflect * optimization: message remove options. * fix: fix the param pass error * fix: find error * fix: find error * fix: find eror * fix: find error * fix: find error * fix: del the undifined func * fix: find error * fix: fix the error * fix: pass config * fix: find error * fix: find error * fix: find error * fix: find error * fix: find error * fix: fix the config * fix: fix the error * fix: fix the config pass error * fix: fix the eror * fix: fix the error * fix: fix the error * fix: fix the error * fix: find error * fix: fix the error * fix: fix the config * fix: add return err * fix: fix the err2 * fix: err * fix: fix the func * fix: del the chinese comment * fix: fix the func * fix: fix the gateway_test logic * fix: s3 * test * test * fix: not found --------- Co-authored-by: luhaoling <2198702716@qq.com> Co-authored-by: withchao <993506633@qq.com>
236 lines
7.4 KiB
Go
236 lines
7.4 KiB
Go
// Copyright © 2023 OpenIM. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package msg
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/OpenIMSDK/protocol/constant"
|
|
"github.com/OpenIMSDK/protocol/msg"
|
|
"github.com/OpenIMSDK/protocol/sdkws"
|
|
"github.com/OpenIMSDK/tools/errs"
|
|
"github.com/OpenIMSDK/tools/log"
|
|
utils2 "github.com/OpenIMSDK/tools/utils"
|
|
cbapi "github.com/openimsdk/open-im-server/v3/pkg/callbackstruct"
|
|
"github.com/redis/go-redis/v9"
|
|
)
|
|
|
|
func (m *msgServer) GetConversationsHasReadAndMaxSeq(ctx context.Context, req *msg.GetConversationsHasReadAndMaxSeqReq) (resp *msg.GetConversationsHasReadAndMaxSeqResp, err error) {
|
|
var conversationIDs []string
|
|
if len(req.ConversationIDs) == 0 {
|
|
conversationIDs, err = m.ConversationLocalCache.GetConversationIDs(ctx, req.UserID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
conversationIDs = req.ConversationIDs
|
|
}
|
|
hasReadSeqs, err := m.MsgDatabase.GetHasReadSeqs(ctx, req.UserID, conversationIDs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
conversations, err := m.Conversation.GetConversations(ctx, req.UserID, conversationIDs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
conversationMaxSeqMap := make(map[string]int64)
|
|
for _, conversation := range conversations {
|
|
if conversation.MaxSeq != 0 {
|
|
conversationMaxSeqMap[conversation.ConversationID] = conversation.MaxSeq
|
|
}
|
|
}
|
|
maxSeqs, err := m.MsgDatabase.GetMaxSeqs(ctx, conversationIDs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
resp = &msg.GetConversationsHasReadAndMaxSeqResp{Seqs: make(map[string]*msg.Seqs)}
|
|
for conversarionID, maxSeq := range maxSeqs {
|
|
resp.Seqs[conversarionID] = &msg.Seqs{
|
|
HasReadSeq: hasReadSeqs[conversarionID],
|
|
MaxSeq: maxSeq,
|
|
}
|
|
if v, ok := conversationMaxSeqMap[conversarionID]; ok {
|
|
resp.Seqs[conversarionID].MaxSeq = v
|
|
}
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
func (m *msgServer) SetConversationHasReadSeq(
|
|
ctx context.Context,
|
|
req *msg.SetConversationHasReadSeqReq,
|
|
) (resp *msg.SetConversationHasReadSeqResp, err error) {
|
|
maxSeq, err := m.MsgDatabase.GetMaxSeq(ctx, req.ConversationID)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if req.HasReadSeq > maxSeq {
|
|
return nil, errs.ErrArgs.Wrap("hasReadSeq must not be bigger than maxSeq")
|
|
}
|
|
if err := m.MsgDatabase.SetHasReadSeq(ctx, req.UserID, req.ConversationID, req.HasReadSeq); err != nil {
|
|
return nil, err
|
|
}
|
|
if err = m.sendMarkAsReadNotification(ctx, req.ConversationID, constant.SingleChatType, req.UserID,
|
|
req.UserID, nil, req.HasReadSeq); err != nil {
|
|
return
|
|
}
|
|
return &msg.SetConversationHasReadSeqResp{}, nil
|
|
}
|
|
|
|
func (m *msgServer) MarkMsgsAsRead(
|
|
ctx context.Context,
|
|
req *msg.MarkMsgsAsReadReq,
|
|
) (resp *msg.MarkMsgsAsReadResp, err error) {
|
|
if len(req.Seqs) < 1 {
|
|
return nil, errs.ErrArgs.Wrap("seqs must not be empty")
|
|
}
|
|
maxSeq, err := m.MsgDatabase.GetMaxSeq(ctx, req.ConversationID)
|
|
if err != nil {
|
|
return
|
|
}
|
|
hasReadSeq := req.Seqs[len(req.Seqs)-1]
|
|
if hasReadSeq > maxSeq {
|
|
return nil, errs.ErrArgs.Wrap("hasReadSeq must not be bigger than maxSeq")
|
|
}
|
|
conversation, err := m.Conversation.GetConversation(ctx, req.UserID, req.ConversationID)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if err = m.MsgDatabase.MarkSingleChatMsgsAsRead(ctx, req.UserID, req.ConversationID, req.Seqs); err != nil {
|
|
return
|
|
}
|
|
|
|
currentHasReadSeq, err := m.MsgDatabase.GetHasReadSeq(ctx, req.UserID, req.ConversationID)
|
|
if err != nil && errs.Unwrap(err) != redis.Nil {
|
|
return
|
|
}
|
|
if hasReadSeq > currentHasReadSeq {
|
|
err = m.MsgDatabase.SetHasReadSeq(ctx, req.UserID, req.ConversationID, hasReadSeq)
|
|
if err != nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
req_callback := &cbapi.CallbackSingleMsgReadReq{
|
|
ConversationID: conversation.ConversationID,
|
|
UserID: req.UserID,
|
|
Seqs: req.Seqs,
|
|
ContentType: conversation.ConversationType,
|
|
}
|
|
if err = CallbackSingleMsgRead(ctx, m.config, req_callback); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err = m.sendMarkAsReadNotification(ctx, req.ConversationID, conversation.ConversationType, req.UserID,
|
|
m.conversationAndGetRecvID(conversation, req.UserID), req.Seqs, hasReadSeq); err != nil {
|
|
return
|
|
}
|
|
return &msg.MarkMsgsAsReadResp{}, nil
|
|
}
|
|
|
|
func (m *msgServer) MarkConversationAsRead(
|
|
ctx context.Context,
|
|
req *msg.MarkConversationAsReadReq,
|
|
) (resp *msg.MarkConversationAsReadResp, err error) {
|
|
conversation, err := m.Conversation.GetConversation(ctx, req.UserID, req.ConversationID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
hasReadSeq, err := m.MsgDatabase.GetHasReadSeq(ctx, req.UserID, req.ConversationID)
|
|
if err != nil && errs.Unwrap(err) != redis.Nil {
|
|
return nil, err
|
|
}
|
|
var seqs []int64
|
|
|
|
log.ZDebug(ctx, "MarkConversationAsRead", "hasReadSeq", hasReadSeq,
|
|
"req.HasReadSeq", req.HasReadSeq)
|
|
if conversation.ConversationType == constant.SingleChatType {
|
|
for i := hasReadSeq + 1; i <= req.HasReadSeq; i++ {
|
|
seqs = append(seqs, i)
|
|
}
|
|
//avoid client missed call MarkConversationMessageAsRead by order
|
|
for _, val := range req.Seqs {
|
|
if !utils2.Contain(val, seqs...) {
|
|
seqs = append(seqs, val)
|
|
}
|
|
}
|
|
if len(seqs) > 0 {
|
|
log.ZDebug(ctx, "MarkConversationAsRead", "seqs", seqs, "conversationID", req.ConversationID)
|
|
if err = m.MsgDatabase.MarkSingleChatMsgsAsRead(ctx, req.UserID, req.ConversationID, seqs); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if req.HasReadSeq > hasReadSeq {
|
|
err = m.MsgDatabase.SetHasReadSeq(ctx, req.UserID, req.ConversationID, req.HasReadSeq)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
hasReadSeq = req.HasReadSeq
|
|
}
|
|
if err = m.sendMarkAsReadNotification(ctx, req.ConversationID, conversation.ConversationType, req.UserID,
|
|
m.conversationAndGetRecvID(conversation, req.UserID), seqs, hasReadSeq); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
} else if conversation.ConversationType == constant.SuperGroupChatType ||
|
|
conversation.ConversationType == constant.NotificationChatType {
|
|
if req.HasReadSeq > hasReadSeq {
|
|
err = m.MsgDatabase.SetHasReadSeq(ctx, req.UserID, req.ConversationID, req.HasReadSeq)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
hasReadSeq = req.HasReadSeq
|
|
}
|
|
if err = m.sendMarkAsReadNotification(ctx, req.ConversationID, constant.SingleChatType, req.UserID,
|
|
req.UserID, seqs, hasReadSeq); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
}
|
|
|
|
reqCall := &cbapi.CallbackGroupMsgReadReq{
|
|
SendID: conversation.OwnerUserID,
|
|
ReceiveID: req.UserID,
|
|
UnreadMsgNum: req.HasReadSeq,
|
|
ContentType: int64(conversation.ConversationType),
|
|
}
|
|
if err := CallbackGroupMsgRead(ctx, m.config, reqCall); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &msg.MarkConversationAsReadResp{}, nil
|
|
}
|
|
|
|
func (m *msgServer) sendMarkAsReadNotification(
|
|
ctx context.Context,
|
|
conversationID string,
|
|
sessionType int32,
|
|
sendID, recvID string,
|
|
seqs []int64,
|
|
hasReadSeq int64,
|
|
) error {
|
|
tips := &sdkws.MarkAsReadTips{
|
|
MarkAsReadUserID: sendID,
|
|
ConversationID: conversationID,
|
|
Seqs: seqs,
|
|
HasReadSeq: hasReadSeq,
|
|
}
|
|
err := m.notificationSender.NotificationWithSesstionType(ctx, sendID, recvID, constant.HasReadReceipt, sessionType, tips)
|
|
if err != nil {
|
|
log.ZWarn(ctx, "send has read Receipt err", err)
|
|
}
|
|
return nil
|
|
}
|