2026-02-28 15:29:16 +08:00
|
|
|
package product
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
|
|
"muyu-apiserver/gateway/internal/svc"
|
|
|
|
|
"muyu-apiserver/gateway/internal/types"
|
|
|
|
|
"muyu-apiserver/pkg/ctxdata"
|
|
|
|
|
"muyu-apiserver/rpc/inventory/pb"
|
|
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type GetProductLogic struct {
|
|
|
|
|
logx.Logger
|
|
|
|
|
ctx context.Context
|
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewGetProductLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetProductLogic {
|
|
|
|
|
return &GetProductLogic{
|
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
|
ctx: ctx,
|
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (l *GetProductLogic) GetProduct() (resp *types.ProductInfo, err error) {
|
|
|
|
|
id := ctxdata.GetPathId(l.ctx)
|
|
|
|
|
|
|
|
|
|
rpcResp, err := l.svcCtx.InventoryRpc.GetProduct(l.ctx, &pb.GetProductReq{
|
|
|
|
|
ProductId: id,
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-14 15:24:02 +08:00
|
|
|
pi := productInfoFromPB(rpcResp)
|
|
|
|
|
return &pi, nil
|
2026-02-28 15:29:16 +08:00
|
|
|
}
|