dao.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package newcomer
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/library/cache/redis"
  6. "go-common/library/database/sql"
  7. "go-common/library/log"
  8. httpx "go-common/library/net/http/blademaster"
  9. )
  10. // Dao define
  11. type Dao struct {
  12. c *conf.Config
  13. db *sql.DB
  14. // http
  15. client *httpx.Client
  16. mallURI string
  17. bPayURI string
  18. pendantURI string
  19. bigMemberURI string
  20. msgNotifyURI string
  21. // redis
  22. redis *redis.Pool
  23. }
  24. const (
  25. _mall = "/mall-marketing/coupon_code/create" //会员购
  26. _bpay = "/api/coupon/add" //B币券
  27. _pendant = "/x/internal/pendant/multiGrantByMid" //挂件:批量发放挂件(多个MID对应一个挂件)
  28. _bigmember = "/x/internal/coupon/allowance/receive" //大会员代金券
  29. _notify = "/api/notify/send.user.notify.do" //发送用户通知消息接口
  30. )
  31. // New init dao
  32. func New(c *conf.Config) (d *Dao) {
  33. d = &Dao{
  34. c: c,
  35. db: sql.NewMySQL(c.DB.Creative),
  36. client: httpx.NewClient(c.HTTPClient.Slow),
  37. mallURI: c.Host.Mall + _mall,
  38. bPayURI: c.Host.BPay + _bpay,
  39. pendantURI: c.Host.Pendant + _pendant,
  40. bigMemberURI: c.Host.BigMember + _bigmember,
  41. msgNotifyURI: c.Host.Notify + _notify,
  42. redis: redis.NewPool(c.Redis.Cover.Config),
  43. }
  44. return
  45. }
  46. // Ping db
  47. func (d *Dao) Ping(c context.Context) (err error) {
  48. if d.db != nil {
  49. d.db.Ping(c)
  50. }
  51. if d.redis != nil {
  52. conn := d.redis.Get(c)
  53. if _, err = conn.Do("SET", "ping", "pong"); err != nil {
  54. log.Error("conn.Do(SET) error(%v)", err)
  55. }
  56. conn.Close()
  57. }
  58. return
  59. }
  60. // Close db
  61. func (d *Dao) Close() (err error) {
  62. if d.db != nil {
  63. d.db.Close()
  64. }
  65. if d.redis != nil {
  66. d.redis.Close()
  67. }
  68. return
  69. }