dao.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package web
  2. import (
  3. "context"
  4. "go-common/app/interface/main/web-goblin/conf"
  5. "go-common/library/database/elastic"
  6. "go-common/library/database/sql"
  7. "go-common/library/log"
  8. bm "go-common/library/net/http/blademaster"
  9. "go-common/library/stat/prom"
  10. )
  11. const (
  12. _pgcFullURL = "/ext/internal/archive/channel/content"
  13. _pgcIncreURL = "/ext/internal/archive/channel/content/change"
  14. )
  15. // Dao dao .
  16. type Dao struct {
  17. c *conf.Config
  18. db *sql.DB
  19. showDB *sql.DB
  20. httpR *bm.Client
  21. pgcFullURL, pgcIncreURL string
  22. ela *elastic.Elastic
  23. }
  24. // New init mysql db .
  25. func New(c *conf.Config) (dao *Dao) {
  26. dao = &Dao{
  27. c: c,
  28. db: sql.NewMySQL(c.DB.Goblin),
  29. showDB: sql.NewMySQL(c.DB.Show),
  30. httpR: bm.NewClient(c.SearchClient),
  31. pgcFullURL: c.Host.PgcURI + _pgcFullURL,
  32. pgcIncreURL: c.Host.PgcURI + _pgcIncreURL,
  33. ela: elastic.NewElastic(c.Es),
  34. }
  35. return
  36. }
  37. // Close close the resource .
  38. func (d *Dao) Close() {
  39. }
  40. // Ping dao ping .
  41. func (d *Dao) Ping(c context.Context) error {
  42. return nil
  43. }
  44. // PromError stat and log .
  45. func PromError(name string, format string, args ...interface{}) {
  46. prom.BusinessErrCount.Incr(name)
  47. log.Error(format, args...)
  48. }