mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-02 16:15:59 +08:00
api to rpc
This commit is contained in:
@@ -31,12 +31,51 @@ func Call[A, B, C any](
|
||||
}
|
||||
cli, err := client()
|
||||
if err != nil {
|
||||
resp = apiresp.Error(constant.ErrInternalServer.Wrap(err.Error())) // 参数校验失败
|
||||
resp = apiresp.Error(constant.ErrInternalServer.Wrap(err.Error())) // 获取RPC连接失败
|
||||
return
|
||||
}
|
||||
data, err := rpc(cli, c, &req)
|
||||
if err != nil {
|
||||
resp = apiresp.Error(err) // 参数校验失败
|
||||
resp = apiresp.Error(err) // RPC调用失败
|
||||
return
|
||||
}
|
||||
resp = apiresp.Success(data) // 成功
|
||||
}
|
||||
|
||||
func CallAny[A, B, C, D any](
|
||||
rpc func(client C, ctx context.Context, req *A, options ...grpc.CallOption) (*B, error),
|
||||
client func() (C, error),
|
||||
c *gin.Context,
|
||||
apiReq *D,
|
||||
cp func(apiReq *D, rpcReq *A) error,
|
||||
) {
|
||||
var resp *apiresp.ApiResponse
|
||||
defer func() {
|
||||
c.JSON(http.StatusOK, resp)
|
||||
}()
|
||||
if err := c.BindJSON(apiReq); err != nil {
|
||||
resp = apiresp.Error(constant.ErrArgs.Wrap(err.Error())) // 参数错误
|
||||
return
|
||||
}
|
||||
var req A
|
||||
if err := cp(apiReq, &req); err != nil {
|
||||
resp = apiresp.Error(constant.ErrArgs.Wrap(err.Error())) // 参数错误
|
||||
return
|
||||
}
|
||||
if check, ok := any(&req).(interface{ Check() error }); ok {
|
||||
if err := check.Check(); err != nil {
|
||||
resp = apiresp.Error(constant.ErrArgs.Wrap(err.Error())) // 参数校验失败
|
||||
return
|
||||
}
|
||||
}
|
||||
cli, err := client()
|
||||
if err != nil {
|
||||
resp = apiresp.Error(constant.ErrInternalServer.Wrap(err.Error())) // 获取RPC连接失败
|
||||
return
|
||||
}
|
||||
data, err := rpc(cli, c, &req)
|
||||
if err != nil {
|
||||
resp = apiresp.Error(err) // RPC调用失败
|
||||
return
|
||||
}
|
||||
resp = apiresp.Success(data) // 成功
|
||||
|
||||
Reference in New Issue
Block a user