http.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package http
  2. import (
  3. "time"
  4. "go-common/app/interface/main/report-click/conf"
  5. "go-common/app/interface/main/report-click/service"
  6. "go-common/library/log"
  7. "go-common/library/log/infoc"
  8. bm "go-common/library/net/http/blademaster"
  9. "go-common/library/net/http/blademaster/middleware/auth"
  10. "go-common/library/net/http/blademaster/middleware/verify"
  11. )
  12. var (
  13. clickSvr *service.Service
  14. authSvc *auth.Auth
  15. verifySvc *verify.Verify
  16. infocRealTime *infoc.Infoc
  17. infocStatistics *infoc.Infoc
  18. fromMap = make(map[int64]bool)
  19. fromInlineMap = make(map[int64]bool)
  20. inlineDuration int64
  21. )
  22. // New http init.
  23. func New(c *conf.Config) (engine *bm.Engine) {
  24. clickSvr = service.New(c)
  25. authSvc = auth.New(c.Auth)
  26. verifySvc = verify.New(c.Verify)
  27. infocRealTime = infoc.New(c.Infoc2.RealTime)
  28. infocStatistics = infoc.New(c.Infoc2.Statistics)
  29. for _, v := range c.Click.From {
  30. fromMap[v] = true
  31. }
  32. for _, v := range c.Click.FromInline { // init inline play "from"
  33. fromInlineMap[v] = true
  34. }
  35. inlineDuration = c.Click.InlineDuration // inline play duration line
  36. engine = bm.DefaultServer(c.BM)
  37. engine.Use(bm.Recovery(), bm.Logger())
  38. outerRouter(engine)
  39. if err := engine.Start(); err != nil {
  40. log.Error("engine.Start() error(%v)", err)
  41. panic(err)
  42. }
  43. return
  44. }
  45. func outerRouter(e *bm.Engine) {
  46. e.GET("/monitor/ping", ping)
  47. e.POST("/x/report/click/web", authSvc.GuestWeb, webClick)
  48. e.POST("/x/report/click/outer", authSvc.GuestWeb, outerClick)
  49. e.POST("/x/stat/web", authSvc.GuestWeb, webClick)
  50. e.POST("/x/stat/outer", authSvc.GuestWeb, outerClick)
  51. click := e.Group("/x/report/click")
  52. {
  53. click.GET("/now", serverNow)
  54. click.POST("/h5", authSvc.Guest, h5Click)
  55. click.POST("/h5/outer", authSvc.Guest, outerClickH5) // nocsrf
  56. click.POST("/ios", authSvc.Guest, iosClick)
  57. click.POST("/android", authSvc.Guest, androidClick)
  58. click.POST("/android2", authSvc.Guest, android2Click)
  59. click.POST("/web/h5", authSvc.Guest, webH5Click)
  60. click.POST("/android/tv", authSvc.Guest, androidTV)
  61. }
  62. report := e.Group("/x/report/")
  63. {
  64. report.POST("/player", verifySvc.Verify, reportPlayer) // old 30s heart
  65. report.POST("/heartbeat", verifySvc.Verify, reportHeartbeat) // new app 30s heart
  66. report.POST("/heartbeat/mobile", verifySvc.Verify, heartbeatMobile)
  67. report.POST("/web/heartbeat", authSvc.Guest, webHeartbeat) // web 30s heart
  68. }
  69. stat := e.Group("/x/stat")
  70. {
  71. stat.GET("/now", serverNow)
  72. stat.POST("/err_report", errReport)
  73. stat.POST("/h5", authSvc.Guest, h5Click)
  74. stat.POST("/ios", authSvc.Guest, iosClick)
  75. stat.POST("/android", authSvc.Guest, androidClick)
  76. stat.POST("/android2", authSvc.Guest, android2Click)
  77. }
  78. }
  79. func ping(c *bm.Context) {}
  80. func serverNow(c *bm.Context) {
  81. data := map[string]int64{"now": time.Now().Unix()}
  82. c.JSON(data, nil)
  83. }