dao.go 732 B

123456789101112131415161718192021222324252627282930313233343536
  1. package wechat
  2. import (
  3. "go-common/app/interface/main/web-goblin/conf"
  4. "go-common/library/cache"
  5. "go-common/library/cache/redis"
  6. bm "go-common/library/net/http/blademaster"
  7. )
  8. // Dao dao struct.
  9. type Dao struct {
  10. // config
  11. c *conf.Config
  12. // redis
  13. redis *redis.Pool
  14. // httpClient
  15. httpClient *bm.Client
  16. // url
  17. wxAccessTokenURL string
  18. wxQrcodeURL string
  19. cache *cache.Cache
  20. }
  21. // New new dao.
  22. func New(c *conf.Config) (d *Dao) {
  23. d = &Dao{
  24. // config
  25. c: c,
  26. redis: redis.NewPool(c.Redis.Config),
  27. httpClient: bm.NewClient(c.HTTPClient),
  28. cache: cache.New(1, 1024),
  29. }
  30. d.wxAccessTokenURL = d.c.Host.Wechat + _accessTokenURI
  31. d.wxQrcodeURL = d.c.Host.Wechat + _qrcodeURI
  32. return
  33. }