sports.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package sports
  2. import (
  3. "context"
  4. "encoding/json"
  5. "io"
  6. "io/ioutil"
  7. "net/http"
  8. "net/url"
  9. "time"
  10. "go-common/app/interface/main/activity/conf"
  11. "go-common/app/interface/main/activity/model/sports"
  12. "go-common/library/cache/memcache"
  13. "go-common/library/ecode"
  14. xecocde "go-common/library/ecode"
  15. "go-common/library/log"
  16. xhttp "go-common/library/net/http/blademaster"
  17. "go-common/library/net/metadata"
  18. "go-common/library/stat/prom"
  19. )
  20. const (
  21. _qqAppID = "9"
  22. _qqAppKey = "TWF0Y2hVbmlvbjpBUFBLRVk6OQ=="
  23. _newsAppID = "openapi_for_bilibili"
  24. _newsAppKey = "d2c0d130c49baadc3d43fc731caecd43"
  25. )
  26. // PromError stat and log.
  27. func PromError(name string, format string, args ...interface{}) {
  28. prom.BusinessErrCount.Incr(name)
  29. log.Error(format, args...)
  30. }
  31. // Dao dao.
  32. type Dao struct {
  33. // http
  34. httpSports *xhttp.Client
  35. dClient *http.Client
  36. // sports api
  37. sportsURI, newsURI string
  38. mc *memcache.Pool
  39. mcQqExpire int32
  40. }
  41. // New dao new.
  42. func New(c *conf.Config) (d *Dao) {
  43. d = &Dao{
  44. httpSports: xhttp.NewClient(c.HTTPClientSports),
  45. dClient: http.DefaultClient,
  46. sportsURI: c.Host.Sports,
  47. newsURI: c.Host.QqNews,
  48. mc: memcache.NewPool(c.Memcache.Like),
  49. mcQqExpire: int32(time.Duration(c.Memcache.QqExpire) / time.Second),
  50. }
  51. return
  52. }
  53. // Qq get qq.
  54. func (d *Dao) Qq(c context.Context, params url.Values, route string) (rs *json.RawMessage, err error) {
  55. ip := metadata.String(c, metadata.RemoteIP)
  56. var res struct {
  57. Code int `json:"code"`
  58. Data json.RawMessage `json:"data"`
  59. }
  60. params.Del("route")
  61. params.Set("appId", _qqAppID)
  62. params.Set("appKey", _qqAppKey)
  63. if err = d.httpSports.Get(c, d.sportsURI+"/"+route, ip, params, &res); err != nil {
  64. log.Error("d.httpSports.Get(%s) err(%v)", d.sportsURI+"/"+route+"?"+params.Encode(), err)
  65. return
  66. }
  67. if res.Code != ecode.OK.Code() {
  68. log.Error("d.httpSports.Get(%s) param(%v) ecode err(%d)", d.sportsURI, params, res.Code)
  69. err = ecode.Int(res.Code)
  70. return
  71. }
  72. rs = &res.Data
  73. return
  74. }
  75. // QqNews get qq news.
  76. func (d *Dao) QqNews(c context.Context, params url.Values, route string) (rs *sports.QqRes, err error) {
  77. var (
  78. req *http.Request
  79. resp *http.Response
  80. cancel func()
  81. )
  82. params.Set("chlid", "news_news_football")
  83. params.Set("appkey", _newsAppKey)
  84. params.Set("appid", _newsAppID)
  85. if req, err = http.NewRequest("GET", d.newsURI+"/"+route+"?"+params.Encode(), nil); err != nil {
  86. log.Error("QqNews http.NewRequest(%s) error(%v)", d.newsURI+"/"+route+"?"+params.Encode(), err)
  87. return
  88. }
  89. c, cancel = context.WithTimeout(c, time.Duration(conf.Conf.Rule.DTimeout))
  90. defer cancel()
  91. req = req.WithContext(c)
  92. if resp, err = d.dClient.Do(req); err != nil {
  93. log.Error("QqNews httpClient.Do(%s) error(%v)", d.newsURI+"/"+route+"?"+params.Encode(), err)
  94. return
  95. }
  96. defer resp.Body.Close()
  97. if resp.StatusCode >= http.StatusBadRequest {
  98. log.Error("QqNews url(%s) resp.StatusCode error(%v)", d.newsURI+"/"+route+"?"+params.Encode(), err)
  99. return
  100. }
  101. bs, err := ioutil.ReadAll(resp.Body)
  102. if err != nil {
  103. log.Error("QqNews ioutil.ReadAll() error(%v)", err)
  104. return
  105. } else if len(bs) == 0 {
  106. return
  107. }
  108. if e := json.Unmarshal(bs, &rs); e != nil {
  109. if e != io.EOF {
  110. log.Error("json decode body(%s) error(%v)", string(bs), e)
  111. }
  112. }
  113. if rs.Ret != 0 {
  114. err = xecocde.ActivityServerTimeout
  115. rs = nil
  116. return
  117. }
  118. return
  119. }