client.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. package mi
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "io"
  6. "io/ioutil"
  7. "net/http"
  8. "strings"
  9. "time"
  10. "go-common/library/log"
  11. "go-common/library/stat"
  12. "go-common/library/stat/prom"
  13. )
  14. // Client Xiaomi http client.
  15. type Client struct {
  16. Header http.Header
  17. HTTPClient *http.Client
  18. Package string
  19. URL string
  20. Stats stat.Stat
  21. }
  22. // NewClient returns a Client with request header and auth.
  23. func NewClient(pkg, auth string, timeout time.Duration) *Client {
  24. header := http.Header{}
  25. header.Set("Content-Type", "application/x-www-form-urlencoded")
  26. header.Set("Authorization", AuthPrefix+auth)
  27. // transport := &http.Transport{
  28. // Proxy: func(_ *http.Request) (*url.URL, error) {
  29. // return url.Parse("http://10.28.10.11:80")
  30. // },
  31. // DialContext: (&net.Dialer{
  32. // Timeout: 30 * time.Second,
  33. // KeepAlive: 30 * time.Second,
  34. // DualStack: true,
  35. // }).DialContext,
  36. // MaxIdleConns: 100,
  37. // IdleConnTimeout: 90 * time.Second,
  38. // ExpectContinueTimeout: 1 * time.Second,
  39. // }
  40. return &Client{
  41. Header: header,
  42. HTTPClient: &http.Client{Timeout: timeout},
  43. // HTTPClient: &http.Client{Timeout: timeout, Transport: transport},
  44. Package: pkg,
  45. Stats: prom.HTTPClient,
  46. }
  47. }
  48. // SetProductionURL sets Production URL.
  49. func (c *Client) SetProductionURL(url string) {
  50. c.URL = ProductionHost + url
  51. }
  52. // SetDevelopmentURL sets Production URL.
  53. func (c *Client) SetDevelopmentURL(url string) {
  54. c.URL = DevHost + url
  55. }
  56. // SetVipURL sets VIP URL.
  57. func (c *Client) SetVipURL(url string) {
  58. c.URL = VipHost + url
  59. }
  60. // SetStatusURL sets feedback URL.
  61. func (c *Client) SetStatusURL() {
  62. c.URL = ProductionHost + StatusURL
  63. }
  64. // Push sends a Notification to Xiaomi push service.
  65. func (c *Client) Push(xm *XMMessage) (response *Response, err error) {
  66. if c.Stats != nil {
  67. now := time.Now()
  68. defer func() {
  69. c.Stats.Timing(c.URL, int64(time.Since(now)/time.Millisecond))
  70. log.Info("mi stats timing: %v", int64(time.Since(now)/time.Millisecond))
  71. if err != nil {
  72. c.Stats.Incr(c.URL, "failed")
  73. }
  74. }()
  75. }
  76. var req *http.Request
  77. if req, err = http.NewRequest(http.MethodPost, c.URL, bytes.NewBuffer([]byte(xm.xmuv.Encode()))); err != nil {
  78. log.Error("http.NewRequest() error(%v)", err)
  79. return
  80. }
  81. req.Header = c.Header
  82. var res *http.Response
  83. if res, err = c.HTTPClient.Do(req); err != nil {
  84. log.Error("HTTPClient.Do() error(%v)", err)
  85. return
  86. }
  87. defer res.Body.Close()
  88. response = &Response{}
  89. var bs []byte
  90. bs, err = ioutil.ReadAll(res.Body)
  91. if err != nil {
  92. log.Error("ioutil.ReadAll() error(%v)", err)
  93. return
  94. } else if len(bs) == 0 {
  95. return
  96. }
  97. if e := json.Unmarshal(bs, &response); e != nil {
  98. if e != io.EOF {
  99. log.Error("json decode body(%s) error(%v)", string(bs), e)
  100. }
  101. }
  102. return
  103. }
  104. // MockPush mock push.
  105. func (c *Client) MockPush(xm *XMMessage) (response *Response, err error) {
  106. if c.Stats != nil {
  107. now := time.Now()
  108. defer func() {
  109. c.Stats.Timing(c.URL, int64(time.Since(now)/time.Millisecond))
  110. if err != nil {
  111. c.Stats.Incr(c.URL, "mi push mock")
  112. }
  113. }()
  114. }
  115. time.Sleep(200 * time.Millisecond)
  116. response = &Response{Code: ResultCodeOk, Result: ResultOk}
  117. return
  118. }
  119. // InvalidTokens get invalid tokens.
  120. func (c *Client) InvalidTokens() (response *Response, err error) {
  121. if c.Stats != nil {
  122. now := time.Now()
  123. defer func() {
  124. c.Stats.Timing(c.URL, int64(time.Since(now)/time.Millisecond))
  125. log.Info("mi invalidTokens timing: %v", int64(time.Since(now)/time.Millisecond))
  126. if err != nil {
  127. c.Stats.Incr(c.URL, "failed")
  128. }
  129. }()
  130. }
  131. req, err := http.NewRequest(http.MethodGet, feedbackHost+feedbackURI, nil)
  132. if err != nil {
  133. log.Error("http.NewRequest(%s) error(%v)", c.URL, err)
  134. return
  135. }
  136. req.Header = c.Header
  137. c.HTTPClient.Timeout = time.Minute
  138. res, err := c.HTTPClient.Do(req)
  139. if err != nil {
  140. log.Error("HTTPClient.Do() error(%v)", err)
  141. return
  142. }
  143. defer res.Body.Close()
  144. response = &Response{}
  145. bs, err := ioutil.ReadAll(res.Body)
  146. if err != nil {
  147. log.Error("ioutil.ReadAll() error(%v)", err)
  148. return
  149. } else if len(bs) == 0 {
  150. return
  151. }
  152. if e := json.Unmarshal(bs, &response); e != nil {
  153. if e != io.EOF {
  154. log.Error("json decode body(%s) error(%v)", string(bs), e)
  155. }
  156. }
  157. return
  158. }
  159. // UninstalledTokens get uninstalled tokens.
  160. func (c *Client) UninstalledTokens() (response *UninstalledResponse, err error) {
  161. if c.Stats != nil {
  162. now := time.Now()
  163. defer func() {
  164. c.Stats.Timing(c.URL, int64(time.Since(now)/time.Millisecond))
  165. log.Info("mi UninstalledTokens timing: %v", int64(time.Since(now)/time.Millisecond))
  166. if err != nil {
  167. c.Stats.Incr(c.URL, "mi uninstalled tokens")
  168. }
  169. }()
  170. }
  171. req, err := http.NewRequest(http.MethodGet, emqHost+uninstalledURI+"?package_name="+c.Package, nil)
  172. if err != nil {
  173. log.Error("http.NewRequest(%s) error(%v)", c.URL, err)
  174. return
  175. }
  176. req.Header = c.Header
  177. c.HTTPClient.Timeout = time.Minute
  178. res, err := c.HTTPClient.Do(req)
  179. if err != nil {
  180. log.Error("HTTPClient.Do() error(%v)", err)
  181. return
  182. }
  183. defer res.Body.Close()
  184. response = &UninstalledResponse{}
  185. bs, err := ioutil.ReadAll(res.Body)
  186. if err != nil {
  187. log.Error("ioutil.ReadAll() error(%v)", err)
  188. return
  189. } else if len(bs) == 0 {
  190. return
  191. }
  192. if e := json.Unmarshal(bs, &response); e != nil {
  193. if e != io.EOF {
  194. log.Error("json decode body(%s) error(%v)", string(bs), e)
  195. }
  196. return
  197. }
  198. for _, s := range response.Result {
  199. s = strings.Replace(s, `\`, "", -1)
  200. s = strings.TrimPrefix(s, `"`)
  201. s = strings.TrimSuffix(s, `"`)
  202. ud := UninstalledData{}
  203. if e := json.Unmarshal([]byte(s), &ud); e != nil {
  204. log.Error("json unmarshal(%s) error(%v)", s, e)
  205. continue
  206. }
  207. if ud.Token == "" {
  208. continue
  209. }
  210. response.Data = append(response.Data, ud.Token)
  211. }
  212. return
  213. }