You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/pkg/a2r/api2rpc.go

43 lines
1.2 KiB

2 years ago
package a2r
import (
"context"
2 years ago
"github.com/OpenIMSDK/Open-IM-Server/pkg/apiresp"
2 years ago
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/log"
2 years ago
"github.com/OpenIMSDK/Open-IM-Server/pkg/errs"
2 years ago
"github.com/gin-gonic/gin"
"google.golang.org/grpc"
)
2 years ago
func Call[A, B, C any](
rpc func(client C, ctx context.Context, req *A, options ...grpc.CallOption) (*B, error),
client func() (C, error),
2 years ago
c *gin.Context,
) {
2 years ago
var req A
if err := c.BindJSON(&req); err != nil {
2 years ago
log.ZWarn(c, "gin bind json error", err, "req", req)
2 years ago
apiresp.GinError(c, errs.ErrArgs.WithDetail(err.Error()).Wrap()) // 参数错误
2 years ago
return
}
if check, ok := any(&req).(interface{ Check() error }); ok {
if err := check.Check(); err != nil {
2 years ago
log.ZWarn(c, "custom check error", err, "req", req)
2 years ago
apiresp.GinError(c, errs.ErrArgs.Wrap(err.Error())) // 参数校验失败
2 years ago
return
}
}
cli, err := client()
if err != nil {
2 years ago
log.ZError(c, "get conn error", err, "req", req)
2 years ago
apiresp.GinError(c, errs.ErrInternalServer.Wrap(err.Error())) // 获取RPC连接失败
2 years ago
return
}
2 years ago
data, err := rpc(cli, c, &req)
2 years ago
if err != nil {
2 years ago
apiresp.GinError(c, err) // RPC调用失败
2 years ago
return
}
2 years ago
apiresp.GinSuccess(c, data) // 成功
2 years ago
}