service-database-assetconf.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package api
  2. import (
  3. "mats/db/model"
  4. "mats/db/repo"
  5. "github.com/gin-gonic/gin"
  6. "go.mongodb.org/mongo-driver/bson"
  7. "go.mongodb.org/mongo-driver/bson/primitive"
  8. )
  9. func CreateDatabaseAssetConfRouter(router *GinRouter) {
  10. //创建资产定义
  11. router.POST("/assetconf/create/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  12. id := c.Param("id")
  13. if len(id) < 1 {
  14. return nil, NewError("数据库Id不能为空")
  15. }
  16. body := &model.DbAsset{}
  17. c.ShouldBindJSON(body)
  18. body.Id = primitive.NewObjectID().Hex()
  19. if len(body.Collection) < 1 || len(body.Label) < 1 || body.Type == 0 {
  20. return nil, NewError("数据不合法!")
  21. }
  22. database := &model.Database{}
  23. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"assets.collection": body.Collection, "_id": id}, Project: []string{"_id"}}, database)
  24. if ok {
  25. return nil, NewError("资产库编号不能重复")
  26. }
  27. return repo.RepoDocArrayAppend(
  28. apictx.CreateRepoCtx(),
  29. repo.CollectionDatabase,
  30. id,
  31. "assets",
  32. body,
  33. )
  34. })
  35. //创建资产定义
  36. router.GET("/assetconf/list/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  37. id := c.Param("id")
  38. if len(id) < 1 {
  39. return nil, NewError("数据库Id不能为空")
  40. }
  41. database := &model.Database{}
  42. _, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"_id": id}, Project: []string{"assets"}}, database)
  43. return database.Assets, err
  44. })
  45. //删除资产定义
  46. router.POST("/assetconf/delete/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  47. id := c.Param("id")
  48. if len(id) < 1 {
  49. return nil, NewError("数据库Id不能为空")
  50. }
  51. body := &model.DbAsset{}
  52. c.ShouldBindJSON(body)
  53. if len(body.Id) < 1 {
  54. return nil, NewError("资产Id不能为空!")
  55. }
  56. return repo.RepoDocArrayOneRemove(
  57. apictx.CreateRepoCtx(),
  58. &repo.ArrayOneRemoveOption{
  59. CollectName: repo.CollectionDatabase,
  60. Id: id,
  61. ArrayQuery: repo.Map{"assets": bson.M{"id": body.Id}},
  62. },
  63. )
  64. })
  65. //更新资产标签
  66. router.POST("/assetconf/update/label/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  67. id := c.Param("id")
  68. if len(id) < 1 {
  69. return nil, NewError("数据库Id不能为空")
  70. }
  71. body := &model.DbAsset{}
  72. c.ShouldBindJSON(body)
  73. if len(body.Id) < 1 || len(body.Label) < 1 {
  74. return nil, NewError("参数非法")
  75. }
  76. optSet := repo.Map{}
  77. optSet["assets.$.label"] = body.Label
  78. option := &repo.ArrayOneUpdateOption{
  79. CollectName: repo.CollectionDatabase,
  80. Id: id,
  81. Query: repo.Map{"assets.id": body.Id},
  82. Set: optSet,
  83. }
  84. return repo.RepoDocArrayOneUpdate(
  85. apictx.CreateRepoCtx(),
  86. option,
  87. )
  88. })
  89. //更新资产分类
  90. router.POST("/assetconf/update/categoryIds/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  91. id := c.Param("id")
  92. if len(id) < 1 {
  93. return nil, NewError("数据库Id不能为空")
  94. }
  95. body := &model.DbAsset{}
  96. c.ShouldBindJSON(body)
  97. if len(body.Id) < 1 {
  98. return nil, NewError("参数非法")
  99. }
  100. optSet := repo.Map{}
  101. optSet["assets.$.categoryIds"] = body.CategoryIds
  102. option := &repo.ArrayOneUpdateOption{
  103. CollectName: repo.CollectionDatabase,
  104. Id: id,
  105. Query: repo.Map{"assets.id": body.Id},
  106. Set: optSet,
  107. }
  108. return repo.RepoDocArrayOneUpdate(
  109. apictx.CreateRepoCtx(),
  110. option,
  111. )
  112. })
  113. }