|
@@ -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
|
|
|
}
|