replyers.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package bus
  2. import (
  3. "assetcenter/db"
  4. "assetcenter/db/repo"
  5. "context"
  6. "errors"
  7. "time"
  8. "github.com/nats-io/nats.go"
  9. "infish.cn/comm"
  10. )
  11. func newReplayer() *comm.NatsMsgReplyer {
  12. return &comm.NatsMsgReplyer{
  13. Subject: "queentree.asset.op.enable",
  14. Entity: func() interface{} { return &comm.PublicAssetReq{} },
  15. Cb2: func(_ *nats.Msg, entity interface{}) (interface{}, error) {
  16. req := entity.(*comm.PublicAssetReq)
  17. asset := &struct {
  18. Enable *bool `bson:"enable,omitempty" json:"enable"`
  19. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  20. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  21. }{
  22. Enable: &req.Enable,
  23. }
  24. if *asset.Enable {
  25. asset.CreateTime = time.Now()
  26. }
  27. ctx := &repo.RepoSession{
  28. Ctx: context.Background(),
  29. Client: db.MongoClient,
  30. }
  31. //跟新数据库状态
  32. dbConf := repo.GetDatabaseCollectionSimple(ctx, req.DbId, req.DefineId)
  33. if dbConf == nil || len(dbConf.Db.Name) < 1 {
  34. return false, errors.New("db con err")
  35. }
  36. asset.UpdateTime = time.Now()
  37. id := req.Id
  38. collectionName := dbConf.AssetConf.Collection
  39. ret, err := repo.RepoUpdateSeDbDoc(ctx, dbConf.Db.Name, collectionName, id, asset)
  40. if err != nil {
  41. return false, err
  42. }
  43. return ret, nil
  44. },
  45. }
  46. }