dao.go 853 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package search
  2. import (
  3. "go-common/app/interface/main/tv/conf"
  4. "go-common/library/database/elastic"
  5. bm "go-common/library/net/http/blademaster"
  6. )
  7. const (
  8. _userSearch = "/main/search"
  9. _card = "/pgc/internal/season/search/card"
  10. )
  11. // Dao is search dao.
  12. type Dao struct {
  13. conf *conf.Config
  14. client *bm.Client
  15. resultURL string
  16. esClient *elastic.Elastic
  17. userSearch string
  18. card string
  19. cfgWild *conf.WildSearch
  20. }
  21. // New account dao.
  22. func New(c *conf.Config) (d *Dao) {
  23. d = &Dao{
  24. client: bm.NewClient(c.SearchClient),
  25. resultURL: c.Search.ResultURL,
  26. conf: c,
  27. esClient: elastic.NewElastic(&elastic.Config{
  28. Host: c.Host.ESHost,
  29. HTTPClient: c.SearchClient,
  30. }),
  31. userSearch: c.Search.UserSearch + _userSearch,
  32. card: c.Host.APICo + _card,
  33. cfgWild: c.Wild.WildSearch,
  34. }
  35. return
  36. }