product.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. package api
  2. import (
  3. "3dshow/db/model"
  4. "3dshow/db/repo"
  5. "3dshow/log"
  6. "errors"
  7. "fmt"
  8. "time"
  9. "github.com/gin-gonic/gin"
  10. "go.mongodb.org/mongo-driver/bson/primitive"
  11. )
  12. // 产品管理
  13. func Product(r *GinRouter) {
  14. r.POSTJWT("/product/create", ProductAdd)
  15. r.GETJWT("/product/list", ProductList)
  16. r.POSTJWT("/product/update", ProductUpdate)
  17. r.GETJWT("/product/detail/:id", ProductDetail)
  18. r.GET("/product/share/detail/:id", ProductDetail)
  19. r.POSTJWT("/product/delete/:id", ProductDelete)
  20. }
  21. // 新增产品
  22. func ProductAdd(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  23. var form model.Product
  24. err := c.ShouldBindJSON(&form)
  25. if err != nil {
  26. fmt.Println(err)
  27. return nil, errors.New("参数错误!")
  28. }
  29. ctx := apictx.CreateRepoCtx()
  30. if form.SupplyId.Hex() == "" {
  31. return nil, errors.New("供应链id不能为空")
  32. }
  33. if form.Name == "" {
  34. return nil, errors.New("产品名不能为空")
  35. }
  36. form.CreateTime = time.Now()
  37. // 状态默认为下架
  38. if form.Status == 0 {
  39. form.Status = -1
  40. }
  41. result, err := repo.RepoAddDoc(ctx, repo.CollectionProduct, &form)
  42. return result, err
  43. }
  44. // 产品列表
  45. // ??? 上架才能展示 前端传 status:1
  46. func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  47. page, size, query := UtilQueryPageSize(c)
  48. // asc:升序1 desc:降序-1
  49. // 默认排序
  50. onsaleTimeSort := repo.Map{"onsaleTime": -1}
  51. if _, ok := query["sort"]; ok {
  52. if query["sort"].(string) == "asc" {
  53. onsaleTimeSort = repo.Map{"onsaleTime": 1}
  54. }
  55. // if sort.(string) == "desc"{
  56. // onsaleTimeSort = repo.Map{"onsaleTime": -1}
  57. // }
  58. }
  59. delete(query, "sort")
  60. // 查询数据
  61. if _, ok := query["supplyId"]; !ok {
  62. return nil, errors.New("供应链id不能为空")
  63. }
  64. supplyId, err := primitive.ObjectIDFromHex(query["supplyId"].(string))
  65. if err != nil {
  66. return nil, errors.New("供应链id错误")
  67. }
  68. query["supplyId"] = supplyId
  69. option := &repo.PageSearchOptions{
  70. CollectName: repo.CollectionProduct,
  71. Page: page,
  72. Size: size,
  73. Query: query,
  74. // Project: []string{},
  75. Sort: onsaleTimeSort,
  76. }
  77. pageResult, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), option)
  78. if err != nil {
  79. return nil, err
  80. }
  81. // 查询收藏状态
  82. var collects []*model.Collect
  83. _userId := apictx.User.ID
  84. userId, err := primitive.ObjectIDFromHex(_userId)
  85. if err != nil {
  86. return nil, errors.New("非法用户")
  87. }
  88. option1 := &repo.PageSearchOptions{
  89. CollectName: repo.CollectionCollect,
  90. Query: repo.Map{"userId": userId, "supplyId": supplyId},
  91. Project: []string{"_id", "productId"},
  92. }
  93. err1 := repo.RepoDocsSearch(apictx.CreateRepoCtx(), option1, &collects)
  94. if len(pageResult.List) > 0 {
  95. for _, v := range pageResult.List {
  96. v["isCollect"] = false
  97. v["collectId"] = ""
  98. if len(collects) > 0 && err1 == nil {
  99. for _, col := range collects {
  100. if v["_id"].(primitive.ObjectID) == col.ProductId { // productId唯一
  101. v["isCollect"] = true
  102. v["collectId"] = col.Id.Hex()
  103. break
  104. }
  105. }
  106. }
  107. }
  108. }
  109. return pageResult, err
  110. }
  111. // 更新产品/编辑、下架
  112. func ProductUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  113. var form model.Product
  114. err := c.ShouldBindJSON(&form)
  115. if err != nil {
  116. return nil, errors.New("参数错误")
  117. }
  118. if form.Id.Hex() == "" {
  119. return nil, errors.New("更新的产品id不能为空")
  120. }
  121. form.UpdateTime = time.Now()
  122. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionProduct, form.Id.Hex(), &form)
  123. }
  124. // 产品信息
  125. type ProudctDetailRes struct {
  126. model.Product
  127. IsCollect bool `json:"isCollect"`
  128. CollectId string `json:"collectId"`
  129. }
  130. func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  131. productId := c.Param("id")
  132. id, err := primitive.ObjectIDFromHex(productId)
  133. if err != nil {
  134. return nil, errors.New("非法id")
  135. }
  136. var product model.Product
  137. option := &repo.DocSearchOptions{
  138. CollectName: repo.CollectionProduct,
  139. Query: repo.Map{"_id": id},
  140. }
  141. found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), option, &product)
  142. if !found || err != nil {
  143. log.Info(err)
  144. return nil, errors.New("数据未找到")
  145. }
  146. // 是否收藏
  147. if apictx.User != nil {
  148. _userId := apictx.User.ID
  149. userId, err := primitive.ObjectIDFromHex(_userId)
  150. if err != nil {
  151. return nil, errors.New("非法用户")
  152. }
  153. var collect model.Collect
  154. found, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  155. CollectName: repo.CollectionCollect,
  156. Query: repo.Map{"userId": userId, "productId": id},
  157. }, &collect)
  158. return ProudctDetailRes{Product: product, IsCollect: found, CollectId: collect.Id.Hex()}, nil
  159. }
  160. return product, nil
  161. }
  162. // 删除产品
  163. // ???权限控制 admin 和 供应商本人
  164. func ProductDelete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  165. productId := c.Param("id")
  166. _, err := primitive.ObjectIDFromHex(productId)
  167. if err != nil {
  168. return nil, errors.New("非法id")
  169. }
  170. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionProduct, productId)
  171. }