sun-pc-linux 1 月之前
父节点
当前提交
019619c0c3
共有 3 个文件被更改,包括 78 次插入6 次删除
  1. 33 3
      sku3d/sku3d/api/a-service-fassi.go
  2. 45 1
      sku3d/sku3d/api/a-service-img.go
  3. 0 2
      sku3d/sku3d/api/router.go

+ 33 - 3
sku3d/sku3d/api/a-service-fassi.go

@@ -105,7 +105,37 @@ func QueryFassiImage(url string) ([]QueryResp, error) {
 	return out, nil
 }
 
-func RomoveFassiImage(id string) error {
-	//http请求python
-	return nil
+func RomoveFassiImage(id string) (bool, error) {
+	out := map[string]string{}
+
+	api := hostUrl + "/remove/" + id // 替换为实际的URL
+
+	// 发送POST请求
+	resp, err := http.Post(api, "application/json", nil)
+	if err != nil {
+		fmt.Println("请求失败:", err)
+		return false, err
+	}
+	defer resp.Body.Close()
+	if resp.StatusCode != http.StatusOK {
+		return false, NewError("fassi 删除失败")
+	}
+
+	// 读取响应内容
+	body, err := ioutil.ReadAll(resp.Body)
+	if err != nil {
+		fmt.Println("读取响应失败:", err)
+		return false, err
+	}
+
+	if err := json.Unmarshal(body, &out); err != nil {
+		fmt.Println("JSON解析失败:", err)
+		return false, err
+	}
+	if len(out["product_id"]) < 1 {
+		return false, NewError("删除fassi 失败")
+	}
+	// 打印JSON响应
+	fmt.Println("返回的JSON数据:", out)
+	return true, nil
 }

+ 45 - 1
sku3d/sku3d/api/a-service-img.go

@@ -1,8 +1,10 @@
 package api
 
 import (
+	"errors"
 	"sku3dweb/db/model"
 	"sku3dweb/db/repo"
+	"sku3dweb/log"
 	"time"
 
 	"github.com/gin-gonic/gin"
@@ -15,11 +17,53 @@ func FassiApi(r *GinRouter) {
 	r.GETJWT("/image/fassi/list", SearchByImg)
 	r.GETJWT("/image/list", SearchByFields)
 	r.POSTJWT("/image/delete/:id", DeleteImage)
+	r.POSTJWT("/image/update", UpdateImage)
+}
+
+func UpdateImage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
+	var matImage model.MatImage
+	err := c.ShouldBindJSON(&matImage)
+	if err != nil {
+		log.Error(err)
+		return nil, err
+	}
+	if matImage.Id.IsZero() {
+		return nil, errors.New("id错误")
+	}
+	searchMat := &model.MatImage{}
+	// 如果更新的是面料图
+	found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
+		CollectName: repo.CollectionMatImages,
+		Query:       repo.Map{"_id": matImage.Id},
+		Project:     []string{"rawImage"},
+	}, &searchMat)
+	if err != nil {
+		return nil, err
+	}
+	// 没有找到面料数据
+	if !found {
+		return nil, NewError("未找到数据")
+	}
+	// 更新了面料原图 对应更新fassi 特征数据
+	if searchMat.RawImage.Url != matImage.RawImage.Url {
+		// 先删除
+		_, err := RomoveFassiImage(matImage.Id.Hex())
+		if err != nil {
+			return nil, err
+		}
+		// 再新增
+		err = AddFassiImage(matImage.Id, matImage.RawImage.Url)
+		if err != nil {
+			return nil, err
+		}
+	}
+
+	return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionMatImages, matImage.Id.Hex(), &matImage)
 }
 
 func DeleteImage(c *gin.Context, apictx *ApiSession) (interface{}, error) {
 	id := c.Param("id")
-	err := RomoveFassiImage(id)
+	_, err := RomoveFassiImage(id)
 	if err != nil {
 		return nil, err
 	}

+ 0 - 2
sku3d/sku3d/api/router.go

@@ -15,8 +15,6 @@ func RegRouters(svc *Service) {
 	spud3dGroup := svc.NewGinRouter("/longyuan")
 
 	spud3dGroup.POSTJWT("/login/succ", ServiceLoginSucc)
-	//minio
-	// spud3dGroup.POSTJWT("/oss/policy", MinioCreateUserPolicy)
 
 	FassiApi(spud3dGroup)
 	CreateCatRouter(spud3dGroup)