dao.go 624 B

12345678910111213141516171819202122232425262728293031
  1. package search
  2. import (
  3. "go-common/app/interface/main/reply/conf"
  4. es "go-common/library/database/elastic"
  5. bm "go-common/library/net/http/blademaster"
  6. )
  7. const (
  8. _searchURL = "/x/internal/search/reply"
  9. _searchLogURL = "/api/reply/external/search"
  10. )
  11. // Dao search dao.
  12. type Dao struct {
  13. logURL string
  14. searchURL string
  15. httpCli *bm.Client
  16. es *es.Elastic
  17. }
  18. // New new a dao and return.
  19. func New(c *conf.Config) *Dao {
  20. d := &Dao{
  21. logURL: c.Host.Search + _searchLogURL,
  22. searchURL: c.Host.API + _searchURL,
  23. httpCli: bm.NewClient(c.HTTPClient),
  24. es: es.NewElastic(c.Es),
  25. }
  26. return d
  27. }