tree-db.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. package bus
  2. import (
  3. "assetcenter/db"
  4. "assetcenter/db/repo"
  5. "context"
  6. "fmt"
  7. "github.com/nats-io/nats.go"
  8. "go.mongodb.org/mongo-driver/bson"
  9. "go.mongodb.org/mongo-driver/bson/primitive"
  10. "infish.cn/comm"
  11. )
  12. type TreeDbCategoryReq struct {
  13. DbName string
  14. UserId string
  15. AssetScope string
  16. }
  17. type TreeDbCategoryResp struct {
  18. Db *comm.Database
  19. UserAssetCategory *comm.DbAssetUserCategory
  20. UserCategory *comm.DbCategory
  21. }
  22. type TreeDbReq struct {
  23. DbName string
  24. }
  25. func RegTreeDbCategoriesQuery() *comm.NatsMsgReplyer {
  26. return &comm.NatsMsgReplyer{
  27. Subject: "tree.db.category",
  28. Entity: func() interface{} { return &TreeDbCategoryReq{} },
  29. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  30. req, ok := entity.(*TreeDbCategoryReq)
  31. if !ok {
  32. return nil, fmt.Errorf("参数错误")
  33. }
  34. if len(req.DbName) < 1 || len(req.AssetScope) < 1 {
  35. return nil, fmt.Errorf("请求参数错误 不能为空")
  36. }
  37. var CreateRepoCtx = func() *repo.RepoSession {
  38. return &repo.RepoSession{
  39. Ctx: context.Background(),
  40. Client: db.MongoClient,
  41. }
  42. }
  43. enity := &comm.Database{}
  44. ok, _ = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  45. CollectName: repo.CollectionDatabase,
  46. Query: repo.Map{"name": req.DbName},
  47. Project: []string{"categories", "assets"},
  48. }, enity)
  49. if !ok {
  50. return nil, fmt.Errorf("没有查询到数据库:%s", req.DbName)
  51. }
  52. if len(req.UserId) < 1 {
  53. return &TreeDbCategoryResp{
  54. Db: enity,
  55. }, nil
  56. }
  57. userCaties := &comm.DbCategory{}
  58. userId, _ := primitive.ObjectIDFromHex(req.UserId)
  59. _, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  60. CollectName: repo.CollectionCategories,
  61. Query: repo.Map{"userId": userId, "scope": req.AssetScope},
  62. }, userCaties)
  63. if err != nil {
  64. return nil, err
  65. }
  66. userAssetCaties := &comm.DbAssetUserCategory{}
  67. _, err = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  68. CollectName: repo.CollectionDbAssetCategory,
  69. Query: repo.Map{"userId": userId, "scope": req.AssetScope},
  70. }, userAssetCaties)
  71. if err != nil {
  72. return nil, err
  73. }
  74. return &TreeDbCategoryResp{
  75. Db: enity,
  76. UserAssetCategory: userAssetCaties,
  77. UserCategory: userCaties,
  78. }, nil
  79. },
  80. }
  81. }
  82. func RegTreeDbAssetsQuery() *comm.NatsMsgReplyer {
  83. return &comm.NatsMsgReplyer{
  84. Subject: "tree.db.assets",
  85. Entity: func() interface{} { return &TreeDbReq{} },
  86. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  87. req, ok := entity.(*TreeDbReq)
  88. if !ok {
  89. return nil, fmt.Errorf("参数错误")
  90. }
  91. if len(req.DbName) < 1 {
  92. return nil, fmt.Errorf("请求参数错误 不能为空")
  93. }
  94. var CreateRepoCtx = func() *repo.RepoSession {
  95. return &repo.RepoSession{
  96. Ctx: context.Background(),
  97. Client: db.MongoClient,
  98. }
  99. }
  100. enity := &comm.Database{}
  101. ok, _ = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  102. CollectName: repo.CollectionDatabase,
  103. Query: repo.Map{"name": req.DbName},
  104. Project: []string{"assets"},
  105. }, enity)
  106. if !ok {
  107. return nil, fmt.Errorf("没有查询到数据库:%s", req.DbName)
  108. }
  109. return enity, nil
  110. },
  111. }
  112. }
  113. type TreeDbUpdateReq struct {
  114. DbName string
  115. Db *comm.Database
  116. }
  117. func RegTreeDbAssetsUpdate() *comm.NatsMsgReplyer {
  118. return &comm.NatsMsgReplyer{
  119. Subject: "tree.db.assets.update",
  120. Entity: func() interface{} { return &TreeDbUpdateReq{} },
  121. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  122. req, ok := entity.(*TreeDbUpdateReq)
  123. if !ok {
  124. return nil, fmt.Errorf("参数错误")
  125. }
  126. if len(req.DbName) < 1 || req.Db == nil {
  127. return nil, fmt.Errorf("请求参数错误 不能为空")
  128. }
  129. var CreateRepoCtx = func() *repo.RepoSession {
  130. return &repo.RepoSession{
  131. Ctx: context.Background(),
  132. Client: db.MongoClient,
  133. }
  134. }
  135. update := bson.M{"$set": bson.M{"assets": req.Db.Assets}}
  136. _, err := repo.RepoUpdateSetDocProps(CreateRepoCtx(),
  137. repo.CollectionDatabase,
  138. req.Db.Id.Hex(), update)
  139. return nil, err
  140. },
  141. }
  142. }
  143. type UpdateDbCateReq struct {
  144. DbName string
  145. Cate *comm.DbCategory
  146. }
  147. func RegTreeDbCategoriesUpdate() *comm.NatsMsgReplyer {
  148. return &comm.NatsMsgReplyer{
  149. Subject: "tree.db.category.update",
  150. Entity: func() interface{} { return &UpdateDbCateReq{} },
  151. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  152. req, ok := entity.(*UpdateDbCateReq)
  153. if !ok {
  154. return nil, fmt.Errorf("参数错误")
  155. }
  156. if len(req.DbName) < 1 || req.Cate == nil {
  157. return nil, fmt.Errorf("请求参数错误 不能为空")
  158. }
  159. var CreateRepoCtx = func() *repo.RepoSession {
  160. return &repo.RepoSession{
  161. Ctx: context.Background(),
  162. Client: db.MongoClient,
  163. }
  164. }
  165. dbtree := &comm.DbCategory{}
  166. ok, _ = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  167. CollectName: repo.CollectionDatabase,
  168. Project: []string{"_id"},
  169. Query: repo.Map{"name": req.DbName},
  170. }, dbtree)
  171. if !ok {
  172. return nil, fmt.Errorf("没有对应的数据库")
  173. }
  174. update := bson.M{"$set": bson.M{"categories": req.Cate}}
  175. _, err := repo.RepoUpdateSetDocProps(CreateRepoCtx(),
  176. repo.CollectionDatabase,
  177. dbtree.Id.Hex(), update)
  178. return nil, err
  179. },
  180. }
  181. }