product.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. package api
  2. import (
  3. "3dshow-customer/db/model"
  4. "3dshow-customer/db/repo"
  5. "3dshow-customer/log"
  6. "errors"
  7. "fmt"
  8. "strings"
  9. "time"
  10. "github.com/gin-gonic/gin"
  11. "go.mongodb.org/mongo-driver/bson"
  12. "go.mongodb.org/mongo-driver/bson/primitive"
  13. )
  14. // 产品管理
  15. func Product(r *GinRouter) {
  16. r.POSTJWT("/product/create", ProductAdd)
  17. r.GETJWT("/product/list", ProductList)
  18. r.GETJWT("/product/detail/:id", ProductDetail)
  19. r.GET("/product/share/detail/:id", ProductDetail)
  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. func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  46. page, size, query := UtilQueryPageSize(c)
  47. // asc:升序1 desc:降序-1
  48. // 默认排序
  49. onsaleTimeSort := repo.Map{"onsaleTime": -1}
  50. if _, ok := query["sort"]; ok {
  51. if query["sort"].(string) == "asc" {
  52. onsaleTimeSort = repo.Map{"onsaleTime": 1}
  53. }
  54. delete(query, "sort")
  55. }
  56. // selectTime
  57. selectTime := time.Now().Format("2006-01")
  58. if _, ok := query["selectTime"]; ok {
  59. timeSlice := strings.Split(query["selectTime"].(string), ".")
  60. selectTime = strings.Join(timeSlice, "-")
  61. delete(query, "selectTime")
  62. }
  63. timeStr := fmt.Sprintf("%s%s", selectTime, "-01 00:00:00")
  64. formatTime, _ := time.ParseInLocation("2006-01-02 15:04:05", timeStr, time.Local)
  65. // 下个月第一天之前的数据
  66. addOneMothTime := formatTime.AddDate(0, 1, 0)
  67. query["onsaleTime"] = bson.M{"$lte": addOneMothTime}
  68. // 查询数据
  69. if _, ok := query["supplyId"]; !ok {
  70. return nil, errors.New("供应链id不能为空")
  71. }
  72. supplyId, err := primitive.ObjectIDFromHex(query["supplyId"].(string))
  73. if err != nil {
  74. return nil, errors.New("供应链id错误")
  75. }
  76. query["supplyId"] = supplyId
  77. // 只展示上架商品
  78. query["status"] = 1
  79. option := &repo.PageSearchOptions{
  80. CollectName: repo.CollectionProduct,
  81. Page: page,
  82. Size: size,
  83. Query: query,
  84. // Project: []string{},
  85. Sort: onsaleTimeSort,
  86. }
  87. pageResult, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), option)
  88. if err != nil {
  89. return nil, err
  90. }
  91. // 查询收藏状态
  92. var collects []*model.Collect
  93. _userId := apictx.User.ID
  94. userId, err := primitive.ObjectIDFromHex(_userId)
  95. if err != nil {
  96. return nil, errors.New("非法用户")
  97. }
  98. option1 := &repo.PageSearchOptions{
  99. CollectName: repo.CollectionCollect,
  100. Query: repo.Map{"userId": userId, "supplyId": supplyId},
  101. Project: []string{"_id", "productId"},
  102. }
  103. err1 := repo.RepoDocsSearch(apictx.CreateRepoCtx(), option1, &collects)
  104. if len(pageResult.List) > 0 {
  105. for _, v := range pageResult.List {
  106. v["isCollect"] = false
  107. v["collectId"] = ""
  108. if len(collects) > 0 && err1 == nil {
  109. for _, col := range collects {
  110. if v["_id"].(primitive.ObjectID) == col.ProductId { // productId唯一
  111. v["isCollect"] = true
  112. v["collectId"] = col.Id.Hex()
  113. break
  114. }
  115. }
  116. }
  117. }
  118. }
  119. return pageResult, err
  120. }
  121. // 产品信息
  122. type ProudctDetailRes struct {
  123. model.Product
  124. IsCollect bool `json:"isCollect"`
  125. CollectId string `json:"collectId"`
  126. Asset model.Asset360Fake3d `json:"asset"`
  127. }
  128. func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  129. _id := c.Param("id")
  130. if len(_id) < 1 {
  131. return nil, errors.New("id不能为空")
  132. }
  133. productId, err := primitive.ObjectIDFromHex(_id)
  134. if err != nil {
  135. return nil, errors.New("非法id")
  136. }
  137. var product model.Product
  138. found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  139. CollectName: repo.CollectionProduct,
  140. Query: repo.Map{"_id": productId},
  141. }, &product)
  142. if !found || err != nil {
  143. log.Info(err)
  144. return nil, errors.New("数据未找到")
  145. }
  146. // 素材
  147. asset := model.Asset360Fake3d{}
  148. repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  149. CollectName: repo.CollectionAssets,
  150. Query: repo.Map{"_id": product.AssetId},
  151. }, &asset)
  152. // 用户登录状态 是否收藏
  153. if apictx.User != nil {
  154. _userId := apictx.User.ID
  155. userId, _ := primitive.ObjectIDFromHex(_userId)
  156. var collect model.Collect
  157. found, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  158. CollectName: repo.CollectionCollect,
  159. Query: repo.Map{"userId": userId, "productId": productId},
  160. }, &collect)
  161. return ProudctDetailRes{Product: product, IsCollect: found, CollectId: collect.Id.Hex(), Asset: asset}, nil
  162. }
  163. return ProudctDetailRes{Product: product, Asset: asset}, nil
  164. }