dao.go 886 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package music
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/library/database/elastic"
  6. "go-common/library/database/sql"
  7. bm "go-common/library/net/http/blademaster"
  8. )
  9. // Dao is archive dao.
  10. type Dao struct {
  11. // config
  12. c *conf.Config
  13. db *sql.DB
  14. client *bm.Client
  15. audioListURL string
  16. es *elastic.Elastic
  17. }
  18. // New init api url
  19. func New(c *conf.Config) (d *Dao) {
  20. d = &Dao{
  21. c: c,
  22. db: sql.NewMySQL(c.DB.Archive),
  23. // client
  24. client: bm.NewClient(c.HTTPClient.Slow),
  25. audioListURL: c.Host.API + _audioListURI,
  26. es: elastic.NewElastic(&elastic.Config{
  27. Host: c.Host.MainSearch,
  28. HTTPClient: c.HTTPClient.Slow,
  29. }),
  30. }
  31. return
  32. }
  33. // Ping fn
  34. func (d *Dao) Ping(c context.Context) (err error) {
  35. return d.db.Ping(c)
  36. }
  37. // Close fn
  38. func (d *Dao) Close() (err error) {
  39. return d.db.Close()
  40. }