http.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. package http
  2. import (
  3. "net/http"
  4. "go-common/app/interface/main/account/conf"
  5. "go-common/app/interface/main/account/service/card"
  6. "go-common/app/interface/main/account/service/coupon"
  7. "go-common/app/interface/main/account/service/geetest"
  8. "go-common/app/interface/main/account/service/member"
  9. "go-common/app/interface/main/account/service/passport"
  10. "go-common/app/interface/main/account/service/point"
  11. "go-common/app/interface/main/account/service/realname"
  12. rls "go-common/app/interface/main/account/service/relation"
  13. us "go-common/app/interface/main/account/service/usersuit"
  14. "go-common/app/interface/main/account/service/vip"
  15. vipverify "go-common/app/service/main/vip/verify"
  16. "go-common/library/log"
  17. bm "go-common/library/net/http/blademaster"
  18. "go-common/library/net/http/blademaster/middleware/antispam"
  19. "go-common/library/net/http/blademaster/middleware/auth"
  20. "go-common/library/net/http/blademaster/middleware/supervisor"
  21. v "go-common/library/net/http/blademaster/middleware/verify"
  22. )
  23. var (
  24. relationSvc *rls.Service
  25. memberSvc *member.Service
  26. passSvc *passport.Service
  27. vipSvc *vip.Service
  28. realnameSvc *realname.Service
  29. usSvc *us.Service
  30. couponSvc *coupon.Service
  31. pointSvc *point.Service
  32. cardSvc *card.Service
  33. geetestSvr *geetest.Service
  34. // api middleware
  35. authn *auth.Auth
  36. verify *v.Verify
  37. anti *antispam.Antispam
  38. batchRelAnti *antispam.Antispam
  39. smsAnti *antispam.Antispam
  40. faceAnti *antispam.Antispam
  41. vipAnti *antispam.Antispam
  42. spv *supervisor.Supervisor
  43. // vip third verify
  44. vipThirdVerify *vipverify.Verify
  45. )
  46. // Init init http sever instance.
  47. func Init(c *conf.Config) {
  48. // service
  49. initService(c)
  50. vipThirdVerify = vipverify.NewThirdVerify(c.VipThirdVerifyConfig)
  51. // init outer router
  52. // innerEngine := bm.DefaultServer(c.BM.Inner)
  53. innerEngine := bm.NewServer(c.BM.Inner)
  54. innerEngine.Use(bm.Recovery(), bm.Trace(), bm.Logger(), bm.Mobile())
  55. setupInnerEngine(innerEngine)
  56. if err := innerEngine.Start(); err != nil {
  57. log.Error("innerEngine.Start() error(%v)", err)
  58. panic(err)
  59. }
  60. }
  61. func setupInnerEngine(e *bm.Engine) {
  62. e.Ping(ping)
  63. e.Register(register)
  64. // member
  65. mr := e.Group("/x/member", bm.CSRF())
  66. mr.GET("/notice", authn.User, notice)
  67. mr.POST("/notice/close", authn.User, closeNotice)
  68. sec := mr.Group("/security", authn.User)
  69. sec.GET("/status", status)
  70. sec.POST("/feedback", feedback)
  71. sec.POST("/close", closeNotify)
  72. app := mr.Group("/app", authn.UserMobile)
  73. app.GET("/nickfree", nickFree)
  74. app.POST("/uname/update", spv.ServeHTTP, updateUname)
  75. app.POST("/sign/update", spv.ServeHTTP, updateSign)
  76. app.POST("/sex/update", updateSex)
  77. app.POST("/birthday/update", updateBirthday)
  78. app.POST("/face/update", spv.ServeHTTP, faceAnti.ServeHTTP, updateFace)
  79. app.POST("/pendant/equip", pendantEquip)
  80. app.GET("/point/flag", pointFlagMobile)
  81. web := mr.Group("/web", authn.User)
  82. web.POST("/update", spv.ServeHTTP, update)
  83. web.POST("/face/update", spv.ServeHTTP, faceAnti.ServeHTTP, updateFace)
  84. web.POST("/sign/update", spv.ServeHTTP, updateSign)
  85. web.POST("/uname/update", spv.ServeHTTP, updateUname)
  86. web.GET("/account", account)
  87. web.GET("/reply/list", replyHistoryList)
  88. web.GET("/coin/log", logCoin)
  89. web.GET("/moral/log", logMoral)
  90. web.GET("/exp/log", logExp)
  91. web.GET("/exp/reward", reward)
  92. web.GET("/login/log", logLogin)
  93. web.GET("/coin", coin)
  94. web.POST("/birthday/update", updateBirthday)
  95. web.POST("/pendant/equip", pendantEquip)
  96. web.GET("/point/flag", pointFlag)
  97. sudo := mr.Group("/sudo", sudo)
  98. sudo.POST("/notify-purge-cache", notityPurgeCache)
  99. // captcha 验证码
  100. cap := mr.Group("/captcha", authn.UserWeb)
  101. cap.GET("/geetest", getChallenge) //获取极验图形验证
  102. cap.POST("/geetest/check", geetestValidate) //校验极验验证码
  103. // vip
  104. vip := e.Group("/x/vip", bm.CSRF())
  105. vip.GET("/code/verify", authn.User, codeVerify)
  106. vip.POST("/code/open", authn.User, codeOpen)
  107. vip.GET("/tips", authn.User, tips)
  108. vip.GET("/price/panel", authn.User, vipAnti.ServeHTTP, vipPanel)
  109. vip.GET("/coupon/list", authn.User, vipAnti.ServeHTTP, couponList)
  110. vip.GET("/coupon/usable", authn.User, vipAnti.ServeHTTP, couponUsable)
  111. vip.POST("/coupon/unlock", authn.User, vipAnti.ServeHTTP, couponUnlock)
  112. vip.GET("/privilege/bysid", vipAnti.ServeHTTP, privilegeBySid)
  113. vip.GET("/privilege/bytype", vipAnti.ServeHTTP, privilegeByType)
  114. vip.GET("/manager", authn.User, vipAnti.ServeHTTP, vipManagerInfo)
  115. vip.POST("/unfreeze", authn.UserWeb, vipAnti.ServeHTTP, unfrozen)
  116. vip.GET("/frozenTime", authn.UserWeb, vipAnti.ServeHTTP, frozenTime)
  117. vip.GET("/code/openeds", vipAnti.ServeHTTP, codeOpeneds)
  118. vip.GET("/public/panel", authn.Guest, vipAnti.ServeHTTP, publicPriceList)
  119. vip.POST("/batch/use", vipAnti.ServeHTTP, useBatch)
  120. vip.GET("/order/status", authn.UserWeb, orderStatus)
  121. vip.GET("/price/panel/v8", authn.Guest, vipAnti.ServeHTTP, vipPanelV8)
  122. vip.GET("/prize/cards", authn.UserWeb, vipAnti.ServeHTTP, prizeCards)
  123. vip.POST("/prize/draw", authn.UserWeb, vipAnti.ServeHTTP, prizeDraw)
  124. vip.GET("/resource/banner", authn.UserMobile, vipAnti.ServeHTTP, resourceBanner) // 大会员落地页
  125. vip.GET("/resource/buy", authn.UserMobile, vipAnti.ServeHTTP, resourceBuy) // 大会员购买页
  126. vip.GET("/coupon/usable/v2", authn.Guest, vipAnti.ServeHTTP, couponBySuitIDV2)
  127. vip.GET("/price/panel/v9", authn.Guest, vipAnti.ServeHTTP, vipPanelV9)
  128. // associate
  129. vip.GET("/associate/info", authn.User, bindInfoByMid)
  130. vip.GET("/associate/panel", authn.User, actlimit, associatePanel)
  131. vip.POST("/associate/create/order", authn.User, actlimit, createAssociateOrder)
  132. vip.GET("/associate/ele/oauth", authn.User, actlimit, eleOAuthURL)
  133. vip.GET("/associate/ele/redpackets", redpackets)
  134. vip.GET("/associate/ele/specailfoods", specailfoods)
  135. //vip welfare
  136. vip.GET("/welfare/list", authn.Guest, welfareList)
  137. vip.GET("/welfare/type", authn.Guest, welfareTypeList)
  138. vip.GET("/welfare/info", authn.Guest, welfareInfo)
  139. vip.POST("/welfare", authn.User, vipAnti.ServeHTTP, receiveWelfare)
  140. vip.GET("/welfare/my", authn.User, myWelfare)
  141. // vip third verify.
  142. // ele oauth callback.
  143. e.GET("/x/oauth2/v1/callback", authn.User, actlimit, openAuthCallBack)
  144. // bilibili third.
  145. oauth2 := e.Group("/x/oauth2/v1", iplimit, vipThirdVerify.Verify, bm.CSRF())
  146. oauth2.POST("/access_token", openIDByOAuth2Code)
  147. // bilibili third vip.
  148. vipThird := oauth2.Group("/vip", iplimit, openlimit)
  149. vipThird.POST("/bind", openBindByOutOpenID)
  150. vipThird.GET("/account", userInfoByOpenID)
  151. vipThird.POST("/delivery", bilibiliVipGrant)
  152. vipThird.POST("/prize/grant", bilibiliPrizeGrant)
  153. // vip app api
  154. vip.GET("/v1/order/status", authn.UserMobile, orderStatus)
  155. vip.GET("/v1/frozenTime", authn.UserMobile, vipAnti.ServeHTTP, frozenTime)
  156. vip.POST("/v1/unfrozen", authn.UserMobile, vipAnti.ServeHTTP, unfrozen)
  157. vip.GET("/v2/tips", authn.User, tipsv2)
  158. vip.GET("/v2/price/panel", authn.Guest, vipAnti.ServeHTTP, vipPanelV2)
  159. invite := mr.Group("/invite", authn.UserWeb)
  160. invite.GET("/stat", inviteStat)
  161. invite.POST("/buy", buy)
  162. invite.POST("/apply", apply)
  163. // medal 勋章
  164. medal := mr.Group("/medal")
  165. // medal.GET("/user/info", authn.User, medalHomeInfo)
  166. medal.GET("/user/info", authn.User, medalUserInfo)
  167. medal.POST("/install", authn.User, medalInstall)
  168. medal.GET("/popup", authn.User, medalPopup)
  169. medal.GET("/my/info", authn.User, medalMyInfo)
  170. medal.GET("/all/info", authn.User, medalAllInfo)
  171. official := mr.Group("/official", bm.CSRF(), authn.User)
  172. official.POST("/submit", submitOffical)
  173. official.GET("/doc", officialDoc)
  174. official.GET("/conditions", officialConditions)
  175. official.POST("/upload/image", uploadImage)
  176. official.POST("/mobile/verify", smsAnti.ServeHTTP, mobileVerify)
  177. official.GET("/permission", officialPermission)
  178. official.GET("/auto/fill/doc", officialAutoFillDoc)
  179. official.GET("/monthly/times", monthlyOfficialSubmittedTimes)
  180. identifyG := mr.Group("/identify", authn.UserWeb)
  181. identifyG.GET("/info", identifyInfo)
  182. // realname
  183. realnameG := mr.Group("/realname", authn.User)
  184. realnameG.GET("/channel", realnameChannel)
  185. realnameG.GET("/status", realnameStatus)
  186. realnameG.GET("/apply/status", realnameApplyStatus)
  187. realnameG.POST("/apply", realnameApply)
  188. realnameG.POST("/upload", realnameUpload)
  189. realnameG.GET("/preview", realnamePreview)
  190. realnameG.GET("/countrylist", realnameCountryList)
  191. realnameG.GET("/card/types", realnameCardTypes)
  192. realnameG.GET("/v2/card/types", realnameCardTypesV2)
  193. realnameG.POST("/tel/capture", realnameTelCapture)
  194. realnameG.GET("/tel/info", realnameTelInfo)
  195. realnameG.GET("/captcha", realnameCaptcha)
  196. realnameG.GET("/captcha/refresh", realnameCaptchaRefresh)
  197. realnameG.GET("/captcha/confirm", realnameCaptchaConfirm)
  198. realnameG.POST("/alipay/apply", realnameAlipayApply)
  199. realnameG.GET("/alipay/confirm", realnameAlipayConfirm)
  200. // passport
  201. passportR := mr.Group("/passport", authn.User)
  202. passportR.GET("/testUserName", testUserName)
  203. // member v2
  204. memberV2 := e.Group("x/member/v2", bm.CSRF())
  205. memberV2.GET("/notice", authn.UserMobile, noticeV2)
  206. memberV2.POST("/notice/close", authn.UserMobile, closeNoticeV2)
  207. // relation
  208. relationG := e.Group("/x/relation", bm.CSRF())
  209. relationG.GET("", authn.User, relation)
  210. relationG.GET("/relations", authn.User, relations)
  211. relationG.GET("/blacks", authn.User, blacks)
  212. relationG.GET("/whispers", authn.User, whispers)
  213. relationG.GET("/friends", authn.User, friends)
  214. relationG.POST("/modify", authn.User, anti.ServeHTTP, modify)
  215. relationG.POST("/batch/modify", authn.User, batchRelAnti.ServeHTTP, batchModify)
  216. relationG.GET("/followings", authn.Guest, followings)
  217. relationG.GET("/same/followings", authn.User, sameFollowings)
  218. relationG.GET("/followers", authn.Guest, followers)
  219. relationG.GET("/stat", authn.Guest, stat)
  220. relationG.GET("/stats", authn.Guest, stats)
  221. relationG.GET("/recommend", authn.User, recommend)
  222. relationG.GET("/recommend/followlist_empty", authn.User, bm.Mobile(), recommendFollowlistEmpty)
  223. relationG.GET("/recommend/answer_ok", authn.User, bm.Mobile(), recommendAnswerOK)
  224. relationG.GET("/recommend/tag_suggest", authn.User, bm.Mobile(), recommendTagSuggest)
  225. relationG.GET("/recommend/tag_suggest/detail", authn.User, bm.Mobile(), recommendTagSuggestDetail)
  226. // relation tag
  227. relationG.GET("/tag", authn.User, tag)
  228. relationG.GET("/tags", authn.User, tags)
  229. relationG.POST("/tag/special/add", authn.User, addSpecial)
  230. relationG.POST("/tag/special/del", authn.User, delSpecial)
  231. relationG.GET("/tag/special", authn.User, special)
  232. relationG.GET("/tag/user", authn.User, tagUser)
  233. relationG.POST("/tag/create", authn.User, tagCreate)
  234. relationG.POST("/tag/update", authn.User, tagUpdate)
  235. relationG.POST("/tag/del", authn.User, tagDel)
  236. relationG.POST("/tags/addUsers", authn.User, tagsAddUsers)
  237. relationG.POST("/tags/copyUsers", authn.User, tagsCopyUsers)
  238. relationG.POST("/tags/moveUsers", authn.User, tagsMoveUsers)
  239. // for mobile.
  240. relationG.GET("/tag/m/tags", authn.User, mobileTags)
  241. // 提示用户关注该up主
  242. relationG.POST("/prompt", authn.User, prompt)
  243. relationG.POST("/prompt/close", authn.User, closePrompt)
  244. // 粉丝提醒功能
  245. relationG.GET("/followers/unread", authn.User, unread)
  246. relationG.POST("/followers/unread/reset", authn.User, unreadReset)
  247. relationG.GET("/followers/unread/count", authn.User, unreadCount)
  248. relationG.POST("/followers/unread/count/reset", authn.User, unreadCountReset)
  249. relationG.GET("/followers/notify", authn.User, followerNotifySetting)
  250. relationG.POST("/followers/notify/enable", authn.User, enableFollowerNotify)
  251. relationG.POST("/followers/notify/disable", authn.User, disableFollowerNotify)
  252. // achieve
  253. relationG.POST("/achieve/award/get", authn.User, achieveGet)
  254. relationG.GET("/achieve/award", authn.Guest, achieve)
  255. // pendant group
  256. pendant := e.Group("/x/pendant", bm.CSRF())
  257. // pendant with web
  258. pendant.GET("/current", authn.UserWeb, pendantCurrent)
  259. pendant.GET("/all", authn.UserWeb, pendantAll)
  260. pendant.GET("/my", authn.UserWeb, pendantMy)
  261. pendant.GET("/myHistory", authn.UserWeb, pendantMyHistory)
  262. pendant.GET("/bigEntry", authn.UserWeb, pendantEntry)
  263. pendant.GET("/vipRecommend", authn.UserWeb, pendantVIP)
  264. pendant.POST("/checkOrder", authn.UserWeb, pendantCheckOrder)
  265. pendant.POST("/vipGet", authn.UserWeb, pendantVIPGet)
  266. pendant.POST("/order", authn.UserWeb, pendantOrder)
  267. // pendant with app
  268. pendant.GET("/pointEntry", authn.UserMobile, pendantEntry)
  269. // pendent with vri
  270. pendant.GET("/single", verify.Verify, pendantSingle)
  271. coupon := e.Group("/x/coupon", bm.CSRF(), authn.User)
  272. coupon.GET("/allowance/list", allowanceList)
  273. coupon.GET("/list", couponPage)
  274. coupon.GET("/code/verify", captchaToken)
  275. coupon.POST("/code/exchange", useCouponCode)
  276. point := e.Group("/x/point", bm.CSRF(), authn.User)
  277. point.GET("/info", pointInfo)
  278. point.GET("/history", pointPage)
  279. card := e.Group("/x/card", bm.CSRF())
  280. card.GET("/bymid", authn.User, userCard)
  281. card.GET("/info", cardInfo)
  282. card.GET("/hots", cardHots)
  283. card.GET("/groups", authn.Guest, cardGroups)
  284. card.GET("/bytype", cardsByGid)
  285. card.POST("/equip", authn.User, equip)
  286. card.POST("/demount", authn.User, demount)
  287. }
  288. // ping check server ok.
  289. func ping(c *bm.Context) {
  290. var err error
  291. if err = memberSvc.Ping(c); err != nil {
  292. c.JSON(nil, err)
  293. log.Error("service ping error(%v)", err)
  294. c.Writer.WriteHeader(http.StatusServiceUnavailable)
  295. }
  296. }
  297. func register(ctx *bm.Context) {
  298. ctx.JSON(nil, nil)
  299. }
  300. func initService(c *conf.Config) {
  301. relationSvc = rls.New(c)
  302. memberSvc = member.New(c)
  303. realnameSvc = realname.New(c, conf.RsaPub(), conf.RsaPriv(), conf.AlipayPub(), conf.AlipayBiliPriv())
  304. passSvc = passport.New(c)
  305. cardSvc = card.New(c)
  306. vipSvc = vip.New(c)
  307. usSvc = us.New(c)
  308. geetestSvr = geetest.New(c)
  309. // api middleware
  310. authn = auth.New(c.AuthN)
  311. verify = v.New(c.Verify)
  312. anti = antispam.New(c.Antispam)
  313. batchRelAnti = antispam.New(c.BatchRelAntispam)
  314. smsAnti = antispam.New(c.SMSAntispam)
  315. faceAnti = antispam.New(c.FaceAntispam)
  316. vipAnti = antispam.New(c.VIPAntispam)
  317. spv = supervisor.New(c.Supervisor)
  318. couponSvc = coupon.New(c)
  319. pointSvc = point.New(c)
  320. }