vip_third.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package http
  2. import (
  3. "net/http"
  4. "go-common/app/interface/main/account/model"
  5. idtv1 "go-common/app/service/main/identify/api/grpc"
  6. vipmol "go-common/app/service/main/vip/model"
  7. "go-common/library/ecode"
  8. bm "go-common/library/net/http/blademaster"
  9. "go-common/library/net/http/blademaster/middleware/auth"
  10. "go-common/library/net/metadata"
  11. )
  12. //
  13. // vip 第三方[ele]接入gateway
  14. //
  15. // openID
  16. func openIDByOAuth2Code(c *bm.Context) {
  17. var err error
  18. a := new(model.ArgAuthCode)
  19. if err = c.Bind(a); err != nil {
  20. return
  21. }
  22. a.IP = metadata.String(c, metadata.RemoteIP)
  23. a.APPID = vipmol.EleAppID
  24. c.JSON(vipSvc.OpenIDByAuthCode(c, a))
  25. }
  26. func openBindByOutOpenID(c *bm.Context) {
  27. var err error
  28. a := new(model.ArgBind)
  29. if err = c.Bind(a); err != nil {
  30. return
  31. }
  32. a.AppID = vipmol.EleAppID
  33. c.JSON(nil, vipSvc.OpenBindByOutOpenID(c, a))
  34. }
  35. func userInfoByOpenID(c *bm.Context) {
  36. var err error
  37. a := new(model.ArgUserInfoByOpenID)
  38. if err = c.Bind(a); err != nil {
  39. return
  40. }
  41. a.AppID = vipmol.EleAppID
  42. c.JSON(vipSvc.UserInfoByOpenID(c, a))
  43. }
  44. func bilibiliVipGrant(c *bm.Context) {
  45. var err error
  46. a := new(model.ArgBilibiliVipGrant)
  47. if err = c.Bind(a); err != nil {
  48. return
  49. }
  50. a.AppID = vipmol.EleAppID
  51. c.JSON(nil, vipSvc.BilibiliVipGrant(c, a))
  52. }
  53. func bilibiliPrizeGrant(c *bm.Context) {
  54. var err error
  55. a := new(model.ArgBilibiliPrizeGrant)
  56. if err = c.Bind(a); err != nil {
  57. return
  58. }
  59. a.AppID = vipmol.EleAppID
  60. c.JSON(vipSvc.BilibiliPrizeGrant(c, a))
  61. }
  62. func openAuthCallBack(c *bm.Context) {
  63. var err error
  64. midI, ok := c.Get("mid")
  65. if !ok {
  66. c.JSON(nil, ecode.NoLogin)
  67. return
  68. }
  69. a := new(model.ArgOpenAuthCallBack)
  70. if err = c.Bind(a); err != nil {
  71. return
  72. }
  73. // verify csrf.
  74. verifyState(c, authn, a.State)
  75. a.AppID = vipmol.EleAppID
  76. a.Mid = midI.(int64)
  77. c.Redirect(http.StatusFound, vipSvc.OpenAuthCallBack(c, a))
  78. }
  79. func eleOAuthURL(c *bm.Context) {
  80. var (
  81. state string
  82. err error
  83. )
  84. if state, err = csrf(c, authn); err != nil {
  85. return
  86. }
  87. c.JSON(vipSvc.ElemeOAuthURI(c, state), nil)
  88. }
  89. func verifyState(ctx *bm.Context, a *auth.Auth, state string) (err error) {
  90. var csrfStr string
  91. if csrfStr, err = csrf(ctx, a); err != nil {
  92. return
  93. }
  94. if csrfStr != state {
  95. return ecode.CsrfNotMatchErr
  96. }
  97. return
  98. }
  99. func csrf(ctx *bm.Context, a *auth.Auth) (string, error) {
  100. req := ctx.Request
  101. cookie := req.Header.Get("Cookie")
  102. reply, err := a.GetCookieInfo(ctx, &idtv1.GetCookieInfoReq{Cookie: cookie})
  103. if err != nil {
  104. return "", err
  105. }
  106. if !reply.IsLogin {
  107. return "", ecode.NoLogin
  108. }
  109. return reply.Csrf, nil
  110. }