mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-26 03:26:57 +08:00
gateway update
This commit is contained in:
parent
d56fef0a88
commit
d54cab5d03
@ -4,6 +4,7 @@ import (
|
|||||||
"Open_IM/pkg/common/config"
|
"Open_IM/pkg/common/config"
|
||||||
discoveryRegistry "Open_IM/pkg/discoveryregistry"
|
discoveryRegistry "Open_IM/pkg/discoveryregistry"
|
||||||
"Open_IM/pkg/proto/msg"
|
"Open_IM/pkg/proto/msg"
|
||||||
|
"Open_IM/pkg/proto/sdkws"
|
||||||
"context"
|
"context"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
)
|
)
|
||||||
@ -28,3 +29,39 @@ func (m *MsgCheck) SendMsg(ctx context.Context, req *msg.SendMsgReq) (*msg.SendM
|
|||||||
resp, err := msg.NewMsgClient(cc).SendMsg(ctx, req)
|
resp, err := msg.NewMsgClient(cc).SendMsg(ctx, req)
|
||||||
return resp, err
|
return resp, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *MsgCheck) GetMaxAndMinSeq(ctx context.Context, req *sdkws.GetMaxAndMinSeqReq) (*sdkws.GetMaxAndMinSeqResp, error) {
|
||||||
|
cc, err := m.getConn()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
resp, err := msg.NewMsgClient(cc).GetMaxAndMinSeq(ctx, req)
|
||||||
|
return resp, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgCheck) PullMessageBySeqList(ctx context.Context, req *sdkws.PullMessageBySeqListReq) (*sdkws.PullMessageBySeqListResp, error) {
|
||||||
|
cc, err := m.getConn()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
resp, err := msg.NewMsgClient(cc).PullMessageBySeqList(ctx, req)
|
||||||
|
return resp, err
|
||||||
|
}
|
||||||
|
|
||||||
|
//func (m *MsgCheck) SendMsg(ctx context.Context, req *msg.SendMsgReq) (*msg.SendMsgResp, error) {
|
||||||
|
// cc, err := m.getConn()
|
||||||
|
// if err != nil {
|
||||||
|
// return nil, err
|
||||||
|
// }
|
||||||
|
// resp, err := msg.NewMsgClient(cc).SendMsg(ctx, req)
|
||||||
|
// return resp, err
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//func (m *MsgCheck) SendMsg(ctx context.Context, req *msg.SendMsgReq) (*msg.SendMsgResp, error) {
|
||||||
|
// cc, err := m.getConn()
|
||||||
|
// if err != nil {
|
||||||
|
// return nil, err
|
||||||
|
// }
|
||||||
|
// resp, err := msg.NewMsgClient(cc).SendMsg(ctx, req)
|
||||||
|
// return resp, err
|
||||||
|
//}
|
||||||
|
@ -16,7 +16,7 @@ import (
|
|||||||
type Check struct {
|
type Check struct {
|
||||||
user *check.UserCheck
|
user *check.UserCheck
|
||||||
group *check.GroupChecker
|
group *check.GroupChecker
|
||||||
msg *check.MsgCheck
|
Msg *check.MsgCheck
|
||||||
friend *check.FriendChecker
|
friend *check.FriendChecker
|
||||||
conversation *check.ConversationChecker
|
conversation *check.ConversationChecker
|
||||||
}
|
}
|
||||||
@ -25,7 +25,7 @@ func NewCheck(zk discoveryRegistry.SvcDiscoveryRegistry) *Check {
|
|||||||
return &Check{
|
return &Check{
|
||||||
user: check.NewUserCheck(zk),
|
user: check.NewUserCheck(zk),
|
||||||
group: check.NewGroupChecker(zk),
|
group: check.NewGroupChecker(zk),
|
||||||
msg: check.NewMsgCheck(zk),
|
Msg: check.NewMsgCheck(zk),
|
||||||
friend: check.NewFriendChecker(zk),
|
friend: check.NewFriendChecker(zk),
|
||||||
conversation: check.NewConversationChecker(zk),
|
conversation: check.NewConversationChecker(zk),
|
||||||
}
|
}
|
||||||
@ -301,5 +301,5 @@ func (c *Check) Notification(ctx context.Context, notificationMsg *NotificationM
|
|||||||
msg.OfflinePushInfo = &offlineInfo
|
msg.OfflinePushInfo = &offlineInfo
|
||||||
req.MsgData = &msg
|
req.MsgData = &msg
|
||||||
|
|
||||||
_, err = c.msg.SendMsg(ctx, &req)
|
_, err = c.Msg.SendMsg(ctx, &req)
|
||||||
}
|
}
|
||||||
|
@ -87,5 +87,5 @@ func (c *Check) messageReactionSender(ctx context.Context, sendID string, source
|
|||||||
case constant.GroupChatType, constant.SuperGroupChatType:
|
case constant.GroupChatType, constant.SuperGroupChatType:
|
||||||
pbData.MsgData.GroupID = sourceID
|
pbData.MsgData.GroupID = sourceID
|
||||||
}
|
}
|
||||||
_, err = c.msg.SendMsg(ctx, &pbData)
|
_, err = c.Msg.SendMsg(ctx, &pbData)
|
||||||
}
|
}
|
||||||
|
@ -86,7 +86,7 @@ func (c *Client) readMessage() {
|
|||||||
}
|
}
|
||||||
//c.close()
|
//c.close()
|
||||||
}()
|
}()
|
||||||
var returnErr error
|
//var returnErr error
|
||||||
for {
|
for {
|
||||||
messageType, message, returnErr := c.conn.ReadMessage()
|
messageType, message, returnErr := c.conn.ReadMessage()
|
||||||
if returnErr != nil {
|
if returnErr != nil {
|
||||||
@ -115,7 +115,7 @@ func (c *Client) readMessage() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
func (c *Client) handleMessage(message []byte) error {
|
func (c *Client) handleMessage(message []byte) error {
|
||||||
if c.IsCompress {
|
if c.isCompress {
|
||||||
var decompressErr error
|
var decompressErr error
|
||||||
message, decompressErr = c.compressor.DeCompress(message)
|
message, decompressErr = c.compressor.DeCompress(message)
|
||||||
if decompressErr != nil {
|
if decompressErr != nil {
|
||||||
@ -134,9 +134,10 @@ func (c *Client) handleMessage(message []byte) error {
|
|||||||
return errors.New("exception conn userID not same to req userID")
|
return errors.New("exception conn userID not same to req userID")
|
||||||
}
|
}
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
ctx = context.WithValue(ctx, c.connID, binaryReq.OperationID)
|
ctx = context.WithValue(ctx, CONN_ID, c.connID)
|
||||||
ctx = context.WithValue(ctx, OPERATION_ID, binaryReq.OperationID)
|
ctx = context.WithValue(ctx, OPERATION_ID, binaryReq.OperationID)
|
||||||
ctx = context.WithValue(ctx, "userID", binaryReq.SendID)
|
ctx = context.WithValue(ctx, COMMON_USERID, binaryReq.SendID)
|
||||||
|
ctx = context.WithValue(ctx, PLATFORM_ID, c.platformID)
|
||||||
var messageErr error
|
var messageErr error
|
||||||
var resp []byte
|
var resp []byte
|
||||||
switch binaryReq.ReqIdentifier {
|
switch binaryReq.ReqIdentifier {
|
||||||
@ -151,13 +152,23 @@ func (c *Client) handleMessage(message []byte) error {
|
|||||||
case constant.WsLogoutMsg:
|
case constant.WsLogoutMsg:
|
||||||
resp, messageErr = c.handler.UserLogout(ctx, binaryReq)
|
resp, messageErr = c.handler.UserLogout(ctx, binaryReq)
|
||||||
case constant.WsSetBackgroundStatus:
|
case constant.WsSetBackgroundStatus:
|
||||||
resp, messageErr = c.handler.SetUserDeviceBackground(ctx, binaryReq)
|
resp, messageErr = c.setAppBackgroundStatus(ctx, binaryReq)
|
||||||
default:
|
default:
|
||||||
return errors.New(fmt.Sprintf("ReqIdentifier failed,sendID:%d,msgIncr:%s,reqIdentifier:%s", binaryReq.SendID, binaryReq.MsgIncr, binaryReq.ReqIdentifier))
|
return errors.New(fmt.Sprintf("ReqIdentifier failed,sendID:%d,msgIncr:%s,reqIdentifier:%s", binaryReq.SendID, binaryReq.MsgIncr, binaryReq.ReqIdentifier))
|
||||||
}
|
}
|
||||||
c.replyMessage(binaryReq, messageErr, resp)
|
c.replyMessage(&binaryReq, messageErr, resp)
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
|
}
|
||||||
|
func (c *Client) setAppBackgroundStatus(ctx context.Context, req Req) ([]byte, error) {
|
||||||
|
resp, isBackground, messageErr := c.handler.SetUserDeviceBackground(ctx, req)
|
||||||
|
if messageErr != nil {
|
||||||
|
return nil, messageErr
|
||||||
|
}
|
||||||
|
c.isBackground = isBackground
|
||||||
|
//todo callback
|
||||||
|
return resp, nil
|
||||||
|
|
||||||
}
|
}
|
||||||
func (c *Client) close() {
|
func (c *Client) close() {
|
||||||
c.w.Lock()
|
c.w.Lock()
|
||||||
@ -166,7 +177,7 @@ func (c *Client) close() {
|
|||||||
c.unregisterChan <- c
|
c.unregisterChan <- c
|
||||||
|
|
||||||
}
|
}
|
||||||
func (c *Client) replyMessage(binaryReq Req, err error, resp []byte) {
|
func (c *Client) replyMessage(binaryReq *Req, err error, resp []byte) {
|
||||||
mReply := Resp{
|
mReply := Resp{
|
||||||
ReqIdentifier: binaryReq.ReqIdentifier,
|
ReqIdentifier: binaryReq.ReqIdentifier,
|
||||||
MsgIncr: binaryReq.MsgIncr,
|
MsgIncr: binaryReq.MsgIncr,
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package new
|
package new
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"Open_IM/pkg/utils"
|
||||||
"bytes"
|
"bytes"
|
||||||
"compress/gzip"
|
"compress/gzip"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
package new
|
package new
|
||||||
|
|
||||||
const (
|
const (
|
||||||
USERID = "sendID"
|
WS_USERID = "sendID"
|
||||||
|
COMMON_USERID = "userID"
|
||||||
PLATFORM_ID = "platformID"
|
PLATFORM_ID = "platformID"
|
||||||
|
CONN_ID = "connID"
|
||||||
TOKEN = "token"
|
TOKEN = "token"
|
||||||
OPERATION_ID = "operationID"
|
OPERATION_ID = "operationID"
|
||||||
COMPRESSION = "compression"
|
COMPRESSION = "compression"
|
||||||
|
@ -47,7 +47,7 @@ func (c *UserConnContext) GetConnID() string {
|
|||||||
return c.RemoteAddr + "_" + strconv.Itoa(int(utils.GetCurrentTimestampByMill()))
|
return c.RemoteAddr + "_" + strconv.Itoa(int(utils.GetCurrentTimestampByMill()))
|
||||||
}
|
}
|
||||||
func (c *UserConnContext) GetUserID() string {
|
func (c *UserConnContext) GetUserID() string {
|
||||||
return c.Req.URL.Query().Get(USERID)
|
return c.Req.URL.Query().Get(WS_USERID)
|
||||||
}
|
}
|
||||||
func (c *UserConnContext) GetPlatformID() string {
|
func (c *UserConnContext) GetPlatformID() string {
|
||||||
return c.Req.URL.Query().Get(PLATFORM_ID)
|
return c.Req.URL.Query().Get(PLATFORM_ID)
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package new
|
package new
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"Open_IM/pkg/utils"
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/gob"
|
"encoding/gob"
|
||||||
)
|
)
|
||||||
|
@ -25,7 +25,7 @@ type LongConn interface {
|
|||||||
//Set the connection of the current long connection to nil
|
//Set the connection of the current long connection to nil
|
||||||
SetConnNil()
|
SetConnNil()
|
||||||
//Check the connection of the current and when it was sent are the same
|
//Check the connection of the current and when it was sent are the same
|
||||||
CheckSendConnDiffNow() bool
|
//CheckSendConnDiffNow() bool
|
||||||
//
|
//
|
||||||
GenerateLongConn(w http.ResponseWriter, r *http.Request) error
|
GenerateLongConn(w http.ResponseWriter, r *http.Request) error
|
||||||
}
|
}
|
||||||
@ -58,13 +58,13 @@ func (d *GWebSocket) GenerateLongConn(w http.ResponseWriter, r *http.Request) er
|
|||||||
|
|
||||||
}
|
}
|
||||||
func (d *GWebSocket) WriteMessage(messageType int, message []byte) error {
|
func (d *GWebSocket) WriteMessage(messageType int, message []byte) error {
|
||||||
d.setSendConn(d.conn)
|
//d.setSendConn(d.conn)
|
||||||
return d.conn.WriteMessage(messageType, message)
|
return d.conn.WriteMessage(messageType, message)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *GWebSocket) setSendConn(sendConn *websocket.Conn) {
|
//func (d *GWebSocket) setSendConn(sendConn *websocket.Conn) {
|
||||||
d.sendConn = sendConn
|
// d.sendConn = sendConn
|
||||||
}
|
//}
|
||||||
|
|
||||||
func (d *GWebSocket) ReadMessage() (int, []byte, error) {
|
func (d *GWebSocket) ReadMessage() (int, []byte, error) {
|
||||||
return d.conn.ReadMessage()
|
return d.conn.ReadMessage()
|
||||||
@ -96,6 +96,7 @@ func (d *GWebSocket) IsNil() bool {
|
|||||||
func (d *GWebSocket) SetConnNil() {
|
func (d *GWebSocket) SetConnNil() {
|
||||||
d.conn = nil
|
d.conn = nil
|
||||||
}
|
}
|
||||||
func (d *GWebSocket) CheckSendConnDiffNow() bool {
|
|
||||||
return d.conn == d.sendConn
|
//func (d *GWebSocket) CheckSendConnDiffNow() bool {
|
||||||
}
|
// return d.conn == d.sendConn
|
||||||
|
//}
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
package new
|
package new
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"Open_IM/internal/common/check"
|
"Open_IM/internal/common/notification"
|
||||||
|
"Open_IM/pkg/proto/msg"
|
||||||
|
pbRtc "Open_IM/pkg/proto/rtc"
|
||||||
|
"Open_IM/pkg/proto/sdkws"
|
||||||
"context"
|
"context"
|
||||||
|
"github.com/go-playground/validator/v10"
|
||||||
|
"github.com/golang/protobuf/proto"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Req struct {
|
type Req struct {
|
||||||
@ -27,39 +32,118 @@ type MessageHandler interface {
|
|||||||
SendSignalMessage(context context.Context, data Req) ([]byte, error)
|
SendSignalMessage(context context.Context, data Req) ([]byte, error)
|
||||||
PullMessageBySeqList(context context.Context, data Req) ([]byte, error)
|
PullMessageBySeqList(context context.Context, data Req) ([]byte, error)
|
||||||
UserLogout(context context.Context, data Req) ([]byte, error)
|
UserLogout(context context.Context, data Req) ([]byte, error)
|
||||||
SetUserDeviceBackground(context context.Context, data Req) ([]byte, error)
|
SetUserDeviceBackground(context context.Context, data Req) ([]byte, bool, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ MessageHandler = (*GrpcHandler)(nil)
|
var _ MessageHandler = (*GrpcHandler)(nil)
|
||||||
|
|
||||||
type GrpcHandler struct {
|
type GrpcHandler struct {
|
||||||
msg *check.MsgCheck
|
notification *notification.Check
|
||||||
|
validate *validator.Validate
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewGrpcHandler(msg *check.MsgCheck) *GrpcHandler {
|
func NewGrpcHandler(validate *validator.Validate, notification *notification.Check) *GrpcHandler {
|
||||||
return &GrpcHandler{msg: msg}
|
return &GrpcHandler{notification: notification, validate: validate}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g GrpcHandler) GetSeq(context context.Context, data Req) ([]byte, error) {
|
func (g GrpcHandler) GetSeq(context context.Context, data Req) ([]byte, error) {
|
||||||
panic("implement me")
|
req := sdkws.GetMaxAndMinSeqReq{}
|
||||||
|
if err := proto.Unmarshal(data.Data, &req); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := g.validate.Struct(req); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
resp, err := g.notification.Msg.GetMaxAndMinSeq(context, &req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
c, err := proto.Marshal(resp)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g GrpcHandler) SendMessage(context context.Context, data Req) ([]byte, error) {
|
func (g GrpcHandler) SendMessage(context context.Context, data Req) ([]byte, error) {
|
||||||
panic("implement me")
|
msgData := sdkws.MsgData{}
|
||||||
|
if err := proto.Unmarshal(data.Data, &msgData); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := g.validate.Struct(msgData); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
req := msg.SendMsgReq{MsgData: &msgData}
|
||||||
|
resp, err := g.notification.Msg.SendMsg(context, &req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
c, err := proto.Marshal(resp)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g GrpcHandler) SendSignalMessage(context context.Context, data Req) ([]byte, error) {
|
func (g GrpcHandler) SendSignalMessage(context context.Context, data Req) ([]byte, error) {
|
||||||
panic("implement me")
|
signalReq := pbRtc.SignalReq{}
|
||||||
|
if err := proto.Unmarshal(data.Data, &signalReq); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := g.validate.Struct(signalReq); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
//req := pbRtc.SignalMessageAssembleReq{SignalReq: &signalReq, OperationID: "111"}
|
||||||
|
//todo rtc rpc call
|
||||||
|
resp, err := g.notification.Msg.SendMsg(context, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
c, err := proto.Marshal(resp)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g GrpcHandler) PullMessageBySeqList(context context.Context, data Req) ([]byte, error) {
|
func (g GrpcHandler) PullMessageBySeqList(context context.Context, data Req) ([]byte, error) {
|
||||||
panic("implement me")
|
req := sdkws.PullMessageBySeqListReq{}
|
||||||
|
if err := proto.Unmarshal(data.Data, &req); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err := g.validate.Struct(data); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
resp, err := g.notification.Msg.PullMessageBySeqList(context, &req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
c, err := proto.Marshal(resp)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g GrpcHandler) UserLogout(context context.Context, data Req) ([]byte, error) {
|
func (g GrpcHandler) UserLogout(context context.Context, data Req) ([]byte, error) {
|
||||||
panic("implement me")
|
//todo
|
||||||
|
resp, err := g.notification.Msg.PullMessageBySeqList(context, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
|
c, err := proto.Marshal(resp)
|
||||||
func (g GrpcHandler) SetUserDeviceBackground(context context.Context, data Req) ([]byte, error) {
|
if err != nil {
|
||||||
panic("implement me")
|
return nil, err
|
||||||
|
}
|
||||||
|
return c, nil
|
||||||
|
}
|
||||||
|
func (g GrpcHandler) SetUserDeviceBackground(_ context.Context, data Req) ([]byte, bool, error) {
|
||||||
|
req := sdkws.SetAppBackgroundStatusReq{}
|
||||||
|
if err := proto.Unmarshal(data.Data, &req); err != nil {
|
||||||
|
return nil, false, err
|
||||||
|
}
|
||||||
|
if err := g.validate.Struct(data); err != nil {
|
||||||
|
return nil, false, err
|
||||||
|
}
|
||||||
|
return nil, req.IsBackground, nil
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package new
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"Open_IM/pkg/common/constant"
|
"Open_IM/pkg/common/constant"
|
||||||
|
"Open_IM/pkg/common/tokenverify"
|
||||||
"Open_IM/pkg/utils"
|
"Open_IM/pkg/utils"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -15,7 +16,7 @@ import (
|
|||||||
|
|
||||||
var bufferPool = sync.Pool{
|
var bufferPool = sync.Pool{
|
||||||
New: func() interface{} {
|
New: func() interface{} {
|
||||||
return make([]byte, 1000)
|
return make([]byte, 1024)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -27,7 +28,7 @@ type Server struct {
|
|||||||
rpcPort int
|
rpcPort int
|
||||||
wsMaxConnNum int
|
wsMaxConnNum int
|
||||||
longConnServer *LongConnServer
|
longConnServer *LongConnServer
|
||||||
rpcServer *RpcServer
|
//rpcServer *RpcServer
|
||||||
}
|
}
|
||||||
type WsServer struct {
|
type WsServer struct {
|
||||||
port int
|
port int
|
||||||
@ -68,7 +69,7 @@ func newWsServer(opts ...Option) (*WsServer, error) {
|
|||||||
},
|
},
|
||||||
validate: validator.New(),
|
validate: validator.New(),
|
||||||
clients: newUserMap(),
|
clients: newUserMap(),
|
||||||
handler: NewGrpcHandler(),
|
//handler: NewGrpcHandler(validate),
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
func (ws *WsServer) Run() error {
|
func (ws *WsServer) Run() error {
|
||||||
@ -127,8 +128,6 @@ func (ws *WsServer) unregisterClient(client *Client) {
|
|||||||
fmt.Println("R在线用户连接数量:", ws.onlineUserConnNum)
|
fmt.Println("R在线用户连接数量:", ws.onlineUserConnNum)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
func (ws *WsServer) wsHandler(w http.ResponseWriter, r *http.Request) {
|
func (ws *WsServer) wsHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
context := newContext(w, r)
|
context := newContext(w, r)
|
||||||
if ws.onlineUserConnNum >= ws.wsMaxConnNum {
|
if ws.onlineUserConnNum >= ws.wsMaxConnNum {
|
||||||
@ -142,7 +141,6 @@ func (ws *WsServer) wsHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
exists bool
|
exists bool
|
||||||
compression bool
|
compression bool
|
||||||
compressor Compressor
|
compressor Compressor
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
token, exists = context.Query(TOKEN)
|
token, exists = context.Query(TOKEN)
|
||||||
@ -150,7 +148,7 @@ func (ws *WsServer) wsHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
httpError(context, constant.ErrConnArgsErr)
|
httpError(context, constant.ErrConnArgsErr)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
userID, exists = context.Query(USERID)
|
userID, exists = context.Query(WS_USERID)
|
||||||
if !exists {
|
if !exists {
|
||||||
httpError(context, constant.ErrConnArgsErr)
|
httpError(context, constant.ErrConnArgsErr)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user