search-image.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 BusTreeSearchImageReq struct {
  11. DbName string
  12. Coll string
  13. Result []*MlivusSearchRes
  14. }
  15. // func BusTreeSearchImage(req *BusTreeSearchImageReq) (out interface{}, err error) {
  16. // err = NatsCenter.RequestPackApi("tree.search.image",
  17. // req,
  18. // &out, &comm.RequestOptions{
  19. // DeployPack: "queentree",
  20. // })
  21. // return out, err
  22. // }
  23. func RegTreeSearchImage() *comm.NatsMsgReplyer {
  24. return &comm.NatsMsgReplyer{
  25. Subject: "tree.search.image",
  26. Entity: func() interface{} { return &BusTreeSearchImageReq{} },
  27. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  28. req, ok := entity.(*BusTreeSearchImageReq)
  29. if !ok {
  30. return nil, fmt.Errorf("参数错误不是BusTreeSearchImageReq类型")
  31. }
  32. fmt.Println(*req)
  33. var CreateRepoCtx = func() *repo.RepoSession {
  34. return &repo.RepoSession{
  35. Ctx: context.Background(),
  36. Client: db.MongoClient,
  37. }
  38. }
  39. handleLists := make([]map[string]interface{}, 0)
  40. for _, list := range req.Result {
  41. handleList := make(map[string]interface{})
  42. found, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  43. Db: req.DbName,
  44. CollectName: req.Coll,
  45. Query: repo.Map{"_id": list.ProductId},
  46. }, handleList)
  47. if !found || err != nil {
  48. continue
  49. }
  50. handleList["score"] = list.Score
  51. handleList["imHash"] = list.ImHash
  52. handleLists = append(handleLists, handleList)
  53. }
  54. return handleLists, nil
  55. },
  56. }
  57. }