mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-01-13 17:25:11 +08:00
# Conflicts: # internal/msgtransfer/init.go # internal/push/push_to_client.go # internal/rpc/conversation/conversaion.go # internal/rpc/group/group.go # internal/rpc/user/user.go # internal/tools/msg.go # pkg/rpcclient/conversation.go # pkg/rpcclient/msg.go # pkg/rpcclient/notification/group.go # pkg/rpcclient/notification/msg.go
39 lines
1.3 KiB
Go
39 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)
|
|
}
|