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.
120 lines
3.2 KiB
120 lines
3.2 KiB
2 years ago
|
package rpcclient
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
||
2 years ago
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/tokenverify"
|
||
2 years ago
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/errs"
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/user"
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/utils"
|
||
|
)
|
||
|
|
||
|
type UserClient struct {
|
||
|
MetaClient
|
||
|
}
|
||
|
|
||
2 years ago
|
func NewUserClient(client discoveryregistry.SvcDiscoveryRegistry) *UserClient {
|
||
|
return &UserClient{
|
||
2 years ago
|
MetaClient: MetaClient{
|
||
|
client: client,
|
||
|
rpcRegisterName: config.Config.RpcRegisterName.OpenImUserName,
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
2 years ago
|
func (u *UserClient) GetUsersInfo(ctx context.Context, userIDs []string) ([]*sdkws.UserInfo, error) {
|
||
2 years ago
|
cc, err := u.getConn()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
resp, err := user.NewUserClient(cc).GetDesignateUsers(ctx, &user.GetDesignateUsersReq{
|
||
|
UserIDs: userIDs,
|
||
|
})
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
2 years ago
|
if ids := utils.Single(userIDs, utils.Slice(resp.UsersInfo, func(e *sdkws.UserInfo) string {
|
||
|
return e.UserID
|
||
|
})); len(ids) > 0 {
|
||
|
return nil, errs.ErrUserIDNotFound.Wrap(strings.Join(ids, ","))
|
||
2 years ago
|
}
|
||
|
return resp.UsersInfo, nil
|
||
|
}
|
||
|
|
||
|
func (u *UserClient) GetUserInfo(ctx context.Context, userID string) (*sdkws.UserInfo, error) {
|
||
2 years ago
|
users, err := u.GetUsersInfo(ctx, []string{userID})
|
||
2 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return users[0], nil
|
||
|
}
|
||
|
|
||
2 years ago
|
func (u *UserClient) GetUsersInfoMap(ctx context.Context, userIDs []string) (map[string]*sdkws.UserInfo, error) {
|
||
|
users, err := u.GetUsersInfo(ctx, userIDs)
|
||
2 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return utils.SliceToMap(users, func(e *sdkws.UserInfo) string {
|
||
|
return e.UserID
|
||
|
}), nil
|
||
|
}
|
||
|
|
||
|
func (u *UserClient) GetPublicUserInfos(ctx context.Context, userIDs []string, complete bool) ([]*sdkws.PublicUserInfo, error) {
|
||
2 years ago
|
users, err := u.GetUsersInfo(ctx, userIDs)
|
||
2 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return utils.Slice(users, func(e *sdkws.UserInfo) *sdkws.PublicUserInfo {
|
||
|
return &sdkws.PublicUserInfo{
|
||
|
UserID: e.UserID,
|
||
|
Nickname: e.Nickname,
|
||
|
FaceURL: e.FaceURL,
|
||
|
Ex: e.Ex,
|
||
|
}
|
||
|
}), nil
|
||
|
}
|
||
|
|
||
|
func (u *UserClient) GetPublicUserInfo(ctx context.Context, userID string) (*sdkws.PublicUserInfo, error) {
|
||
|
users, err := u.GetPublicUserInfos(ctx, []string{userID}, true)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return users[0], nil
|
||
|
}
|
||
|
|
||
|
func (u *UserClient) GetPublicUserInfoMap(ctx context.Context, userIDs []string, complete bool) (map[string]*sdkws.PublicUserInfo, error) {
|
||
|
users, err := u.GetPublicUserInfos(ctx, userIDs, complete)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return utils.SliceToMap(users, func(e *sdkws.PublicUserInfo) string {
|
||
|
return e.UserID
|
||
|
}), nil
|
||
|
}
|
||
|
|
||
|
func (u *UserClient) GetUserGlobalMsgRecvOpt(ctx context.Context, userID string) (int32, error) {
|
||
|
cc, err := u.getConn()
|
||
|
if err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
resp, err := user.NewUserClient(cc).GetGlobalRecvMessageOpt(ctx, &user.GetGlobalRecvMessageOptReq{
|
||
|
UserID: userID,
|
||
|
})
|
||
|
if err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
return resp.GlobalRecvMsgOpt, err
|
||
|
}
|
||
2 years ago
|
|
||
|
func (u *UserClient) Access(ctx context.Context, ownerUserID string) error {
|
||
|
_, err := u.GetUserInfo(ctx, ownerUserID)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return tokenverify.CheckAccessV3(ctx, ownerUserID)
|
||
|
}
|