You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/pkg/rpcclient/notification/conevrsation.go

48 lines
1.6 KiB

2 years ago
package notification
3 years ago
import (
"context"
2 years ago
2 years ago
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/constant"
2 years ago
"github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
3 years ago
)
2 years ago
type ConversationNotificationSender struct {
*rpcclient.MsgClient
}
func NewConversationNotificationSender(client discoveryregistry.SvcDiscoveryRegistry) *ConversationNotificationSender {
return &ConversationNotificationSender{rpcclient.NewMsgClient(client)}
}
// SetPrivate调用
2 years ago
func (c *ConversationNotificationSender) ConversationSetPrivateNotification(ctx context.Context, sendID, recvID string, isPrivateChat bool) error {
2 years ago
tips := &sdkws.ConversationSetPrivateTips{
RecvID: recvID,
SendID: sendID,
IsPrivate: isPrivateChat,
}
2 years ago
return c.Notification(ctx, sendID, recvID, constant.ConversationPrivateChatNotification, tips)
}
// 会话改变
2 years ago
func (c *ConversationNotificationSender) ConversationChangeNotification(ctx context.Context, userID string) error {
2 years ago
tips := &sdkws.ConversationUpdateTips{
3 years ago
UserID: userID,
}
2 years ago
return c.Notification(ctx, userID, userID, constant.ConversationChangeNotification, tips)
3 years ago
}
2 years ago
2 years ago
// 会话未读数同步
2 years ago
func (c *ConversationNotificationSender) ConversationUnreadChangeNotification(ctx context.Context, userID, conversationID string, unreadCountTime, hasReadSeq int64) error {
tips := &sdkws.ConversationHasReadTips{
UserID: userID,
ConversationID: conversationID,
HasReadSeq: hasReadSeq,
UnreadCountTime: unreadCountTime,
2 years ago
}
2 years ago
return c.Notification(ctx, userID, userID, constant.ConversationUnreadNotification, tips)
2 years ago
}