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.
79 lines
2.7 KiB
79 lines
2.7 KiB
package rpcclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
discoveryRegistry "github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/conversation"
|
|
pbConversation "github.com/OpenIMSDK/Open-IM-Server/pkg/proto/conversation"
|
|
)
|
|
|
|
type ConversationClient struct {
|
|
*MetaClient
|
|
}
|
|
|
|
func NewConversationClient(zk discoveryRegistry.SvcDiscoveryRegistry) *ConversationClient {
|
|
return &ConversationClient{NewMetaClient(zk, config.Config.RpcRegisterName.OpenImConversationName)}
|
|
}
|
|
|
|
func (c *ConversationClient) ModifyConversationField(ctx context.Context, req *pbConversation.ModifyConversationFieldReq) error {
|
|
cc, err := c.getConn()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = conversation.NewConversationClient(cc).ModifyConversationField(ctx, req)
|
|
return err
|
|
}
|
|
|
|
func (c *ConversationClient) GetSingleConversationRecvMsgOpt(ctx context.Context, userID, conversationID string) (int32, error) {
|
|
cc, err := c.getConn()
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
var req conversation.GetConversationReq
|
|
req.OwnerUserID = userID
|
|
req.ConversationID = conversationID
|
|
conversation, err := conversation.NewConversationClient(cc).GetConversation(ctx, &req)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return conversation.GetConversation().RecvMsgOpt, err
|
|
}
|
|
|
|
func (c *ConversationClient) SingleChatFirstCreateConversation(ctx context.Context, recvID, sendID string) error {
|
|
cc, err := c.getConn()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = conversation.NewConversationClient(cc).CreateSingleChatConversations(ctx, &pbConversation.CreateSingleChatConversationsReq{RecvID: recvID, SendID: sendID})
|
|
return err
|
|
}
|
|
|
|
func (c *ConversationClient) GroupChatFirstCreateConversation(ctx context.Context, groupID string, userIDs []string) error {
|
|
cc, err := c.getConn()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = conversation.NewConversationClient(cc).CreateGroupChatConversations(ctx, &pbConversation.CreateGroupChatConversationsReq{UserIDs: userIDs, GroupID: groupID})
|
|
return err
|
|
}
|
|
|
|
func (c *ConversationClient) DelGroupChatConversations(ctx context.Context, ownerUserIDs []string, groupID string, maxSeq int64) error {
|
|
cc, err := c.getConn()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = conversation.NewConversationClient(cc).DelGroupChatConversations(ctx, &pbConversation.DelGroupChatConversationsReq{OwnerUserID: ownerUserIDs, GroupID: groupID, MaxSeq: maxSeq})
|
|
return err
|
|
}
|
|
|
|
func (c *ConversationClient) GetConversationIDs(ctx context.Context, ownerUserID string) ([]string, error) {
|
|
cc, err := c.getConn()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
resp, err := conversation.NewConversationClient(cc).GetConversationIDs(ctx, &pbConversation.GetConversationIDsReq{UserID: ownerUserID})
|
|
return resp.ConversationIDs, err
|
|
}
|