service-database.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. package api
  2. import (
  3. "assetcenter/db/repo"
  4. "assetcenter/utils"
  5. "fmt"
  6. "math/rand"
  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 init() {
  14. // 保证每次生成的随机数不一样
  15. rand.Seed(time.Now().UnixNano())
  16. }
  17. func CreateDatabaseRouter(router *GinRouter) {
  18. router.POSTJWT("/db/import/defaultdb", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  19. search := &comm.Database{}
  20. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"name": "qdb-default"}, Project: []string{"_id"}}, search)
  21. if ok {
  22. return nil, NewError("默认数据库已存在!")
  23. }
  24. db := comm.CreateDefaultDatabase()
  25. return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionDatabase, db)
  26. })
  27. router.POSTJWT("/db/category/save", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  28. body := &struct {
  29. Id string `json:"_id"`
  30. Categories []*comm.CategoryNode
  31. }{}
  32. err := c.ShouldBindJSON(body)
  33. if err != nil {
  34. return nil, err
  35. }
  36. search := &comm.Database{}
  37. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"_id": body.Id}, Project: []string{"_id", "categories"}}, search)
  38. if ok { //已存在
  39. search.Categories.Categories = body.Categories
  40. search.Categories.UpdateTime = time.Now()
  41. } else {
  42. search.Categories = &comm.DbCategory{
  43. Id: primitive.NewObjectID(),
  44. Scope: "default",
  45. CreateTime: time.Now(),
  46. UpdateTime: time.Now(),
  47. Categories: body.Categories,
  48. }
  49. }
  50. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), "database", body.Id, bson.M{"categories": search.Categories})
  51. })
  52. CreateCRUD(router, "/db", &CRUDOption{
  53. Collection: repo.CollectionDatabase,
  54. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  55. cat := &comm.Database{}
  56. c.ShouldBindJSON(cat)
  57. //前端指定Label
  58. if len(cat.Label) < 1 {
  59. return nil, NewError("参数不合法!")
  60. }
  61. //判断当前用户的数据库是否已经到上线
  62. limit := &comm.UserDatabase{}
  63. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionUserDatabase, Query: repo.Map{"_id": apictx.User.Parent}}, limit)
  64. if err != nil {
  65. return nil, err
  66. }
  67. if !ok { //没有对于的数据
  68. limit.Id, _ = primitive.ObjectIDFromHex(apictx.User.Parent)
  69. limit.UserName = apictx.User.Phone
  70. limit.Limits = 4 //默认只能创建3个数据库
  71. _, err = repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionUserDatabase, limit)
  72. if err != nil {
  73. return nil, err
  74. }
  75. }
  76. count, err := repo.RepoCountDoc(apictx.CreateRepoCtx(), repo.CollectionDatabase, repo.Map{"userId": apictx.User.Parent})
  77. if err != nil {
  78. return nil, err
  79. }
  80. if count >= int64(limit.Limits) {
  81. return nil, fmt.Errorf("已经超出数据库个数上线,请联系管理员添加")
  82. }
  83. //数据库名字添加一个随机数
  84. var createDbRandomName = func() string {
  85. return fmt.Sprintf("db-%s-%s", time.Now().Format("20060102"), utils.RandName(6))
  86. }
  87. cat.CreateTime = time.Now()
  88. cat.Assets = comm.CreateDefaultDbAssets()
  89. cat.Categories = &comm.DbCategory{}
  90. cat.UserId = apictx.User.Parent
  91. cat.Name = createDbRandomName()
  92. search := &comm.Database{}
  93. ok, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionDatabase, Query: repo.Map{"name": cat.Name}, Project: []string{"_id"}}, search)
  94. if ok {
  95. return nil, NewError("数据库编号已存在!")
  96. }
  97. cat.Assets = comm.CreateDefaultDbAssets()
  98. cat.CreateTime = time.Now()
  99. return cat, nil
  100. },
  101. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  102. return &comm.Database{}
  103. },
  104. SearchFilter: func(c *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  105. return map[string]interface{}{"userId": apictx.User.ID}
  106. // return map[string]interface{}{}
  107. },
  108. JWT: true,
  109. SearchProject: []string{"name", "label", "createTime"},
  110. DetailProject: []string{"name", "label", "createTime", "categories", "assetsCategory", "assets"},
  111. Remove: func(c *gin.Context, apictx *ApiSession, id string) (interface{}, error) {
  112. // team := &model.ResCategory{}
  113. // ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionCategory, Query: repo.Map{"_id": id}, Project: []string{"orderId", "type"}}, team)
  114. // if !ok {
  115. // return nil, NewError("删除失败!")
  116. // }
  117. // minOrderId := team.OrderId //后面有几个零
  118. // if minOrderId > 0 {
  119. // var maxStep int64 = 1
  120. // currValue := minOrderId
  121. // for {
  122. // if currValue%10 == 0 {
  123. // currValue = currValue / 10
  124. // maxStep = maxStep * 10
  125. // } else {
  126. // break
  127. // }
  128. // }
  129. // maxOrderId := minOrderId + maxStep - 1
  130. // return repo.RepoDeleteDocs(apictx.CreateRepoCtx(), repo.CollectionCategory, &bson.M{"orderId": bson.M{"$gte": minOrderId, "$lt": maxOrderId}, "type": team.Type})
  131. // }
  132. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionDatabase, id)
  133. },
  134. })
  135. }