http.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package http
  2. import (
  3. "go-common/app/interface/main/app-interface/conf"
  4. acc "go-common/app/interface/main/app-interface/service/account"
  5. "go-common/app/interface/main/app-interface/service/dataflow"
  6. "go-common/app/interface/main/app-interface/service/display"
  7. "go-common/app/interface/main/app-interface/service/favorite"
  8. "go-common/app/interface/main/app-interface/service/history"
  9. "go-common/app/interface/main/app-interface/service/relation"
  10. "go-common/app/interface/main/app-interface/service/search"
  11. "go-common/app/interface/main/app-interface/service/space"
  12. "go-common/library/log"
  13. bm "go-common/library/net/http/blademaster"
  14. "go-common/library/net/http/blademaster/middleware/auth"
  15. "go-common/library/net/http/blademaster/middleware/proxy"
  16. "go-common/library/net/http/blademaster/middleware/verify"
  17. "go-common/library/queue/databus"
  18. )
  19. var (
  20. verifySvc *verify.Verify
  21. authSvc *auth.Auth
  22. spaceSvr *space.Service
  23. srcSvr *search.Service
  24. displaySvr *display.Service
  25. favSvr *favorite.Service
  26. accSvr *acc.Service
  27. relSvr *relation.Service
  28. historySvr *history.Service
  29. dataflowSvr *dataflow.Service
  30. // databus
  31. userActPub *databus.Databus
  32. config *conf.Config
  33. )
  34. // Init init http
  35. func Init(c *conf.Config) {
  36. initService(c)
  37. // init external router
  38. engineOut := bm.DefaultServer(c.BM.Outer)
  39. // init outer router
  40. outerRouter(engineOut)
  41. if err := engineOut.Start(); err != nil {
  42. log.Error("engineOut.Start() error(%v) | config(%v)", err, c)
  43. panic(err)
  44. }
  45. }
  46. func initService(c *conf.Config) {
  47. verifySvc = verify.New(nil)
  48. authSvc = auth.New(nil)
  49. spaceSvr = space.New(c)
  50. srcSvr = search.New(c)
  51. displaySvr = display.New(c)
  52. favSvr = favorite.New(c)
  53. accSvr = acc.New(c)
  54. relSvr = relation.New(c)
  55. historySvr = history.New(c)
  56. dataflowSvr = dataflow.New(c)
  57. userActPub = databus.New(c.UseractPub)
  58. config = c
  59. }
  60. func outerRouter(e *bm.Engine) {
  61. e.Ping(ping)
  62. proxyHandler := proxy.NewZoneProxy("sh004", "http://sh001-app.bilibili.com")
  63. account := e.Group("/x/v2/account", verifySvc.Verify)
  64. account.GET("/myinfo", myinfo)
  65. account.GET("/mine", authSvc.GuestMobile, mine)
  66. account.GET("/mine/ipad", authSvc.GuestMobile, mineIpad)
  67. space := e.Group("/x/v2/space")
  68. space.GET("", authSvc.GuestMobile, spaceAll)
  69. space.GET("/archive", authSvc.GuestMobile, upArchive)
  70. space.GET("/article", authSvc.GuestMobile, upArticle)
  71. space.GET("/bangumi", authSvc.GuestMobile, bangumi)
  72. space.GET("/coinarc", authSvc.GuestMobile, coinArc)
  73. space.GET("/likearc", authSvc.GuestMobile, likeArc)
  74. space.GET("/community", authSvc.GuestMobile, community)
  75. space.GET("/contribute", proxyHandler, authSvc.GuestMobile, contribute)
  76. space.GET("/contribute/cursor", proxyHandler, authSvc.GuestMobile, contribution)
  77. space.GET("/clips", authSvc.GuestMobile, clips)
  78. space.GET("/albums", authSvc.GuestMobile, albums)
  79. space.POST("/report", verifySvc.Verify, report)
  80. space.POST("/upContribute", proxyHandler, verifySvc.Verify, upContribute)
  81. search := e.Group("/x/v2/search")
  82. search.GET("", authSvc.GuestMobile, searchAll)
  83. search.GET("/type", authSvc.GuestMobile, searchByType)
  84. search.GET("/episodes", authSvc.GuestMobile, searchEpisodes)
  85. search.GET("/live", authSvc.GuestMobile, searchLive)
  86. search.GET("/hot", authSvc.GuestMobile, hotSearch)
  87. search.GET("/suggest", authSvc.GuestMobile, suggest)
  88. search.GET("/suggest2", authSvc.GuestMobile, suggest2)
  89. search.GET("/suggest3", authSvc.GuestMobile, suggest3)
  90. search.GET("/defaultwords", authSvc.GuestMobile, defaultWords)
  91. search.GET("/user", authSvc.GuestMobile, searchUser)
  92. search.GET("/recommend", authSvc.GuestMobile, recommend)
  93. search.GET("/recommend/noresult", authSvc.GuestMobile, recommendNoResult)
  94. search.GET("/recommend/pre", authSvc.GuestMobile, recommendPre)
  95. search.GET("/resource", authSvc.GuestMobile, resource)
  96. display := e.Group("/x/v2/display", verifySvc.Verify)
  97. display.GET("/zone", zone)
  98. display.GET("/id", authSvc.GuestMobile, displayID)
  99. favorite := e.Group("/x/v2/favorite", verifySvc.Verify)
  100. favorite.GET("", authSvc.GuestMobile, folder)
  101. favorite.GET("/video", authSvc.GuestMobile, favoriteVideo)
  102. favorite.GET("/topic", authSvc.GuestMobile, topic)
  103. favorite.GET("/article", authSvc.GuestMobile, article)
  104. favorite.GET("/clips", authSvc.GuestMobile, favClips)
  105. favorite.GET("/albums", authSvc.GuestMobile, favAlbums)
  106. favorite.GET("/sp", specil)
  107. favorite.GET("/audio", authSvc.GuestMobile, audio)
  108. favorite.GET("/tab", authSvc.UserMobile, tab)
  109. relation := e.Group("/x/v2/relation")
  110. relation.GET("/followings", authSvc.GuestMobile, followings)
  111. relation.GET("/tag", authSvc.UserMobile, tag)
  112. history := e.Group("/x/v2/history", verifySvc.Verify)
  113. history.GET("", authSvc.UserMobile, historyList)
  114. history.GET("/live", live)
  115. history.GET("/liveList", authSvc.UserMobile, liveList)
  116. history.GET("/cursor", authSvc.UserMobile, historyCursor)
  117. history.POST("/del", authSvc.UserMobile, historyDel)
  118. history.POST("/clear", authSvc.UserMobile, historyClear)
  119. dataflow := e.Group("/x/v2/dataflow")
  120. dataflow.POST("/report", reportInfoc)
  121. }