service-database-assetconf.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. package api
  2. import (
  3. "assetcenter/db/model"
  4. "assetcenter/db/repo"
  5. "assetcenter/utils"
  6. "fmt"
  7. "time"
  8. "github.com/gin-gonic/gin"
  9. "go.mongodb.org/mongo-driver/bson"
  10. "go.mongodb.org/mongo-driver/bson/primitive"
  11. "infish.cn/comm"
  12. )
  13. func CreateDatabaseAssetConfRouter(router *GinRouter) {
  14. //创建资产定义
  15. router.POST("/assetconf/create/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  16. id := c.Param("id")
  17. if len(id) < 1 {
  18. return nil, NewError("数据库Id不能为空")
  19. }
  20. body := &comm.DbAsset{}
  21. c.ShouldBindJSON(body)
  22. body.Id = primitive.NewObjectID().Hex()
  23. if len(body.Label) < 1 || body.Type == 0 {
  24. return nil, NewError("数据不合法!")
  25. }
  26. body.CreateTime = time.Now()
  27. //数据库名字添加一个随机数
  28. var createCollRandomName = func(assetType int) string {
  29. typePrefixMap := map[int]string{}
  30. typePrefixMap[model.AssetTypeMesh] = "mesh"
  31. typePrefixMap[model.AssetTypeImage] = "image"
  32. typePrefixMap[model.AssetTypeMaterial] = "material"
  33. typePrefixMap[model.AssetTypeMaterialGroup] = "matgroup"
  34. typePrefixMap[model.AssetTypeEnv3d] = "hdr"
  35. typePrefixMap[model.AssetTypePackage] = "scene"
  36. prefix := typePrefixMap[assetType]
  37. if len(prefix) < 1 {
  38. return ""
  39. }
  40. return fmt.Sprintf("%s-%s-%s", prefix, time.Now().Format("20060102"), utils.RandName(6))
  41. }
  42. coll := createCollRandomName(body.Type)
  43. if len(coll) < 1 {
  44. return nil, fmt.Errorf("不支持的资产类型")
  45. }
  46. body.Collection = coll
  47. database := &comm.Database{}
  48. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"assets.collection": body.Collection, "_id": id}, Project: []string{"_id"}}, database)
  49. if ok {
  50. return nil, NewError("资产库编号不能重复")
  51. }
  52. return repo.RepoDocArrayAppend(
  53. apictx.CreateRepoCtx(),
  54. repo.CollectionDatabase,
  55. id,
  56. "assets",
  57. body,
  58. )
  59. })
  60. //创建资产定义
  61. router.GET("/assetconf/list/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  62. id := c.Param("id")
  63. if len(id) < 1 {
  64. return nil, NewError("数据库Id不能为空")
  65. }
  66. database := &comm.Database{}
  67. _, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"_id": id}, Project: []string{"assets"}}, database)
  68. return database.Assets, err
  69. })
  70. //删除资产定义
  71. router.POST("/assetconf/delete/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  72. id := c.Param("id")
  73. if len(id) < 1 {
  74. return nil, NewError("数据库Id不能为空")
  75. }
  76. body := &comm.DbAsset{}
  77. c.ShouldBindJSON(body)
  78. if len(body.Id) < 1 {
  79. return nil, NewError("资产Id不能为空!")
  80. }
  81. return repo.RepoDocArrayOneRemove(
  82. apictx.CreateRepoCtx(),
  83. &repo.ArrayOneRemoveOption{
  84. CollectName: repo.CollectionDatabase,
  85. Id: id,
  86. ArrayQuery: repo.Map{"assets": bson.M{"id": body.Id}},
  87. },
  88. )
  89. })
  90. //更新资产标签
  91. router.POST("/assetconf/update/label/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  92. id := c.Param("id")
  93. if len(id) < 1 {
  94. return nil, NewError("数据库Id不能为空")
  95. }
  96. body := &comm.DbAsset{}
  97. c.ShouldBindJSON(body)
  98. if len(body.Id) < 1 || len(body.Label) < 1 {
  99. return nil, NewError("参数非法")
  100. }
  101. optSet := repo.Map{}
  102. optSet["assets.$.label"] = body.Label
  103. option := &repo.ArrayOneUpdateOption{
  104. CollectName: repo.CollectionDatabase,
  105. Id: id,
  106. Query: repo.Map{"assets.id": body.Id},
  107. Set: optSet,
  108. }
  109. return repo.RepoDocArrayOneUpdate(
  110. apictx.CreateRepoCtx(),
  111. option,
  112. )
  113. })
  114. router.POST("/assetconf/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  115. id := c.Param("id")
  116. if len(id) < 1 {
  117. return nil, NewError("数据库Id不能为空")
  118. }
  119. body := &comm.DbAsset{}
  120. c.ShouldBindJSON(body)
  121. if len(body.Id) < 1 || len(body.Label) < 1 {
  122. return nil, NewError("参数非法")
  123. }
  124. optSet := repo.Map{}
  125. if len(body.Label) > 0 {
  126. optSet["assets.$.label"] = body.Label
  127. }
  128. if body.CategoryIds != nil {
  129. optSet["assets.$.categoryIds"] = body.CategoryIds
  130. }
  131. option := &repo.ArrayOneUpdateOption{
  132. CollectName: repo.CollectionDatabase,
  133. Id: id,
  134. Query: repo.Map{"assets.id": body.Id},
  135. Set: optSet,
  136. }
  137. return repo.RepoDocArrayOneUpdate(
  138. apictx.CreateRepoCtx(),
  139. option,
  140. )
  141. })
  142. //更新资产分类
  143. router.POST("/assetconf/update/categoryIds/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  144. id := c.Param("id")
  145. if len(id) < 1 {
  146. return nil, NewError("数据库Id不能为空")
  147. }
  148. body := &comm.DbAsset{}
  149. c.ShouldBindJSON(body)
  150. if len(body.Id) < 1 {
  151. return nil, NewError("参数非法")
  152. }
  153. optSet := repo.Map{}
  154. optSet["assets.$.categoryIds"] = body.CategoryIds
  155. option := &repo.ArrayOneUpdateOption{
  156. CollectName: repo.CollectionDatabase,
  157. Id: id,
  158. Query: repo.Map{"assets.id": body.Id},
  159. Set: optSet,
  160. }
  161. return repo.RepoDocArrayOneUpdate(
  162. apictx.CreateRepoCtx(),
  163. option,
  164. )
  165. })
  166. }