mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-07 10:35:59 +08:00
api resp
This commit is contained in:
+13
-19
@@ -1,49 +1,43 @@
|
||||
package a2r
|
||||
|
||||
import (
|
||||
"OpenIM/internal/apiresp"
|
||||
"OpenIM/pkg/common/constant"
|
||||
"context"
|
||||
"github.com/gin-gonic/gin"
|
||||
"google.golang.org/grpc"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
//// Call TEST
|
||||
//func Call2[A, B, C, D, E any](
|
||||
// apiReq *A,
|
||||
// apiResp *B,
|
||||
// rpc func(client E, ctx context.Context, req C, options ...grpc.CallOption) (D, error),
|
||||
// client func() (E, error),
|
||||
// c *gin.Context,
|
||||
// before func(apiReq *A, rpcReq *C, bind func() error) error,
|
||||
// after func(rpcResp *D, apiResp *B, bind func() error) error,
|
||||
//) {
|
||||
//
|
||||
//}
|
||||
|
||||
func Call[A, B, C any](
|
||||
rpc func(client C, ctx context.Context, req *A, options ...grpc.CallOption) (*B, error),
|
||||
client func() (C, error),
|
||||
c *gin.Context,
|
||||
) {
|
||||
var resp *apiresp.ApiResponse
|
||||
defer func() {
|
||||
c.JSON(http.StatusOK, resp)
|
||||
}()
|
||||
var req A
|
||||
if err := c.BindJSON(&req); err != nil {
|
||||
// todo 参数错误
|
||||
resp = apiresp.Error(constant.ErrArgs.Wrap(err.Error())) // 参数错误
|
||||
return
|
||||
}
|
||||
if check, ok := any(&req).(interface{ Check() error }); ok {
|
||||
if err := check.Check(); err != nil {
|
||||
// todo 参数校验失败
|
||||
resp = apiresp.Error(constant.ErrArgs.Wrap(err.Error())) // 参数校验失败
|
||||
return
|
||||
}
|
||||
}
|
||||
cli, err := client()
|
||||
if err != nil {
|
||||
// todo 获取rpc连接失败
|
||||
resp = apiresp.Error(constant.ErrInternalServer.Wrap(err.Error())) // 参数校验失败
|
||||
return
|
||||
}
|
||||
resp, err := rpc(cli, c, &req)
|
||||
data, err := rpc(cli, c, &req)
|
||||
if err != nil {
|
||||
// todo rpc请求失败
|
||||
resp = apiresp.Error(err) // 参数校验失败
|
||||
return
|
||||
}
|
||||
_ = resp
|
||||
resp = apiresp.Success(data) // 成功
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user