dao.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package dao
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/credit/conf"
  6. "go-common/library/cache/memcache"
  7. "go-common/library/cache/redis"
  8. "go-common/library/database/sql"
  9. bm "go-common/library/net/http/blademaster"
  10. "go-common/library/queue/databus"
  11. )
  12. const (
  13. _sendMsgURI = "/api/notify/send.user.notify.do"
  14. _getQSURI = "/laogai/question"
  15. _replyCountURI = "/x/internal/v2/reply/mcount"
  16. _sendMedalURI = "/x/internal/medal/grant"
  17. _managersURI = "/x/admin/manager/users"
  18. _managerTotalURI = "/x/admin/manager/users/total"
  19. _addAppealURI = "/x/internal/workflow/appeal/add"
  20. _appealDetailURI = "/x/internal/workflow/appeal/info"
  21. _appealListURI = "/x/internal/workflow/appeal/list"
  22. )
  23. // Dao struct info of Dao.
  24. type Dao struct {
  25. // mysql
  26. db *sql.DB
  27. // memcache
  28. mc *memcache.Pool
  29. userExpire int32
  30. minCommonExpire int32
  31. commonExpire int32
  32. // redis
  33. redis *redis.Pool
  34. redisExpire int64
  35. // databus stat
  36. dbusLabour *databus.Databus
  37. // http
  38. client *bm.Client
  39. // conf
  40. c *conf.Config
  41. // message api
  42. sendMsgURL string
  43. // big data api
  44. getQSURL string
  45. // account.co api
  46. sendMedalURL string
  47. replyCountURL string
  48. managersURL string
  49. managerTotalURL string
  50. // appeal
  51. addAppealURL string
  52. appealDetailURL string
  53. appealListURL string
  54. }
  55. // New new a Dao and return.
  56. func New(c *conf.Config) (d *Dao) {
  57. d = &Dao{
  58. // conf
  59. c: c,
  60. // db
  61. db: sql.NewMySQL(c.Mysql),
  62. // memcache
  63. mc: memcache.NewPool(c.Memcache.Config),
  64. userExpire: int32(time.Duration(c.Memcache.UserExpire) / time.Second),
  65. minCommonExpire: int32(time.Duration(c.Memcache.MinCommonExpire) / time.Second),
  66. commonExpire: int32(time.Duration(c.Memcache.CommonExpire) / time.Second),
  67. // redis
  68. redis: redis.NewPool(c.Redis.Config),
  69. redisExpire: int64(time.Duration(c.Redis.Expire) / time.Second),
  70. // databus
  71. dbusLabour: databus.New(c.DataBus),
  72. // http client
  73. client: bm.NewClient(c.HTTPClient),
  74. }
  75. d.sendMsgURL = c.Host.MessageURI + _sendMsgURI
  76. d.getQSURL = c.Host.BigDataURI + _getQSURI
  77. d.sendMedalURL = c.Host.APICoURI + _sendMedalURI
  78. d.replyCountURL = c.Host.APICoURI + _replyCountURI
  79. d.managersURL = c.Host.ManagersURI + _managersURI
  80. d.managerTotalURL = c.Host.ManagersURI + _managerTotalURI
  81. d.addAppealURL = c.Host.APICoURI + _addAppealURI
  82. d.appealDetailURL = c.Host.APICoURI + _appealDetailURI
  83. d.appealListURL = c.Host.APICoURI + _appealListURI
  84. return
  85. }
  86. // Ping ping health.
  87. func (d *Dao) Ping(c context.Context) (err error) {
  88. return d.pingMC(c)
  89. }
  90. // Close close connections of mc, redis, db.
  91. func (d *Dao) Close() {
  92. if d.mc != nil {
  93. d.mc.Close()
  94. }
  95. if d.db != nil {
  96. d.db.Close()
  97. }
  98. }
  99. // BeginTran begin mysql transaction.
  100. func (d *Dao) BeginTran(c context.Context) (*sql.Tx, error) {
  101. return d.db.Begin(c)
  102. }