fix
This commit is contained in:
parent
f6e2edf3a8
commit
1da29bb715
|
@ -97,8 +97,8 @@ func ConsumeCommonCacheData(ctx context.Context) {
|
||||||
func (l *CommonNotifyLogic) CommonNotify(req *types.CommonNotifyReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
func (l *CommonNotifyLogic) CommonNotify(req *types.CommonNotifyReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
||||||
searchConnectType := "uniqueId"
|
searchConnectType := "uniqueId"
|
||||||
if req.Wid == "" {
|
if req.Wid == "" {
|
||||||
if !userinfo.IsUser() && !userinfo.IsGuest() {
|
if req.UserId == 0 && req.GuestId == 0 {
|
||||||
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "websocket connect id is empty")
|
return resp.SetStatusWithMessage(basic.CodeOK, "用户信息或者连接标识必须保证至少有其中一个")
|
||||||
}
|
}
|
||||||
searchConnectType = "userInfo"
|
searchConnectType = "userInfo"
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,8 +13,10 @@ type RenderNotifyReq struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type CommonNotifyReq struct {
|
type CommonNotifyReq struct {
|
||||||
Wid string `json:"wid"` //websocket连接标识
|
Wid string `json:"wid,optional"` //websocket连接标识
|
||||||
Data map[string]interface{} `json:"data"` //后端与前端约定好的数据
|
UserId int64 `json:"user_id,optional"` //用户id
|
||||||
|
GuestId int64 `json:"guest_id,optional"` //游客id
|
||||||
|
Data map[string]interface{} `json:"data"` //后端与前端约定好的数据
|
||||||
}
|
}
|
||||||
|
|
||||||
type Request struct {
|
type Request struct {
|
||||||
|
|
|
@ -29,6 +29,8 @@ type RenderNotifyReq {
|
||||||
}
|
}
|
||||||
//通用回调接口
|
//通用回调接口
|
||||||
type CommonNotifyReq {
|
type CommonNotifyReq {
|
||||||
Wid string `json:"wid"` //websocket连接标识,(如果传了token,则以token为主寻找连接)
|
Wid string `json:"wid,optional"` //websocket连接标识
|
||||||
Data map[string]interface{} `json:"data"` //后端与前端约定好的数据
|
UserId int64 `json:"user_id,optional"` //用户id
|
||||||
|
GuestId int64 `json:"guest_id,optional"` //游客id
|
||||||
|
Data map[string]interface{} `json:"data"` //后端与前端约定好的数据
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user