service-database-design-product.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package api
  2. import (
  3. "errors"
  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 CreateDatabaseDesignProductRouter(router *GinRouter) {
  13. //获取项目单品详情
  14. router.GETJWT("/design/product/detail", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  15. id := c.Query("id")
  16. ok, ret := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDesignProducts, Query: repo.Map{"_id": id}})
  17. if !ok {
  18. return nil, NewError("获取单品失败!")
  19. }
  20. return ret, nil
  21. })
  22. router.POSTJWT("/design/product/add/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  23. projId := c.Param("id")
  24. body := &model.ProductHeader{}
  25. c.ShouldBindJSON(body)
  26. if len(projId) < 1 || len(body.FromDbConfId) < 1 || len(body.FromAssetConfId) < 1 || len(body.FromId) < 1 {
  27. return nil, NewError("参数不合法!")
  28. }
  29. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), body.FromDbConfId, body.FromAssetConfId)
  30. if len(db.Name) < 1 || assetConf == nil {
  31. return nil, NewError("没有对应的资产定义!")
  32. }
  33. body.CreateTime = time.Now()
  34. if assetConf.Type == model.AssetTypeMesh {
  35. asset := &model.AssetStaticMesh{}
  36. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{Db: db.Name, CollectName: assetConf.Collection, Query: repo.Map{"_id": body.FromId}}, asset)
  37. if err != nil {
  38. return nil, err
  39. }
  40. if !ok {
  41. return nil, errors.New("对应的模型不存在!")
  42. }
  43. product := &model.DesignProduct{
  44. FromDbConfId: body.FromDbConfId,
  45. FromAssetConfId: body.FromAssetConfId,
  46. FromId: body.FromId,
  47. Thumbnail: asset.Thumbnail,
  48. Name: asset.Name,
  49. StaticMesh: asset.Source,
  50. }
  51. product.ProjectId, _ = primitive.ObjectIDFromHex(projId)
  52. id, err := repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionDesignProducts, product)
  53. if err != nil {
  54. return nil, err
  55. }
  56. body.Id = id
  57. body.Name = asset.Name
  58. body.Thumbnail = asset.Thumbnail
  59. } else {
  60. return nil, NewError("该资产类型不支持创建单品!")
  61. }
  62. ret, err := repo.RepoDocArrayAppend(apictx.CreateRepoCtx(), repo.CollectionDesigns, projId, "products", body)
  63. if err != nil {
  64. return nil, err
  65. }
  66. if ret.ModifiedCount < 1 {
  67. return nil, errors.New("添加失败!")
  68. }
  69. return body, nil
  70. })
  71. router.POSTJWT("/design/product/update", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  72. // if len(c.Param("id")) < 1 {
  73. // return nil, NewError("项目Id不能为空!")
  74. // }
  75. body := &model.DesignProduct{}
  76. c.ShouldBindJSON(body)
  77. if body.Id == primitive.NilObjectID {
  78. return nil, NewError("单品Id不能为空!")
  79. }
  80. id := body.Id.Hex()
  81. body.Id = primitive.NilObjectID
  82. body.ProjectId = primitive.NilObjectID
  83. body.UpdateTime = time.Now()
  84. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionDesignProducts, id, body)
  85. })
  86. router.POSTJWT("/design/product/delete/:did/:pid", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  87. desiginId := c.Param("did")
  88. prouductId := c.Param("pid")
  89. if len(desiginId) < 1 || len(prouductId) < 1 {
  90. return nil, NewError("参数不合法!")
  91. }
  92. _, err := repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionDesignProducts, prouductId)
  93. if err != nil {
  94. return nil, err
  95. }
  96. //删除数组内容
  97. return repo.RepoDocArrayOneRemove(apictx.CreateRepoCtx(), &repo.ArrayOneRemoveOption{CollectName: repo.CollectionDesigns, Id: desiginId, ArrayQuery: repo.Map{"products": bson.M{"id": prouductId}}})
  98. })
  99. }