tree-asset-add-matgroup.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package bus
  2. import (
  3. "assetcenter/db"
  4. "assetcenter/db/repo"
  5. "context"
  6. "fmt"
  7. "github.com/nats-io/nats.go"
  8. "infish.cn/comm"
  9. )
  10. type TreeAddMatgroupReq struct {
  11. DbName string
  12. Collection string
  13. Matgroup *comm.AssetMatGroup
  14. }
  15. func RegTreeAssetAddMatgroup() *comm.NatsMsgReplyer {
  16. return &comm.NatsMsgReplyer{
  17. Subject: "tree.asset.add.matgroup",
  18. Entity: func() interface{} { return &TreeAddMatgroupReq{} },
  19. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  20. req, ok := entity.(*TreeAddMatgroupReq)
  21. if !ok {
  22. return nil, fmt.Errorf("参数错误")
  23. }
  24. if len(req.DbName) < 1 || len(req.Collection) < 1 {
  25. return nil, fmt.Errorf("DbName Collection 不能为空")
  26. }
  27. var CreateRepoCtx = func() *repo.RepoSession {
  28. return &repo.RepoSession{
  29. Ctx: context.Background(),
  30. Client: db.MongoClient,
  31. }
  32. }
  33. return repo.RepoDbAddDoc(CreateRepoCtx(), req.DbName, req.Collection, req.Matgroup)
  34. },
  35. }
  36. }
  37. type AssetReq struct {
  38. DbHost string
  39. DbName string
  40. Collection string
  41. AssetId string
  42. }
  43. func RegTreeAssetDetailMatgroup() *comm.NatsMsgReplyer {
  44. return &comm.NatsMsgReplyer{
  45. Subject: "tree.asset.detail.matgroup",
  46. Entity: func() interface{} { return &AssetReq{} },
  47. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  48. req, ok := entity.(*AssetReq)
  49. if !ok {
  50. return nil, fmt.Errorf("参数错误不是AssetReq类型")
  51. }
  52. if len(req.DbName) < 1 || len(req.Collection) < 1 || len(req.AssetId) < 1 {
  53. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  54. }
  55. var CreateRepoCtx = func() *repo.RepoSession {
  56. return &repo.RepoSession{
  57. Ctx: context.Background(),
  58. Client: db.MongoClient,
  59. }
  60. }
  61. out := &comm.AssetMatGroup{}
  62. ok, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{Db: req.DbName, CollectName: req.Collection, Query: repo.Map{"_id": req.AssetId}}, out)
  63. if err != nil {
  64. return nil, err
  65. }
  66. if !ok {
  67. return nil, fmt.Errorf("查询的色卡不存在")
  68. }
  69. return out, nil
  70. },
  71. }
  72. }