|
@@ -5,7 +5,7 @@ import (
|
|
|
"3dshow/db/repo"
|
|
|
"3dshow/log"
|
|
|
"errors"
|
|
|
- "strconv"
|
|
|
+ "fmt"
|
|
|
"time"
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
@@ -17,7 +17,8 @@ func Product(r *GinRouter) {
|
|
|
r.POSTJWT("/product/create", ProductAdd)
|
|
|
r.GETJWT("/product/list", ProductList)
|
|
|
r.POSTJWT("/product/update", ProductUpdate)
|
|
|
- r.GET("/product/detail/:id", ProductDetail)
|
|
|
+ r.GETJWT("/product/detail/:id", ProductDetail)
|
|
|
+ r.GET("/product/share/detail/:id", ProductDetail)
|
|
|
r.POSTJWT("/product/delete/:id", ProductDelete)
|
|
|
}
|
|
|
|
|
@@ -26,6 +27,7 @@ func ProductAdd(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
var form model.Product
|
|
|
err := c.ShouldBindJSON(&form)
|
|
|
if err != nil {
|
|
|
+ fmt.Println(err)
|
|
|
return nil, errors.New("参数错误!")
|
|
|
}
|
|
|
ctx := apictx.CreateRepoCtx()
|
|
@@ -36,6 +38,10 @@ func ProductAdd(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
return nil, errors.New("产品名不能为空")
|
|
|
}
|
|
|
form.CreateTime = time.Now()
|
|
|
+ // 状态默认为下架
|
|
|
+ if form.Status == 0 {
|
|
|
+ form.Status = -1
|
|
|
+ }
|
|
|
|
|
|
result, err := repo.RepoAddDoc(ctx, repo.CollectionProduct, &form)
|
|
|
return result, err
|
|
@@ -43,16 +49,22 @@ func ProductAdd(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
}
|
|
|
|
|
|
// 产品列表
|
|
|
+// ??? 上架才能展示 前端传 status:1
|
|
|
func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
page, size, query := UtilQueryPageSize(c)
|
|
|
- _sort := c.Query("sort")
|
|
|
- // 1:升序 -1:降序
|
|
|
- sort, _ := strconv.Atoi(_sort)
|
|
|
+ // asc:升序1 desc:降序-1
|
|
|
// 默认排序
|
|
|
onsaleTimeSort := repo.Map{"onsaleTime": -1}
|
|
|
- if sort != 0 {
|
|
|
- onsaleTimeSort = repo.Map{"onsaleTime": sort}
|
|
|
+ if _, ok := query["sort"]; ok {
|
|
|
+ if query["sort"].(string) == "asc" {
|
|
|
+ onsaleTimeSort = repo.Map{"onsaleTime": 1}
|
|
|
+ }
|
|
|
+ // if sort.(string) == "desc"{
|
|
|
+ // onsaleTimeSort = repo.Map{"onsaleTime": -1}
|
|
|
+ // }
|
|
|
+
|
|
|
}
|
|
|
+ delete(query, "sort")
|
|
|
// 查询数据
|
|
|
if _, ok := query["supplyId"]; !ok {
|
|
|
return nil, errors.New("供应链id不能为空")
|
|
@@ -61,14 +73,15 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
if err != nil {
|
|
|
return nil, errors.New("供应链id错误")
|
|
|
}
|
|
|
+ query["supplyId"] = supplyId
|
|
|
|
|
|
option := &repo.PageSearchOptions{
|
|
|
- CollectName: repo.CollectionSupply,
|
|
|
+ CollectName: repo.CollectionProduct,
|
|
|
Page: page,
|
|
|
Size: size,
|
|
|
Query: query,
|
|
|
- Project: []string{},
|
|
|
- Sort: onsaleTimeSort,
|
|
|
+ // Project: []string{},
|
|
|
+ Sort: onsaleTimeSort,
|
|
|
}
|
|
|
pageResult, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), option)
|
|
|
if err != nil {
|
|
@@ -91,7 +104,7 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
if len(pageResult.List) > 0 {
|
|
|
for _, v := range pageResult.List {
|
|
|
v["isCollect"] = false
|
|
|
- if len(collects) > 0 && err1 != nil {
|
|
|
+ if len(collects) > 0 && err1 == nil {
|
|
|
for _, col := range collects {
|
|
|
if v["_id"].(primitive.ObjectID) == col.ProductId { // productId唯一
|
|
|
v["isCollect"] = true
|
|
@@ -104,7 +117,7 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
return pageResult, err
|
|
|
}
|
|
|
|
|
|
-// 更新产品
|
|
|
+// 更新产品/编辑、下架
|
|
|
func ProductUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
var form model.Product
|
|
|
err := c.ShouldBindJSON(&form)
|
|
@@ -119,6 +132,11 @@ func ProductUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
}
|
|
|
|
|
|
// 产品信息
|
|
|
+type ProudctDetailRes struct {
|
|
|
+ model.Product
|
|
|
+ IsCollect bool `json:"isCollect"`
|
|
|
+}
|
|
|
+
|
|
|
func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
productId := c.Param("id")
|
|
|
id, err := primitive.ObjectIDFromHex(productId)
|
|
@@ -136,12 +154,26 @@ func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
log.Info(err)
|
|
|
return nil, errors.New("数据未找到")
|
|
|
}
|
|
|
- // ??? 是否收藏 前端调用接口判断
|
|
|
+ // 是否收藏
|
|
|
+ if apictx.User != nil {
|
|
|
+ _userId := apictx.User.ID
|
|
|
+ userId, err := primitive.ObjectIDFromHex(_userId)
|
|
|
+ if err != nil {
|
|
|
+ return nil, errors.New("非法用户")
|
|
|
+ }
|
|
|
+ var collect model.Collect
|
|
|
+ found, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
+ CollectName: repo.CollectionCollect,
|
|
|
+ Query: repo.Map{"userId": userId},
|
|
|
+ }, &collect)
|
|
|
+ return ProudctDetailRes{Product: product, IsCollect: found}, nil
|
|
|
+ }
|
|
|
|
|
|
return product, nil
|
|
|
}
|
|
|
|
|
|
// 删除产品
|
|
|
+// ???权限控制 admin 和 供应商本人
|
|
|
func ProductDelete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
productId := c.Param("id")
|
|
|
_, err := primitive.ObjectIDFromHex(productId)
|