mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-01-16 03:06:58 +08:00
# Conflicts: # internal/msgtransfer/init.go # internal/push/push_to_client.go # internal/rpc/conversation/conversaion.go # internal/rpc/friend/friend.go # internal/rpc/group/group.go # internal/rpc/msg/server.go # internal/rpc/user/user.go # internal/tools/msg.go # pkg/apistruct/msg.go # pkg/common/db/unrelation/mongo.go # pkg/rpcclient/conversation.go # pkg/rpcclient/msg.go # pkg/rpcclient/notification/group.go # pkg/rpcclient/notification/msg.go # pkg/rpcclient/third.go # scripts/githooks/pre-commit
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package notification
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/constant"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
|
|
)
|
|
|
|
type MsgNotificationSender struct {
|
|
*rpcclient.NotificationSender
|
|
}
|
|
|
|
func NewMsgNotificationSender(opts ...rpcclient.NotificationSenderOptions) *MsgNotificationSender {
|
|
return &MsgNotificationSender{rpcclient.NewNotificationSender(opts...)}
|
|
}
|
|
|
|
func (m *MsgNotificationSender) UserDeleteMsgsNotification(
|
|
ctx context.Context,
|
|
userID, conversationID string,
|
|
seqs []int64,
|
|
) error {
|
|
tips := sdkws.DeleteMsgsTips{
|
|
UserID: userID,
|
|
ConversationID: conversationID,
|
|
Seqs: seqs,
|
|
}
|
|
return m.Notification(ctx, userID, userID, constant.MsgDeleteNotification, &tips)
|
|
}
|
|
|
|
// MarkAsReadNotification 标记已读通知
|
|
func (m *MsgNotificationSender) MarkAsReadNotification(
|
|
ctx context.Context,
|
|
conversationID string,
|
|
sesstionType int32,
|
|
sendID, recvID string,
|
|
seqs []int64,
|
|
hasReadSeq int64,
|
|
) error {
|
|
tips := &sdkws.MarkAsReadTips{
|
|
MarkAsReadUserID: sendID,
|
|
ConversationID: conversationID,
|
|
Seqs: seqs,
|
|
HasReadSeq: hasReadSeq,
|
|
}
|
|
|
|
return m.NotificationWithSessionType(ctx, sendID, recvID, constant.HasReadReceipt, sesstionType, tips)
|
|
}
|