tree-asset-meshpack.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. func RegTreeAssetDetailMeshPack() *comm.NatsMsgReplyer {
  11. return &comm.NatsMsgReplyer{
  12. Subject: "tree.asset.detail.pack",
  13. Entity: func() interface{} { return &AssetReq{} },
  14. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  15. req, ok := entity.(*AssetReq)
  16. if !ok {
  17. return nil, fmt.Errorf("参数错误不是AssetReq类型")
  18. }
  19. if len(req.DbName) < 1 || len(req.Collection) < 1 || len(req.AssetId) < 1 {
  20. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  21. }
  22. var CreateRepoCtx = func() *repo.RepoSession {
  23. return &repo.RepoSession{
  24. Ctx: context.Background(),
  25. Client: db.MongoClient,
  26. }
  27. }
  28. out := &comm.AssetPackage{}
  29. ok, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{Db: req.DbName, CollectName: req.Collection, Query: repo.Map{"_id": req.AssetId}}, out)
  30. if err != nil {
  31. return nil, err
  32. }
  33. if !ok {
  34. return nil, fmt.Errorf("查询的色卡不存在")
  35. }
  36. return out, nil
  37. },
  38. }
  39. }