service-database-design.go 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. package api
  2. import (
  3. "fmt"
  4. "mats/db/model"
  5. "mats/db/repo"
  6. "time"
  7. "github.com/gin-gonic/gin"
  8. "go.mongodb.org/mongo-driver/bson"
  9. "go.mongodb.org/mongo-driver/bson/primitive"
  10. )
  11. // 注册设计相关接口
  12. func CreateDatabaseDesignRouter(router *GinRouter) {
  13. router.GETJWT("/design/list", DesignList)
  14. router.POSTJWT("/design/create", DesignCreate)
  15. router.POSTJWT("/design/update", DesignSave)
  16. router.POSTJWT("/design/delete/:id", DesignDelete)
  17. router.GETJWT("/design/detail/:id", DesignDetail)
  18. router.POSTJWT("/design/save", DesignSave)
  19. }
  20. func DesignList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  21. page, size, query := UtilQueryPageSize(c)
  22. if query == nil {
  23. query = map[string]interface{}{}
  24. }
  25. query["userId"], _ = primitive.ObjectIDFromHex(apictx.User.ID)
  26. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  27. CollectName: repo.CollectionDesigns,
  28. Page: page,
  29. Size: size,
  30. Query: query,
  31. Project: []string{"name", "thumbnail", "createTime"},
  32. Sort: bson.M{"createTime": -1},
  33. })
  34. }
  35. // 创建设计
  36. func DesignCreate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  37. body := &struct {
  38. Name string
  39. From string
  40. Id string
  41. }{}
  42. err := c.ShouldBindJSON(body)
  43. if err != nil {
  44. return nil, NewError("参数解析错误")
  45. }
  46. if len(body.Name) < 1 {
  47. body.Name = "未定义"
  48. }
  49. //创建空设计
  50. d3d := &model.Design3d{
  51. Name: body.Name,
  52. CreateTime: time.Now(),
  53. Products: []*model.ProductHeader{},
  54. Scenes: []*model.DesignScene{},
  55. }
  56. d3d.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  57. return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionDesigns, d3d)
  58. // if len(body.From) < 1 || len(body.Id) < 1 {
  59. // return nil, NewError("单品Id或类型不能为空!")
  60. // }
  61. // if body.From != "decorate" && body.From != "boxtpl" {
  62. // return nil, NewError("不支持的模型类型")
  63. // }
  64. // collection := UtilAssetCollectionName(body.From)
  65. // updateProjectIdCollection := ""
  66. // updateProjectId := ""
  67. // if body.From == "decorate" {
  68. // assetHeader := &model.AssetDecorateMesh{}
  69. // ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: collection, Query: repo.Map{"_id": body.Id}}, assetHeader)
  70. // if err != nil {
  71. // return nil, err
  72. // }
  73. // if !ok {
  74. // return nil, NewError("对应的装饰不存在!")
  75. // }
  76. // projectDecorate := &model.ProjectDecorateMesh{}
  77. // projectDecorate.CopyFromAsset(assetHeader)
  78. // //projectDecorate.ProjectId, _ = primitive.ObjectIDFromHex(prjId)
  79. // updateProjectIdCollection = repo.CollectionProjectDecorate
  80. // decorateId, err := repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionProjectDecorate, projectDecorate)
  81. // if err != nil {
  82. // return nil, err
  83. // }
  84. // updateProjectId = decorateId
  85. // header := &model.ProductHeader{
  86. // Name: projectDecorate.Name,
  87. // From: body.From,
  88. // Id: decorateId,
  89. // Thumbnail: *projectDecorate.Thumbnail,
  90. // CreateTime: time.Now(),
  91. // }
  92. // project.Products = []*model.ProductHeader{header}
  93. // } else if body.From == "boxtpl" {
  94. // assetHeader := &model.Boxtpl{}
  95. // ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: collection, Query: repo.Map{"_id": body.Id}}, assetHeader)
  96. // if err != nil {
  97. // return nil, err
  98. // }
  99. // if !ok {
  100. // return nil, NewError("对应的装饰不存在!")
  101. // }
  102. // projectBoxtpl := &model.ProjectBoxtpl{}
  103. // projectBoxtpl.CopyFromAsset(assetHeader)
  104. // //projectDecorate.ProjectId, _ = primitive.ObjectIDFromHex(prjId)
  105. // updateProjectIdCollection = repo.CollectionProjectBoxTpl
  106. // boxId, err := repo.RepoAddDoc(apictx.CreateRepoCtx(), updateProjectIdCollection, projectBoxtpl)
  107. // if err != nil {
  108. // return nil, err
  109. // }
  110. // updateProjectId = boxId
  111. // header := &model.ProductHeader{
  112. // Name: projectBoxtpl.Name,
  113. // From: body.From,
  114. // Id: boxId,
  115. // Thumbnail: *projectBoxtpl.Thumbnail,
  116. // CreateTime: time.Now(),
  117. // }
  118. // project.Products = []*model.ProductHeader{header}
  119. // }
  120. // prjId, err := repo.AddProject(apictx.CreateRepoCtx(), project)
  121. // if err != nil {
  122. // return nil, err
  123. // }
  124. // uid, _ := primitive.ObjectIDFromHex(prjId)
  125. // _, err = repo.RepoUpdateSetDocProps(apictx.CreateRepoCtx(), updateProjectIdCollection, updateProjectId, bson.M{"$set": bson.M{"projectId": uid}})
  126. // if err != nil {
  127. // repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionProject, prjId)
  128. // return nil, err
  129. // }
  130. // return prjId, nil
  131. }
  132. func DesignSave(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  133. body := &model.Design3d{}
  134. err := c.ShouldBindJSON(body)
  135. if err != nil {
  136. fmt.Println(err)
  137. return nil, NewError("参数解析错误" + err.Error())
  138. }
  139. if len(body.Id) < 1 {
  140. return nil, NewError("ID不能为空")
  141. }
  142. id := body.Id.Hex()
  143. body.Id = primitive.NilObjectID
  144. body.UserId = primitive.NilObjectID
  145. body.CreateTime = time.Time{}
  146. body.UpdateTime = time.Now()
  147. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionDesigns, id, body)
  148. }
  149. func DesignDelete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  150. id := c.Param("id")
  151. if len(id) < 1 {
  152. return nil, NewError("参数不能为空")
  153. }
  154. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionDesigns, id)
  155. }
  156. func DesignDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  157. id := c.Param("id")
  158. if len(id) < 1 {
  159. return nil, NewError("参数id不能为空")
  160. }
  161. prj := &model.Design3d{}
  162. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDesigns, Query: repo.Map{"_id": id}}, prj)
  163. if err != nil {
  164. return nil, err
  165. }
  166. if !ok {
  167. return nil, NewError("没有数据!")
  168. }
  169. return prj, nil
  170. }