tree-category-query.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. package bus
  2. import (
  3. "assetcenter/db"
  4. "assetcenter/db/repo"
  5. "context"
  6. "fmt"
  7. "time"
  8. "github.com/nats-io/nats.go"
  9. "go.mongodb.org/mongo-driver/bson/primitive"
  10. "infish.cn/comm"
  11. )
  12. type TreeQueryDbCategoryReq struct {
  13. DefineCollection string
  14. DbName string
  15. UserId string
  16. AssetScope string
  17. }
  18. func RegTreeCategoryQuery() *comm.NatsMsgReplyer {
  19. return &comm.NatsMsgReplyer{
  20. Subject: "tree.category.query",
  21. Entity: func() interface{} { return &TreeQueryDbCategoryReq{} },
  22. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  23. req, ok := entity.(*TreeQueryDbCategoryReq)
  24. if !ok {
  25. return nil, fmt.Errorf("参数错误")
  26. }
  27. if len(req.DbName) < 1 || len(req.DefineCollection) < 1 {
  28. return nil, fmt.Errorf("DbName 或 DefineName 不能为空")
  29. }
  30. var CreateRepoCtx = func() *repo.RepoSession {
  31. return &repo.RepoSession{
  32. Ctx: context.Background(),
  33. Client: db.MongoClient,
  34. }
  35. }
  36. enity := &comm.Database{}
  37. ok, _ = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  38. CollectName: repo.CollectionDatabase,
  39. Query: repo.Map{"name": req.DbName},
  40. Project: []string{"categories", "assets"},
  41. }, enity)
  42. if !ok {
  43. return nil, fmt.Errorf("没有查询到数据库:%s", req.DbName)
  44. }
  45. defineId := ""
  46. for _, a := range enity.Assets {
  47. if a.Collection == req.DefineCollection {
  48. defineId = a.Id
  49. break
  50. }
  51. }
  52. if len(defineId) < 1 {
  53. return nil, fmt.Errorf("没有查询到%s的定义", req.DefineCollection)
  54. }
  55. if len(req.UserId) > 0 && len(req.AssetScope) > 0 { //自定义分类
  56. userCaties := &comm.DbCategory{}
  57. userId, _ := primitive.ObjectIDFromHex(req.UserId)
  58. _, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  59. CollectName: repo.CollectionCategories,
  60. Query: repo.Map{"userId": userId, "scope": req.AssetScope},
  61. }, userCaties)
  62. if err != nil {
  63. return nil, err
  64. }
  65. userAssetCaties := &comm.DbAssetUserCategory{}
  66. _, err = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  67. CollectName: repo.CollectionDbAssetCategory,
  68. Query: repo.Map{"userId": userId},
  69. }, userAssetCaties)
  70. if err != nil {
  71. return nil, err
  72. }
  73. cates := &comm.DbCategory{}
  74. for _, v := range userAssetCaties.CategoryConfs {
  75. if v.DbAssetId.Hex() == defineId {
  76. for _, id := range v.CategoryIds {
  77. for _, c := range userCaties.Categories {
  78. if c.Id == id {
  79. cates.Categories = append(cates.Categories, c)
  80. break
  81. }
  82. }
  83. }
  84. }
  85. }
  86. return cates, nil
  87. }
  88. if len(req.DbName) < 1 {
  89. return nil, fmt.Errorf("DbName不能为空")
  90. }
  91. cates := &comm.DbCategory{}
  92. for _, v := range enity.Assets {
  93. if v.Id != defineId {
  94. continue
  95. }
  96. for _, id := range v.CategoryIds {
  97. for _, c := range enity.Categories.Categories {
  98. if c.Id == id {
  99. cates.Categories = append(cates.Categories, c)
  100. break
  101. }
  102. }
  103. }
  104. }
  105. return cates, nil
  106. },
  107. }
  108. }
  109. func RegTreeUserCategoryUpdate() *comm.NatsMsgReplyer {
  110. return &comm.NatsMsgReplyer{
  111. Subject: "tree.user.category.update",
  112. Entity: func() interface{} { return &comm.DbCategory{} },
  113. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  114. req, ok := entity.(*comm.DbCategory)
  115. if !ok {
  116. return nil, fmt.Errorf("参数错误")
  117. }
  118. var CreateRepoCtx = func() *repo.RepoSession {
  119. return &repo.RepoSession{
  120. Ctx: context.Background(),
  121. Client: db.MongoClient,
  122. }
  123. }
  124. curr := &comm.DbCategory{}
  125. ok, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  126. CollectName: repo.CollectionCategories,
  127. Project: []string{"_id"},
  128. Query: repo.Map{"userId": req.UserId, "scope": req.Scope},
  129. }, curr)
  130. if err != nil {
  131. return nil, err
  132. }
  133. if !ok { //没有查询到新增
  134. id, err := repo.RepoAddDoc(CreateRepoCtx(), repo.CollectionCategories, req)
  135. if err != nil {
  136. return nil, err
  137. }
  138. req.Id, _ = primitive.ObjectIDFromHex(id)
  139. return req, nil
  140. }
  141. req.Id = primitive.NilObjectID
  142. return repo.RepoUpdateSetDoc(CreateRepoCtx(), repo.CollectionCategories, curr.Id.Hex(), req)
  143. },
  144. }
  145. }
  146. func RegTreeUserAssetCategoryUpdate() *comm.NatsMsgReplyer {
  147. return &comm.NatsMsgReplyer{
  148. Subject: "tree.user.assetCategory.update",
  149. Entity: func() interface{} { return &comm.DbAssetUserCategory{} },
  150. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  151. req, ok := entity.(*comm.DbAssetUserCategory)
  152. if !ok {
  153. return nil, fmt.Errorf("参数错误")
  154. }
  155. var CreateRepoCtx = func() *repo.RepoSession {
  156. return &repo.RepoSession{
  157. Ctx: context.Background(),
  158. Client: db.MongoClient,
  159. }
  160. }
  161. curr := &comm.DbAssetUserCategory{}
  162. ok, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  163. CollectName: repo.CollectionDbAssetCategory,
  164. Project: []string{"_id"},
  165. Query: repo.Map{"userId": req.UserId, "scope": req.Scope},
  166. }, curr)
  167. if err != nil {
  168. return nil, err
  169. }
  170. if !ok { //没有查询到新增
  171. req.CreateTime = time.Now()
  172. req.UpdateTime = time.Now()
  173. id, err := repo.RepoAddDoc(CreateRepoCtx(), repo.CollectionDbAssetCategory, req)
  174. if err != nil {
  175. return nil, err
  176. }
  177. req.Id, _ = primitive.ObjectIDFromHex(id)
  178. return true, nil
  179. }
  180. req.Id = primitive.NilObjectID
  181. req.UpdateTime = time.Now()
  182. req.CreateTime = curr.CreateTime
  183. _, err = repo.RepoUpdateSetDoc(CreateRepoCtx(), repo.CollectionDbAssetCategory, curr.Id.Hex(), req)
  184. return true, err
  185. },
  186. }
  187. }
  188. type TreeUserAssetCateReq struct {
  189. UserId string
  190. Scope string
  191. }
  192. func RegTreeUserAssetCategoryQuery() *comm.NatsMsgReplyer {
  193. return &comm.NatsMsgReplyer{
  194. Subject: "tree.user.assetCategory.query",
  195. Entity: func() interface{} { return &TreeUserAssetCateReq{} },
  196. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  197. req, ok := entity.(*TreeUserAssetCateReq)
  198. if !ok {
  199. return nil, fmt.Errorf("参数错误")
  200. }
  201. var CreateRepoCtx = func() *repo.RepoSession {
  202. return &repo.RepoSession{
  203. Ctx: context.Background(),
  204. Client: db.MongoClient,
  205. }
  206. }
  207. uid, _ := primitive.ObjectIDFromHex(req.UserId)
  208. curr := &comm.DbAssetUserCategory{}
  209. _, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  210. CollectName: repo.CollectionDbAssetCategory,
  211. Query: repo.Map{"userId": uid, "scope": req.Scope},
  212. }, curr)
  213. if err != nil {
  214. return nil, err
  215. }
  216. return curr, nil
  217. },
  218. }
  219. }