mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
* optimization: change the configuration file from being read globally to being read independently. * optimization: change the configuration file from being read globally to being read independently. * optimization: change the configuration file from being read globally to being read independently. * optimization: config file changed to dependency injection. * fix: replace global config with dependency injection * fix: replace global config with dependency injection * fix: import the enough param * fix: import the enough param * fix: import the enough param * fix: fix the component check of path * fix: fix the kafka of tls is nil problem * fix: fix the TLS.CACrt is nil error * fix: fix the valiable shadows problem * fix: fix the comflect * optimization: message remove options. * fix: fix the param pass error * fix: find error * fix: find error * fix: find eror * fix: find error * fix: find error * fix: del the undifined func * fix: find error * fix: fix the error * fix: pass config * fix: find error * fix: find error * fix: find error * fix: find error * fix: find error * fix: fix the config * fix: fix the error * fix: fix the config pass error * fix: fix the eror * fix: fix the error * fix: fix the error * fix: fix the error * fix: find error * fix: fix the error * fix: fix the config * fix: add return err * fix: fix the err2 * fix: err * fix: fix the func * fix: del the chinese comment * fix: fix the func * fix: fix the gateway_test logic * fix: s3 * test * test * fix: not found --------- Co-authored-by: luhaoling <2198702716@qq.com> Co-authored-by: withchao <993506633@qq.com>
244 lines
7.1 KiB
Go
244 lines
7.1 KiB
Go
// Copyright © 2023 OpenIM. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package msggateway
|
|
|
|
import (
|
|
"context"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
|
|
"sync"
|
|
|
|
"github.com/OpenIMSDK/protocol/msg"
|
|
"github.com/OpenIMSDK/protocol/push"
|
|
"github.com/OpenIMSDK/protocol/sdkws"
|
|
"github.com/OpenIMSDK/tools/discoveryregistry"
|
|
"github.com/OpenIMSDK/tools/errs"
|
|
"github.com/OpenIMSDK/tools/utils"
|
|
"github.com/go-playground/validator/v10"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
type Req struct {
|
|
ReqIdentifier int32 `json:"reqIdentifier" validate:"required"`
|
|
Token string `json:"token"`
|
|
SendID string `json:"sendID" validate:"required"`
|
|
OperationID string `json:"operationID" validate:"required"`
|
|
MsgIncr string `json:"msgIncr" validate:"required"`
|
|
Data []byte `json:"data"`
|
|
}
|
|
|
|
func (r *Req) String() string {
|
|
var tReq Req
|
|
tReq.ReqIdentifier = r.ReqIdentifier
|
|
tReq.Token = r.Token
|
|
tReq.SendID = r.SendID
|
|
tReq.OperationID = r.OperationID
|
|
tReq.MsgIncr = r.MsgIncr
|
|
return utils.StructToJsonString(tReq)
|
|
}
|
|
|
|
var reqPool = sync.Pool{
|
|
New: func() any {
|
|
return new(Req)
|
|
},
|
|
}
|
|
|
|
func getReq() *Req {
|
|
req := reqPool.Get().(*Req)
|
|
req.Data = nil
|
|
req.MsgIncr = ""
|
|
req.OperationID = ""
|
|
req.ReqIdentifier = 0
|
|
req.SendID = ""
|
|
req.Token = ""
|
|
return req
|
|
}
|
|
|
|
func freeReq(req *Req) {
|
|
reqPool.Put(req)
|
|
}
|
|
|
|
type Resp struct {
|
|
ReqIdentifier int32 `json:"reqIdentifier"`
|
|
MsgIncr string `json:"msgIncr"`
|
|
OperationID string `json:"operationID"`
|
|
ErrCode int `json:"errCode"`
|
|
ErrMsg string `json:"errMsg"`
|
|
Data []byte `json:"data"`
|
|
}
|
|
|
|
func (r *Resp) String() string {
|
|
var tResp Resp
|
|
tResp.ReqIdentifier = r.ReqIdentifier
|
|
tResp.MsgIncr = r.MsgIncr
|
|
tResp.OperationID = r.OperationID
|
|
tResp.ErrCode = r.ErrCode
|
|
tResp.ErrMsg = r.ErrMsg
|
|
return utils.StructToJsonString(tResp)
|
|
}
|
|
|
|
type MessageHandler interface {
|
|
GetSeq(context context.Context, data *Req) ([]byte, error)
|
|
SendMessage(context context.Context, data *Req) ([]byte, error)
|
|
SendSignalMessage(context context.Context, data *Req) ([]byte, error)
|
|
PullMessageBySeqList(context context.Context, data *Req) ([]byte, error)
|
|
UserLogout(context context.Context, data *Req) ([]byte, error)
|
|
SetUserDeviceBackground(context context.Context, data *Req) ([]byte, bool, error)
|
|
}
|
|
|
|
var _ MessageHandler = (*GrpcHandler)(nil)
|
|
|
|
type GrpcHandler struct {
|
|
msgRpcClient *rpcclient.MessageRpcClient
|
|
pushClient *rpcclient.PushRpcClient
|
|
validate *validator.Validate
|
|
}
|
|
|
|
func NewGrpcHandler(validate *validator.Validate, client discoveryregistry.SvcDiscoveryRegistry, config *config.GlobalConfig) *GrpcHandler {
|
|
msgRpcClient := rpcclient.NewMessageRpcClient(client, config)
|
|
pushRpcClient := rpcclient.NewPushRpcClient(client, config)
|
|
return &GrpcHandler{
|
|
msgRpcClient: &msgRpcClient,
|
|
pushClient: &pushRpcClient, validate: validate,
|
|
}
|
|
}
|
|
|
|
func (g GrpcHandler) GetSeq(context context.Context, data *Req) ([]byte, error) {
|
|
req := sdkws.GetMaxSeqReq{}
|
|
if err := proto.Unmarshal(data.Data, &req); err != nil {
|
|
return nil, errs.Wrap(err, "GetSeq: error unmarshaling request")
|
|
}
|
|
if err := g.validate.Struct(&req); err != nil {
|
|
return nil, errs.Wrap(err, "GetSeq: validation failed")
|
|
}
|
|
resp, err := g.msgRpcClient.GetMaxSeq(context, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c, err := proto.Marshal(resp)
|
|
if err != nil {
|
|
return nil, errs.Wrap(err, "GetSeq: error marshaling response")
|
|
}
|
|
return c, nil
|
|
}
|
|
|
|
// SendMessage handles the sending of messages through gRPC. It unmarshals the request data,
|
|
// validates the message, and then sends it using the message RPC client.
|
|
func (g GrpcHandler) SendMessage(ctx context.Context, data *Req) ([]byte, error) {
|
|
// Unmarshal the message data from the request.
|
|
var msgData sdkws.MsgData
|
|
if err := proto.Unmarshal(data.Data, &msgData); err != nil {
|
|
return nil, errs.Wrap(err, "error unmarshalling message data")
|
|
}
|
|
|
|
// Validate the message data structure.
|
|
if err := g.validate.Struct(&msgData); err != nil {
|
|
return nil, errs.Wrap(err, "message data validation failed")
|
|
}
|
|
|
|
req := msg.SendMsgReq{MsgData: &msgData}
|
|
|
|
resp, err := g.msgRpcClient.SendMsg(ctx, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
c, err := proto.Marshal(resp)
|
|
if err != nil {
|
|
return nil, errs.Wrap(err, "error marshaling response")
|
|
}
|
|
|
|
return c, nil
|
|
}
|
|
|
|
func (g GrpcHandler) SendSignalMessage(context context.Context, data *Req) ([]byte, error) {
|
|
resp, err := g.msgRpcClient.SendMsg(context, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c, err := proto.Marshal(resp)
|
|
if err != nil {
|
|
return nil, errs.Wrap(err, "error marshaling response")
|
|
}
|
|
return c, nil
|
|
}
|
|
|
|
func (g GrpcHandler) PullMessageBySeqList(context context.Context, data *Req) ([]byte, error) {
|
|
req := sdkws.PullMessageBySeqsReq{}
|
|
if err := proto.Unmarshal(data.Data, &req); err != nil {
|
|
return nil, errs.Wrap(err, "error unmarshaling request")
|
|
}
|
|
if err := g.validate.Struct(data); err != nil {
|
|
return nil, errs.Wrap(err, "validation failed")
|
|
}
|
|
resp, err := g.msgRpcClient.PullMessageBySeqList(context, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c, err := proto.Marshal(resp)
|
|
if err != nil {
|
|
return nil, errs.Wrap(err, "error marshaling response")
|
|
}
|
|
return c, nil
|
|
}
|
|
|
|
func (g GrpcHandler) UserLogout(context context.Context, data *Req) ([]byte, error) {
|
|
req := push.DelUserPushTokenReq{}
|
|
if err := proto.Unmarshal(data.Data, &req); err != nil {
|
|
return nil, errs.Wrap(err, "error unmarshaling request")
|
|
}
|
|
resp, err := g.pushClient.DelUserPushToken(context, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c, err := proto.Marshal(resp)
|
|
if err != nil {
|
|
return nil, errs.Wrap(err, "error marshaling response")
|
|
}
|
|
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, errs.Wrap(err, "error unmarshaling request")
|
|
}
|
|
if err := g.validate.Struct(data); err != nil {
|
|
return nil, false, errs.Wrap(err, "validation failed")
|
|
}
|
|
return nil, req.IsBackground, nil
|
|
}
|
|
|
|
// func (g GrpcHandler) call[T any](ctx context.Context, data Req, m proto.Message, rpc func(ctx context.Context, req
|
|
// proto.Message)) ([]byte, error) {
|
|
// if err := proto.Unmarshal(data.Data, m); err != nil {
|
|
// return nil, err
|
|
// }
|
|
// if err := g.validate.Struct(m); err != nil {
|
|
// return nil, err
|
|
// }
|
|
// rpc(ctx, m)
|
|
// 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
|
|
//}
|