|
|
|
@ -4,9 +4,11 @@ import (
|
|
|
|
|
jsonData "Open_IM/internal/utils"
|
|
|
|
|
api "Open_IM/pkg/base_info"
|
|
|
|
|
"Open_IM/pkg/common/config"
|
|
|
|
|
"Open_IM/pkg/common/constant"
|
|
|
|
|
"Open_IM/pkg/common/log"
|
|
|
|
|
"Open_IM/pkg/common/token_verify"
|
|
|
|
|
"Open_IM/pkg/grpc-etcdv3/getcdv3"
|
|
|
|
|
pbRelay "Open_IM/pkg/proto/relay"
|
|
|
|
|
open_im_sdk "Open_IM/pkg/proto/sdk_ws"
|
|
|
|
|
rpc "Open_IM/pkg/proto/user"
|
|
|
|
|
"Open_IM/pkg/utils"
|
|
|
|
@ -127,3 +129,63 @@ func GetSelfUserInfo(c *gin.Context) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func GetUsersOnlineStatus(c *gin.Context) {
|
|
|
|
|
params := api.GetUsersOnlineStatusReq{}
|
|
|
|
|
if err := c.BindJSON(¶ms); err != nil {
|
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
req := &pbRelay.GetUsersOnlineStatusReq{}
|
|
|
|
|
utils.CopyStructFields(req, ¶ms)
|
|
|
|
|
var ok bool
|
|
|
|
|
ok, req.OpUserID = token_verify.GetUserIDFromToken(c.Request.Header.Get("token"), req.OperationID)
|
|
|
|
|
if !ok {
|
|
|
|
|
log.NewError(req.OperationID, "GetUserIDFromToken false ", c.Request.Header.Get("token"))
|
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": "GetUserIDFromToken failed"})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
log.NewInfo(params.OperationID, "GetUsersOnlineStatus args ", req.String())
|
|
|
|
|
var wsResult []*pbRelay.GetUsersOnlineStatusResp_SuccessResult
|
|
|
|
|
var respResult []*pbRelay.GetUsersOnlineStatusResp_SuccessResult
|
|
|
|
|
flag := false
|
|
|
|
|
grpcCons := getcdv3.GetConn4Unique(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImOnlineMessageRelayName)
|
|
|
|
|
for _, v := range grpcCons {
|
|
|
|
|
client := pbRelay.NewOnlineMessageRelayServiceClient(v)
|
|
|
|
|
reply, err := client.GetUsersOnlineStatus(context.Background(), req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.NewError(params.OperationID, "GetUsersOnlineStatus rpc err", req.String(), err.Error())
|
|
|
|
|
continue
|
|
|
|
|
} else {
|
|
|
|
|
if reply.ErrCode == 0 {
|
|
|
|
|
wsResult = append(wsResult, reply.SuccessResult...)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
log.NewInfo(params.OperationID, "call GetUsersOnlineStatus rpc server is success", wsResult)
|
|
|
|
|
//Online data merge of each node
|
|
|
|
|
for _, v1 := range params.UserIDList {
|
|
|
|
|
flag = false
|
|
|
|
|
temp := new(pbRelay.GetUsersOnlineStatusResp_SuccessResult)
|
|
|
|
|
for _, v2 := range wsResult {
|
|
|
|
|
if v2.UserID == v1 {
|
|
|
|
|
flag = true
|
|
|
|
|
temp.UserID = v1
|
|
|
|
|
temp.Status = constant.OnlineStatus
|
|
|
|
|
temp.DetailPlatformStatus = append(temp.DetailPlatformStatus, v2.DetailPlatformStatus...)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if !flag {
|
|
|
|
|
temp.UserID = v1
|
|
|
|
|
temp.Status = constant.OfflineStatus
|
|
|
|
|
}
|
|
|
|
|
respResult = append(respResult, temp)
|
|
|
|
|
}
|
|
|
|
|
resp := api.GetUsersOnlineStatusResp{CommResp: api.CommResp{ErrCode: 0, ErrMsg: ""}, SuccessResult: respResult}
|
|
|
|
|
if len(respResult) == 0 {
|
|
|
|
|
resp.SuccessResult = []*pbRelay.GetUsersOnlineStatusResp_SuccessResult{}
|
|
|
|
|
}
|
|
|
|
|
log.NewInfo(req.OperationID, "GetUsersOnlineStatus api return", resp)
|
|
|
|
|
c.JSON(http.StatusOK, resp)
|
|
|
|
|
}
|
|
|
|
|