report.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package server
  2. import (
  3. "bytes"
  4. "fmt"
  5. "io/ioutil"
  6. "net/http"
  7. "net/url"
  8. "strconv"
  9. "strings"
  10. "time"
  11. "go-common/library/log"
  12. )
  13. const (
  14. actionConnect = 1
  15. actionDisconnect = 2
  16. _apiReport = "http://dataflow.biliapi.com/log/system"
  17. _reportFormat = "001659%d%d|%d|%d|%d|%d|%d|%s|%s|%d"
  18. )
  19. var (
  20. httpCli = &http.Client{Timeout: 1 * time.Second}
  21. _reportSucc = []byte("succeed")
  22. _reportOK = []byte("OK")
  23. )
  24. // Report is report params.
  25. type Report struct {
  26. From int64
  27. Aid int64
  28. Cid int64
  29. Mid int64
  30. Key string
  31. IP string
  32. }
  33. func reportCh(action int, ch *Channel) {
  34. if ch.Room == nil {
  35. return
  36. }
  37. u, err := url.Parse(ch.Room.ID)
  38. if err != nil {
  39. return
  40. }
  41. if u.Scheme != "video" {
  42. return
  43. }
  44. paths := strings.Split(u.Path, "/")
  45. if len(paths) < 2 {
  46. return
  47. }
  48. r := &Report{Key: ch.Key, Mid: ch.Mid, IP: ch.IP}
  49. r.Aid, _ = strconv.ParseInt(u.Host, 10, 64)
  50. r.Cid, _ = strconv.ParseInt(paths[1], 10, 64)
  51. switch ch.Platform {
  52. case "ios":
  53. r.From = 3
  54. case "android":
  55. r.From = 2
  56. default:
  57. r.From = 1
  58. }
  59. report(action, r, ch.Room.OnlineNum())
  60. }
  61. func report(action int, r *Report, online int32) {
  62. timestamp := time.Now().UnixNano() / int64(time.Millisecond)
  63. lines := fmt.Sprintf(_reportFormat, timestamp, timestamp, r.From, r.Aid, r.Cid, r.Mid, online, r.Key, r.IP, action)
  64. req, err := http.NewRequest("POST", _apiReport, strings.NewReader(lines))
  65. if err != nil {
  66. return
  67. }
  68. resp, err := httpCli.Do(req)
  69. if err != nil {
  70. return
  71. }
  72. defer resp.Body.Close()
  73. b, err := ioutil.ReadAll(resp.Body)
  74. if err != nil {
  75. return
  76. }
  77. if resp.StatusCode != http.StatusOK {
  78. log.Error("report: httpCli.POST(%s) error(%d)", lines, resp.StatusCode)
  79. return
  80. }
  81. if !bytes.Equal(b, _reportSucc) && !bytes.Equal(b, _reportOK) {
  82. log.Error("report error(%s)", b)
  83. return
  84. }
  85. if r.Mid == 19158909 {
  86. log.Info("report: line(%s)", lines)
  87. }
  88. }