2023-07-11 09:08:19 +00:00
|
|
|
package logic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fusenapi/utils/auth"
|
|
|
|
"fusenapi/utils/basic"
|
2023-07-20 07:27:17 +00:00
|
|
|
"fusenapi/utils/format"
|
2023-07-11 09:08:19 +00:00
|
|
|
"fusenapi/utils/image"
|
|
|
|
"gorm.io/gorm"
|
2023-07-20 07:27:17 +00:00
|
|
|
"sort"
|
|
|
|
"strings"
|
2023-07-11 09:08:19 +00:00
|
|
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"fusenapi/server/product/internal/svc"
|
|
|
|
"fusenapi/server/product/internal/types"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
)
|
|
|
|
|
|
|
|
type GetRecommandProductListLogic struct {
|
|
|
|
logx.Logger
|
|
|
|
ctx context.Context
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewGetRecommandProductListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetRecommandProductListLogic {
|
|
|
|
return &GetRecommandProductListLogic{
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
ctx: ctx,
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *GetRecommandProductListLogic) GetRecommandProductList(req *types.GetRecommandProductListReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
2023-07-20 06:56:28 +00:00
|
|
|
req.Num = 4 //写死4个
|
2023-07-11 09:08:19 +00:00
|
|
|
if req.Size > 0 {
|
|
|
|
req.Size = image.GetCurrentSize(req.Size)
|
|
|
|
}
|
2023-07-20 06:56:28 +00:00
|
|
|
productInfo, err := l.svcCtx.AllModels.FsProduct.FindOneBySn(l.ctx, req.Sn)
|
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbRecordNotFoundErr, "detail`s product is not found")
|
|
|
|
}
|
|
|
|
logx.Error(err)
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to get detail product info")
|
|
|
|
}
|
|
|
|
//随机取产品列表(不包含详情产品)
|
|
|
|
recommendList, err := l.svcCtx.AllModels.FsProductRecommend.GetIgnoreRandomRecommendProductList(l.ctx, int(req.Num), []int64{productInfo.Id})
|
2023-07-11 09:08:19 +00:00
|
|
|
if err != nil {
|
|
|
|
logx.Error(err)
|
2023-07-20 06:56:28 +00:00
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to get random recommend list")
|
2023-07-11 09:08:19 +00:00
|
|
|
}
|
2023-07-20 06:56:28 +00:00
|
|
|
//需要填充时需要忽略的id
|
|
|
|
ignoreProductIds := make([]int64, 0, len(recommendList)+1)
|
|
|
|
ignoreProductIds = append(ignoreProductIds, productInfo.Id)
|
2023-07-20 07:27:17 +00:00
|
|
|
productIds := make([]int64, 0, len(recommendList))
|
2023-07-20 06:56:28 +00:00
|
|
|
for _, v := range recommendList {
|
|
|
|
ignoreProductIds = append(ignoreProductIds, *v.ProductId)
|
2023-07-20 07:27:17 +00:00
|
|
|
productIds = append(productIds, *v.ProductId)
|
2023-07-20 06:56:28 +00:00
|
|
|
}
|
|
|
|
//获取推荐产品列表
|
2023-07-20 07:27:17 +00:00
|
|
|
recommendProductList, err := l.svcCtx.AllModels.FsProduct.GetProductListByIds(l.ctx, productIds, "")
|
2023-07-20 06:56:28 +00:00
|
|
|
if err != nil {
|
|
|
|
logx.Error(err)
|
|
|
|
return resp.SetStatus(basic.CodeDbSqlErr, "failed to get recommend product list")
|
|
|
|
}
|
|
|
|
//在合并之前记住推荐的产品
|
|
|
|
mapRecommend := make(map[int64]struct{})
|
|
|
|
for _, v := range recommendProductList {
|
|
|
|
mapRecommend[v.Id] = struct{}{}
|
|
|
|
}
|
|
|
|
//小于请求的数量则需要从产品表中随机填补上
|
|
|
|
lenRecommendProduct := len(recommendProductList)
|
|
|
|
if lenRecommendProduct < int(req.Num) {
|
|
|
|
appendNum := int(req.Num) - lenRecommendProduct
|
|
|
|
productList, err := l.svcCtx.AllModels.FsProduct.GetIgnoreRandomProductList(l.ctx, appendNum, ignoreProductIds)
|
|
|
|
if err != nil {
|
|
|
|
logx.Error(err)
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to get product list")
|
|
|
|
}
|
|
|
|
//合并列表
|
2023-07-20 07:27:17 +00:00
|
|
|
for _, v := range productList {
|
|
|
|
productIds = append(productIds, v.Id)
|
|
|
|
recommendProductList = append(recommendProductList, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//查询产品价格
|
|
|
|
priceList, err := l.svcCtx.AllModels.FsProductPrice.GetPriceListByProductIds(l.ctx, productIds)
|
|
|
|
if err != nil {
|
|
|
|
logx.Error(err)
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to get product price list")
|
|
|
|
}
|
|
|
|
mapProductMinPrice := make(map[int64]int64)
|
|
|
|
for _, v := range priceList {
|
|
|
|
if v.StepPrice == nil || *v.StepPrice == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
stepPriceSlice, err := format.StrSlicToIntSlice(strings.Split(*v.StepPrice, ","))
|
|
|
|
if err != nil {
|
|
|
|
logx.Error(err)
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, "failed to parse step price")
|
|
|
|
}
|
|
|
|
//正序排序
|
|
|
|
sort.Ints(stepPriceSlice)
|
|
|
|
if min, ok := mapProductMinPrice[*v.ProductId]; ok {
|
|
|
|
if min > int64(stepPriceSlice[0]) {
|
|
|
|
mapProductMinPrice[*v.ProductId] = int64(stepPriceSlice[0])
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mapProductMinPrice[*v.ProductId] = int64(stepPriceSlice[0])
|
|
|
|
}
|
2023-07-11 09:08:19 +00:00
|
|
|
}
|
|
|
|
//获取用户信息(不用判断存在)
|
|
|
|
user, err := l.svcCtx.AllModels.FsUser.FindUserById(l.ctx, userinfo.UserId)
|
|
|
|
if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
logx.Error(err)
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to get user")
|
|
|
|
}
|
2023-07-20 06:56:28 +00:00
|
|
|
list := make([]types.GetRecommandProductListRsp, 0, len(recommendProductList))
|
|
|
|
for _, v := range recommendProductList {
|
2023-07-11 09:08:19 +00:00
|
|
|
r := image.ThousandFaceImageFormatReq{
|
|
|
|
Size: int(req.Size),
|
|
|
|
IsThousandFace: 0,
|
|
|
|
Cover: *v.Cover,
|
|
|
|
CoverImg: *v.CoverImg,
|
|
|
|
CoverDefault: *v.Cover,
|
|
|
|
ProductId: v.Id,
|
|
|
|
UserId: userinfo.UserId,
|
|
|
|
}
|
|
|
|
if user.Id != 0 {
|
|
|
|
r.IsThousandFace = int(*user.IsThousandFace)
|
|
|
|
}
|
2023-07-20 06:56:28 +00:00
|
|
|
//千人前面处理
|
2023-07-11 09:08:19 +00:00
|
|
|
image.ThousandFaceImageFormat(&r)
|
2023-07-20 06:56:28 +00:00
|
|
|
isRecommend := int64(0)
|
|
|
|
if _, ok := mapRecommend[v.Id]; ok {
|
|
|
|
isRecommend = 1
|
|
|
|
}
|
2023-07-20 07:27:17 +00:00
|
|
|
minPrice := int64(0)
|
|
|
|
if minVal, ok := mapProductMinPrice[v.Id]; ok {
|
|
|
|
minPrice = minVal
|
|
|
|
}
|
2023-07-11 09:08:19 +00:00
|
|
|
list = append(list, types.GetRecommandProductListRsp{
|
|
|
|
Id: v.Id,
|
|
|
|
Sn: *v.Sn,
|
|
|
|
Title: *v.Title,
|
|
|
|
TitleCn: *v.TitleCn,
|
|
|
|
Cover: r.Cover,
|
|
|
|
CoverImg: r.CoverImg,
|
|
|
|
CoverDefault: r.CoverDefault,
|
|
|
|
Intro: *v.Intro,
|
2023-07-20 06:56:28 +00:00
|
|
|
IsRecommend: isRecommend,
|
2023-07-20 07:27:17 +00:00
|
|
|
MinPrice: minPrice,
|
2023-07-11 09:08:19 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeOK, "success", list)
|
|
|
|
}
|