http.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. package http
  2. import (
  3. "net/http"
  4. "go-common/app/interface/main/app-wall/conf"
  5. "go-common/app/interface/main/app-wall/service/mobile"
  6. "go-common/app/interface/main/app-wall/service/offer"
  7. "go-common/app/interface/main/app-wall/service/operator"
  8. pingSvr "go-common/app/interface/main/app-wall/service/ping"
  9. "go-common/app/interface/main/app-wall/service/telecom"
  10. "go-common/app/interface/main/app-wall/service/unicom"
  11. "go-common/app/interface/main/app-wall/service/wall"
  12. "go-common/library/ecode"
  13. log "go-common/library/log"
  14. bm "go-common/library/net/http/blademaster"
  15. "go-common/library/net/http/blademaster/middleware/auth"
  16. "go-common/library/net/http/blademaster/middleware/proxy"
  17. "go-common/library/net/http/blademaster/middleware/verify"
  18. "go-common/library/net/http/blademaster/render"
  19. )
  20. var (
  21. // depend service
  22. verifySvc *verify.Verify
  23. authSvc *auth.Auth
  24. // self service
  25. wallSvc *wall.Service
  26. offerSvc *offer.Service
  27. unicomSvc *unicom.Service
  28. mobileSvc *mobile.Service
  29. pingSvc *pingSvr.Service
  30. telecomSvc *telecom.Service
  31. operatorSvc *operator.Service
  32. )
  33. func Init(c *conf.Config) {
  34. initService(c)
  35. // init external router
  36. engineOut := bm.DefaultServer(c.BM.Outer)
  37. outerRouter(engineOut)
  38. // init Outer server
  39. if err := engineOut.Start(); err != nil {
  40. log.Error("engineOut.Start() error(%v)", err)
  41. panic(err)
  42. }
  43. }
  44. // initService init services.
  45. func initService(c *conf.Config) {
  46. verifySvc = verify.New(nil)
  47. authSvc = auth.New(&auth.Config{DisableCSRF: true})
  48. // init self service
  49. wallSvc = wall.New(c)
  50. offerSvc = offer.New(c)
  51. unicomSvc = unicom.New(c)
  52. mobileSvc = mobile.New(c)
  53. pingSvc = pingSvr.New(c)
  54. telecomSvc = telecom.New(c)
  55. operatorSvc = operator.New(c)
  56. }
  57. func outerRouter(e *bm.Engine) {
  58. e.Ping(ping)
  59. // formal api
  60. proxyHandler := proxy.NewZoneProxy("sh004", "http://sh001-app.bilibili.com")
  61. w := e.Group("/x/wall")
  62. {
  63. w.GET("/get", walls)
  64. op := w.Group("/operator", authSvc.Guest)
  65. {
  66. op.GET("/ip", userOperatorIP)
  67. op.GET("/m/ip", mOperatorIP)
  68. op.GET("/reddot", reddot)
  69. }
  70. of := w.Group("/offer")
  71. {
  72. of.GET("/exist", wallExist)
  73. of.POST("/click/shike", proxyHandler, wallShikeClick)
  74. of.GET("/click/dotinapp", wallDotinappClick)
  75. of.GET("/click/gdt", wallGdtClick)
  76. of.GET("/click/toutiao", wallToutiaoClick)
  77. of.POST("/active", proxyHandler, verifySvc.Verify, wallActive)
  78. of.GET("/active/test", wallTestActive)
  79. of.POST("/active2", proxyHandler, verifySvc.Verify, wallActive2)
  80. }
  81. uc := w.Group("/unicom", proxyHandler)
  82. {
  83. // unicomSync
  84. uc.POST("/orders", ordersSync)
  85. uc.POST("/advance", advanceSync)
  86. uc.POST("/flow", flowSync)
  87. uc.POST("/ip", inIPSync)
  88. // unicom
  89. uc.GET("/userflow", verifySvc.Verify, userFlow)
  90. uc.GET("/user/userflow", bm.CORS(), userFlowState)
  91. uc.GET("/userstate", verifySvc.Verify, userState)
  92. uc.GET("/state", verifySvc.Verify, unicomState)
  93. uc.GET("/m/state", unicomStateM)
  94. uc.POST("/pack", authSvc.User, bm.CORS(), pack)
  95. uc.GET("/userip", bm.CORS(), isUnciomIP)
  96. uc.GET("/user/ip", bm.CORS(), userUnciomIP)
  97. uc.POST("/order/pay", bm.CORS(), orderPay)
  98. uc.POST("/order/cancel", bm.CORS(), orderCancel)
  99. uc.POST("/order/smscode", authSvc.Guest, bm.CORS(), smsCode)
  100. uc.POST("/order/bind", authSvc.Guest, bm.CORS(), addUnicomBind)
  101. uc.POST("/order/untie", authSvc.Guest, bm.CORS(), releaseUnicomBind)
  102. uc.GET("/bind/info", authSvc.Guest, bm.CORS(), userBind)
  103. uc.GET("/pack/list", authSvc.Guest, bm.CORS(), packList)
  104. uc.POST("/order/pack/receive", authSvc.Guest, bm.CORS(), packReceive)
  105. uc.POST("/order/pack/flow", authSvc.Guest, bm.CORS(), flowPack)
  106. uc.GET("/order/userlog", authSvc.User, bm.CORS(), userBindLog)
  107. uc.GET("/pack/log", userPacksLog)
  108. uc.GET("/bind/state", verifySvc.Verify, welfareBindState)
  109. }
  110. mb := w.Group("/mobile", proxyHandler)
  111. {
  112. mb.POST("/orders.so", ordersMobileSync)
  113. mb.GET("/activation", verifySvc.Verify, mobileActivation)
  114. mb.GET("/status", verifySvc.Verify, mobileState)
  115. mb.GET("/user/status", bm.CORS(), userMobileState)
  116. }
  117. tl := w.Group("/telecom", proxyHandler)
  118. {
  119. tl.POST("/orders.so", bm.CORS(), telecomOrdersSync)
  120. tl.POST("/flow.so", bm.CORS(), telecomMsgSync)
  121. tl.POST("/order/pay", bm.CORS(), telecomPay)
  122. tl.POST("/order/pay/cancel", bm.CORS(), cancelRepeatOrder)
  123. tl.GET("/order/consent", verifySvc.Verify, orderConsent)
  124. tl.GET("/order/list", verifySvc.Verify, orderList)
  125. tl.GET("/order/user/flow", bm.CORS(), phoneFlow)
  126. tl.POST("/send/sms", verifySvc.Verify, phoneSendSMS)
  127. tl.GET("/verification", verifySvc.Verify, phoneVerification)
  128. tl.GET("/order/state", bm.CORS(), orderState)
  129. }
  130. }
  131. }
  132. //returnDataJSON return json no message
  133. func returnDataJSON(c *bm.Context, data map[string]interface{}, err error) {
  134. code := http.StatusOK
  135. if data == nil {
  136. c.JSON(data, err)
  137. return
  138. }
  139. if _, ok := data["message"]; !ok {
  140. data["message"] = ""
  141. }
  142. if err != nil {
  143. c.Error = err
  144. bcode := ecode.Cause(err)
  145. data["code"] = bcode.Code()
  146. } else {
  147. if _, ok := data["code"]; !ok {
  148. data["code"] = ecode.OK
  149. }
  150. data["ttl"] = 1
  151. }
  152. c.Render(code, render.MapJSON(data))
  153. }