service-database.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. package api
  2. import (
  3. "mats/db/model"
  4. "mats/db/repo"
  5. "time"
  6. "github.com/gin-gonic/gin"
  7. "go.mongodb.org/mongo-driver/bson"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. "infish.cn/comm"
  10. )
  11. func CreateDatabaseRouter(router *GinRouter) {
  12. router.POSTJWT("/db/import/defaultdb", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  13. search := &model.Database{}
  14. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"name": "qdb-default"}, Project: []string{"_id"}}, search)
  15. if ok {
  16. return nil, NewError("默认数据库已存在!")
  17. }
  18. db := model.CreateDefaultDatabase()
  19. return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionDatabase, db)
  20. })
  21. router.POSTJWT("/db/category/save", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  22. body := &struct {
  23. Id string `json:"_id"`
  24. Categories []*comm.CategoryNode
  25. }{}
  26. err := c.ShouldBindJSON(body)
  27. if err != nil {
  28. return nil, err
  29. }
  30. search := &model.Database{}
  31. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"_id": body.Id}, Project: []string{"_id", "categories"}}, search)
  32. if ok { //已存在
  33. search.Categories.Categories = body.Categories
  34. search.Categories.UpdateTime = time.Now()
  35. } else {
  36. search.Categories = &comm.DbCategory{
  37. Id: primitive.NewObjectID(),
  38. Scope: "default",
  39. CreateTime: time.Now(),
  40. UpdateTime: time.Now(),
  41. Categories: body.Categories,
  42. }
  43. }
  44. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), "database", body.Id, bson.M{"categories": search.Categories})
  45. })
  46. CreateCRUD(router, "/db", &CRUDOption{
  47. Collection: repo.CollectionDatabase,
  48. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  49. cat := &model.Database{}
  50. c.ShouldBindJSON(cat)
  51. if len(cat.Name) < 1 || len(cat.Label) < 1 {
  52. return nil, NewError("参数不合法!")
  53. }
  54. cat.CreateTime = time.Now()
  55. cat.Assets = model.CreateDefaultDbAssets()
  56. cat.Categories = &comm.DbCategory{}
  57. cat.UserId = apictx.User.ID
  58. search := &model.Database{}
  59. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"name": cat.Name}, Project: []string{"_id"}}, search)
  60. if ok {
  61. return nil, NewError("数据库编号已存在!")
  62. }
  63. ok, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"label": cat.Label}, Project: []string{"_id"}}, search)
  64. if ok {
  65. return nil, NewError("数据库名字已存在!")
  66. }
  67. cat.Assets = model.CreateDefaultDbAssets()
  68. cat.CreateTime = time.Now()
  69. return cat, nil
  70. },
  71. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  72. return &model.Database{}
  73. },
  74. SearchFilter: func(c *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  75. return map[string]interface{}{"userId": apictx.User.ID}
  76. // return map[string]interface{}{}
  77. },
  78. JWT: true,
  79. SearchProject: []string{"name", "label", "createTime"},
  80. DetailProject: []string{"name", "label", "createTime", "categories", "assetsCategory", "assets"},
  81. Remove: func(c *gin.Context, apictx *ApiSession, id string) (interface{}, error) {
  82. // team := &model.ResCategory{}
  83. // ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionCategory, Query: repo.Map{"_id": id}, Project: []string{"orderId", "type"}}, team)
  84. // if !ok {
  85. // return nil, NewError("删除失败!")
  86. // }
  87. // minOrderId := team.OrderId //后面有几个零
  88. // if minOrderId > 0 {
  89. // var maxStep int64 = 1
  90. // currValue := minOrderId
  91. // for {
  92. // if currValue%10 == 0 {
  93. // currValue = currValue / 10
  94. // maxStep = maxStep * 10
  95. // } else {
  96. // break
  97. // }
  98. // }
  99. // maxOrderId := minOrderId + maxStep - 1
  100. // return repo.RepoDeleteDocs(apictx.CreateRepoCtx(), repo.CollectionCategory, &bson.M{"orderId": bson.M{"$gte": minOrderId, "$lt": maxOrderId}, "type": team.Type})
  101. // }
  102. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionDatabase, id)
  103. },
  104. })
  105. }