2023-08-07 03:44:54 +00:00
|
|
|
|
package consumer
|
|
|
|
|
|
2023-08-07 05:20:18 +00:00
|
|
|
|
import (
|
2023-08-08 04:22:15 +00:00
|
|
|
|
"context"
|
2023-08-07 11:13:16 +00:00
|
|
|
|
"encoding/json"
|
2023-08-08 04:22:15 +00:00
|
|
|
|
"errors"
|
|
|
|
|
"fmt"
|
2023-08-08 10:35:29 +00:00
|
|
|
|
"fusenapi/constants"
|
|
|
|
|
"fusenapi/initalize"
|
2023-08-08 04:22:15 +00:00
|
|
|
|
"fusenapi/model/gmodel"
|
2023-08-07 11:13:16 +00:00
|
|
|
|
"fusenapi/utils/websocket_data"
|
2023-08-07 05:20:18 +00:00
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
2023-08-08 04:22:15 +00:00
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
"io/ioutil"
|
|
|
|
|
"net/http"
|
2023-08-08 10:35:29 +00:00
|
|
|
|
"strconv"
|
2023-08-09 03:16:36 +00:00
|
|
|
|
"strings"
|
2023-08-08 04:22:15 +00:00
|
|
|
|
"time"
|
2023-08-07 05:20:18 +00:00
|
|
|
|
)
|
2023-08-07 03:44:54 +00:00
|
|
|
|
|
2023-08-08 04:22:15 +00:00
|
|
|
|
// 这里请求的py接口返回数据
|
|
|
|
|
type pythonApiRsp struct {
|
|
|
|
|
Code int `json:"code"`
|
|
|
|
|
Msg string `json:"msg"`
|
|
|
|
|
Data []struct {
|
|
|
|
|
Tid int64 `json:"tid"`
|
|
|
|
|
Imgurl string `json:"imgurl"`
|
|
|
|
|
Costtime int64 `json:"costtime"`
|
|
|
|
|
} `json:"data"`
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-07 03:44:54 +00:00
|
|
|
|
// 消费渲染需要组装的数据
|
|
|
|
|
type MqConsumerRenderAssemble struct {
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-08 04:22:15 +00:00
|
|
|
|
func (m *MqConsumerRenderAssemble) Run(ctx context.Context, data []byte) error {
|
2023-08-07 05:20:18 +00:00
|
|
|
|
logx.Info("收到需要组装的消息:", string(data))
|
2023-08-07 11:13:16 +00:00
|
|
|
|
var parseInfo websocket_data.AssembleRenderData
|
|
|
|
|
if err := json.Unmarshal(data, &parseInfo); err != nil {
|
|
|
|
|
logx.Error("MqConsumerRenderAssemble数据格式错误:", err)
|
|
|
|
|
return nil //不返回错误就删除消息
|
|
|
|
|
}
|
2023-08-08 04:22:15 +00:00
|
|
|
|
val := ctx.Value("allmodels")
|
|
|
|
|
if val == nil {
|
|
|
|
|
return errors.New("allmodels is nil")
|
|
|
|
|
}
|
|
|
|
|
allmodels, ok := val.(*gmodel.AllModelsGen)
|
|
|
|
|
if !ok {
|
|
|
|
|
return errors.New("allmodels is nil!!")
|
|
|
|
|
}
|
|
|
|
|
timeSearchBegin := time.Now().UnixMilli()
|
|
|
|
|
//获取模板
|
|
|
|
|
templateInfo, err := allmodels.FsProductTemplateV2.FindOneByProductIdTagIdWithSizeTable(ctx, parseInfo.RenderData.ProductId, fmt.Sprintf("%d", parseInfo.RenderData.TemplateTagId))
|
|
|
|
|
if err != nil {
|
|
|
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
|
logx.Error("template info is not found")
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
logx.Error("failed to get template info:", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
renderLogTime := time.Now().UnixMilli() - timeSearchBegin
|
|
|
|
|
now := time.Now().Unix()
|
|
|
|
|
title := "1-组装模板数据"
|
|
|
|
|
//云渲染日志
|
|
|
|
|
err = allmodels.FsCloudRenderLog.Create(ctx, &gmodel.FsCloudRenderLog{
|
2023-08-09 04:28:06 +00:00
|
|
|
|
UserId: &parseInfo.RenderData.UserId,
|
|
|
|
|
GuestId: &parseInfo.RenderData.GuestId,
|
|
|
|
|
Title: &title,
|
|
|
|
|
Time: &renderLogTime,
|
|
|
|
|
Tag: &parseInfo.RenderId,
|
|
|
|
|
Ctime: &now,
|
2023-08-08 04:22:15 +00:00
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
}
|
|
|
|
|
pyapiBeginTime := time.Now().UnixMilli()
|
|
|
|
|
//这里curl post请求数据。获取处理好的贴图数据,用于贴model的贴图
|
|
|
|
|
pythonPostData := map[string]interface{}{
|
2023-08-09 02:23:58 +00:00
|
|
|
|
"tids": []int64{templateInfo.Id},
|
2023-08-08 04:22:15 +00:00
|
|
|
|
"data": parseInfo.RenderData.Data,
|
|
|
|
|
}
|
|
|
|
|
pyPostBytes, _ := json.Marshal(pythonPostData)
|
2023-08-09 03:16:36 +00:00
|
|
|
|
//post 数据结构
|
|
|
|
|
a := `{"tids":[128,431],"data":[{"id":"9d35ac5a-81a0-3caf-3246-cdbea9f2ddfe","tag":"MainColor","title":"\u8d34\u56fe2","type":"color","text":"","fill":"#c028b9","fontSize":20,"fontFamily":"Aqum2SmallCaps3","ifBr":false,"ifShow":true,"ifGroup":false,"maxNum":50,"rotation":0,"align":"center","verticalAlign":"middle","material":"","width":1024,"height":1024,"x":0,"y":0,"opacity":1,"optionalColor":[{"color":"#000000","name":"Black","default":true}],"zIndex":2,"svgPath":"","follow":{"fill":"","ifShow":"","content":""},"group":[],"cameraStand":{"x":0,"y":0,"z":0},"proportion":60,"materialName":"","materialTime":""},{"id":"c9be653f-dfc1-5659-1eb8-7ab128abe3d5","tag":"Logo","title":"\u8d34\u56fe4","type":"image","text":"","fill":"#c028b9","fontSize":65,"fontFamily":"MontserratBold3","ifBr":true,"ifShow":true,"ifGroup":false,"maxNum":50,"rotation":0,"align":"center","verticalAlign":"middle","material":"","width":312,"height":144.8044172010362,"x":99,"y":406.49999999999875,"opacity":1,"optionalColor":[{"color":"#000000","name":"Black","default":false},{"color":"#FFFFFF","name":"White","default":false},{"name":"MainColor","color":"#c028b9","default":true}],"zIndex":3,"svgPath":"","follow":{"fill":"","ifShow":"","content":""},"group":[],"cameraStand":{"x":0,"y":0,"z":0},"proportion":60,"materialTime":"","materialName":""},{"id":"e3269e77-b8c2-baec-bb9b-8399915a711c","tag":"Slogan","title":"\u8d34\u56fe5","type":"text","text":"","fill":"","fontSize":16,"fontFamily":"MontserratBold3","ifBr":false,"ifShow":true,"ifGroup":false,"maxNum":50,"rotation":0,"align":"center","verticalAlign":"middle","material":"","width":312,"height":18.999939381668568,"x":99,"y":605.0000538829611,"opacity":1,"optionalColor":[{"color":"#000000","name":"Black","default":true}],"zIndex":4,"svgPath":"","follow":{"fill":"bfc2b5a3-10af-c95b-fbf1-3016540fffad","ifShow":"","content":""},"group":[],"cameraStand":{"x":0,"y":0,"z":36},"proportion":60,"materialName":"","materialTime":""},{"id":"bfc2b5a3-10af-c95b-fbf1-3016540fffad","tag":"SecondaryColor","title":"\u8d34\u56fe9","type":"color","text":"","fill":"#FFFFFF","fontSize":20,"fontFamily":"Aqum2SmallCaps3","ifBr":false,"ifShow":true,"ifGroup":false,"maxNum":50,"rotation":0,"align":"center","verticalAlign":"middle","material":"","width":1024,"height":1024,"x":0,"y":0,"opacity":1,"optionalColor":[{"color":"#000000","name":"Black","default":true}],"zIndex":1,"svgPath":"","follow":{"fill":"","ifShow":"","content":""},"group":[],"cameraStand":{"x":0,"y":0,"z":0},"proportion":60}]}`
|
2023-08-08 04:22:15 +00:00
|
|
|
|
url := "http://110.41.19.98:8867/imgRender"
|
2023-08-09 03:16:36 +00:00
|
|
|
|
pyRsp, err := http.Post(url, "application/json;charset=UTF-8", strings.NewReader(a))
|
2023-08-08 04:22:15 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error("request python render api err:", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer pyRsp.Body.Close()
|
|
|
|
|
pyRspBytes, err := ioutil.ReadAll(pyRsp.Body)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error("failed to read python api rsp body,err=", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
var rspInfo pythonApiRsp
|
|
|
|
|
if err = json.Unmarshal(pyRspBytes, &rspInfo); err != nil {
|
|
|
|
|
logx.Error("failed to unmarshal python api rsp:", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if rspInfo.Code != 200 {
|
|
|
|
|
logx.Error("python api 接口请求错误:", rspInfo.Msg)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if len(rspInfo.Data) == 0 {
|
|
|
|
|
logx.Error("python api 接口没有数据:")
|
|
|
|
|
return err
|
|
|
|
|
}
|
2023-08-08 10:35:29 +00:00
|
|
|
|
mapImageData := make(map[int64]int)
|
|
|
|
|
for k, v := range rspInfo.Data {
|
|
|
|
|
mapImageData[v.Tid] = k
|
|
|
|
|
}
|
2023-08-08 04:22:15 +00:00
|
|
|
|
//云渲染日志
|
|
|
|
|
title = "2-请求->接收python合成刀版图接口"
|
|
|
|
|
now = time.Now().Unix()
|
|
|
|
|
pyRequestTime := time.Now().UnixMilli() - pyapiBeginTime
|
|
|
|
|
err = allmodels.FsCloudRenderLog.Create(ctx, &gmodel.FsCloudRenderLog{
|
2023-08-09 04:28:06 +00:00
|
|
|
|
UserId: &parseInfo.RenderData.UserId,
|
|
|
|
|
GuestId: &parseInfo.RenderData.GuestId,
|
|
|
|
|
Title: &title,
|
|
|
|
|
Time: &pyRequestTime,
|
|
|
|
|
Tag: &parseInfo.RenderId,
|
|
|
|
|
Ctime: &now,
|
2023-08-08 04:22:15 +00:00
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
}
|
|
|
|
|
incTime := int64(0)
|
|
|
|
|
mapCurlData := make(map[int64]int)
|
|
|
|
|
for k, v := range rspInfo.Data {
|
|
|
|
|
mapCurlData[v.Tid] = k
|
|
|
|
|
incTime += v.Costtime
|
|
|
|
|
}
|
|
|
|
|
//云渲染日志
|
|
|
|
|
title = "3-python合成刀版图"
|
|
|
|
|
now = time.Now().Unix()
|
|
|
|
|
postData := string(pyPostBytes)
|
|
|
|
|
pyRspStr := string(pyRspBytes)
|
|
|
|
|
err = allmodels.FsCloudRenderLog.Create(ctx, &gmodel.FsCloudRenderLog{
|
|
|
|
|
UserId: &parseInfo.RenderData.UserId,
|
2023-08-09 04:28:06 +00:00
|
|
|
|
GuestId: &parseInfo.RenderData.GuestId,
|
2023-08-08 04:22:15 +00:00
|
|
|
|
PostUrl: &url,
|
|
|
|
|
PostData: &postData,
|
|
|
|
|
Result: &pyRspStr,
|
|
|
|
|
Title: &title,
|
|
|
|
|
Time: &incTime,
|
|
|
|
|
Tag: &parseInfo.RenderId,
|
|
|
|
|
Ctime: &now,
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
}
|
2023-08-08 10:35:29 +00:00
|
|
|
|
timePinjieBegin := time.Now().UnixMilli()
|
2023-08-08 04:22:15 +00:00
|
|
|
|
//获取渲染设置信息
|
2023-08-08 10:35:29 +00:00
|
|
|
|
element, err := allmodels.FsProductTemplateElement.FindOneByModelId(ctx, *templateInfo.ModelId)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
|
logx.Error("element info is not found,model_id = ?", *templateInfo.ModelId)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
logx.Error("failed to get element list,", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
//组装数据
|
|
|
|
|
refletion := -1
|
|
|
|
|
if element.Refletion != nil && *element.Refletion != "" {
|
|
|
|
|
refletion, err = strconv.Atoi(*element.Refletion)
|
|
|
|
|
}
|
|
|
|
|
//组装data数据
|
|
|
|
|
var mode map[string]interface{}
|
|
|
|
|
if element.Mode != nil && *element.Mode != "" {
|
|
|
|
|
if err = json.Unmarshal([]byte(*element.Mode), &mode); err != nil {
|
|
|
|
|
logx.Error("faile to parse element mode json:", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
baseImage := ""
|
|
|
|
|
if index, ok := mapImageData[templateInfo.Id]; ok {
|
|
|
|
|
baseImage = constants.H5_URL + "/storage" + rspInfo.Data[index].Imgurl
|
|
|
|
|
}
|
2023-08-09 02:15:22 +00:00
|
|
|
|
tempData := make([]map[string]interface{}, 0, 3)
|
2023-08-08 10:35:29 +00:00
|
|
|
|
if element.Base != nil && *element.Base != "" {
|
|
|
|
|
tempData = append(tempData, map[string]interface{}{
|
|
|
|
|
"name": "model",
|
|
|
|
|
"data": "0," + baseImage + "," + *element.Base,
|
|
|
|
|
"type": "other",
|
|
|
|
|
"layer": "0",
|
|
|
|
|
"is_update": 1,
|
|
|
|
|
"mode": mode["model"],
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
if element.Shadow != nil && *element.Shadow != "" {
|
|
|
|
|
tempData = append(tempData, map[string]interface{}{
|
|
|
|
|
"name": "shadow",
|
|
|
|
|
"data": *element.Shadow,
|
|
|
|
|
"type": "other",
|
|
|
|
|
"layer": "0",
|
|
|
|
|
"is_update": 0,
|
|
|
|
|
"mode": mode["shadow"],
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
if element.ModelP != nil && *element.ModelP != "" {
|
|
|
|
|
tempData = append(tempData, map[string]interface{}{
|
|
|
|
|
"name": "model_P",
|
|
|
|
|
"data": "0," + *element.ModelP,
|
|
|
|
|
"type": "other",
|
|
|
|
|
"layer": "0",
|
|
|
|
|
"is_update": 0,
|
|
|
|
|
"mode": mode["model_P"],
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
result := []interface{}{
|
|
|
|
|
map[string]interface{}{
|
|
|
|
|
"light": *element.Light,
|
|
|
|
|
"refletion": refletion,
|
|
|
|
|
"scale": *element.Scale,
|
|
|
|
|
"sku_id": *templateInfo.ProductId,
|
|
|
|
|
"tid": *element.Title,
|
|
|
|
|
"rotation": *element.Rotation,
|
|
|
|
|
"filePath": "", //todo 文件路径,针对千人千面
|
|
|
|
|
"data": tempData,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
timePinjie := time.Now().UnixMilli() - timePinjieBegin
|
|
|
|
|
//云渲染日志
|
|
|
|
|
title = "接收到python刀版图 -> 3-组装MQ渲染任务队列"
|
|
|
|
|
now = time.Now().Unix()
|
|
|
|
|
err = allmodels.FsCloudRenderLog.Create(ctx, &gmodel.FsCloudRenderLog{
|
2023-08-09 04:28:06 +00:00
|
|
|
|
UserId: &parseInfo.RenderData.UserId,
|
|
|
|
|
GuestId: &parseInfo.RenderData.GuestId,
|
|
|
|
|
Title: &title,
|
|
|
|
|
Time: &timePinjie,
|
|
|
|
|
Tag: &parseInfo.RenderId,
|
|
|
|
|
Ctime: &now,
|
2023-08-08 10:35:29 +00:00
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
}
|
|
|
|
|
sendData := map[string]interface{}{
|
2023-08-09 06:12:58 +00:00
|
|
|
|
"id": parseInfo.TaskId,
|
2023-08-08 10:35:29 +00:00
|
|
|
|
"order_id": 0,
|
|
|
|
|
"user_id": parseInfo.RenderData.UserId,
|
2023-08-09 06:12:58 +00:00
|
|
|
|
"guest_id": parseInfo.RenderData.GuestId,
|
2023-08-08 10:35:29 +00:00
|
|
|
|
"sku_ids": []int64{parseInfo.RenderData.ProductId},
|
|
|
|
|
"tids": []string{*element.Title},
|
|
|
|
|
"data": result,
|
|
|
|
|
"is_thousand_face": 0,
|
|
|
|
|
"folder": "", //todo 千人千面需要使用
|
|
|
|
|
}
|
|
|
|
|
b, _ := json.Marshal(sendData)
|
|
|
|
|
rabbitmq := initalize.RabbitMqHandle{}
|
|
|
|
|
if err = rabbitmq.SendMsg(constants.RABBIT_MQ_TO_UNITY, b); err != nil {
|
|
|
|
|
logx.Error("发送渲染组装数据到rabbitmq失败:", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
logx.Info("发送渲染组装数据到rabbitmq 成功")
|
2023-08-07 03:44:54 +00:00
|
|
|
|
return nil
|
|
|
|
|
}
|