connectlogic.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package logic
  2. import (
  3. "context"
  4. "github.com/golang-jwt/jwt/v4"
  5. "github.com/pkg/errors"
  6. "ylink/comm/globalkey"
  7. "ylink/comm/jwtkey"
  8. "ylink/comm/result"
  9. "ylink/core/inner/rpc/inner"
  10. "ylink/flowsrv/rpc/internal/mgr"
  11. "ylink/flowsrv/rpc/internal/model"
  12. "ylink/flowsrv/rpc/internal/svc"
  13. "ylink/flowsrv/rpc/pb"
  14. "github.com/zeromicro/go-zero/core/logx"
  15. )
  16. type ConnectLogic struct {
  17. ctx context.Context
  18. svcCtx *svc.ServiceContext
  19. logx.Logger
  20. }
  21. func NewConnectLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ConnectLogic {
  22. return &ConnectLogic{
  23. ctx: ctx,
  24. svcCtx: svcCtx,
  25. Logger: logx.WithContext(ctx),
  26. }
  27. }
  28. func (l *ConnectLogic) Connect(in *pb.CommandReq, stream pb.Flowsrv_ConnectServer) error {
  29. uid, gameId, err := l.checkAuth(in)
  30. if err != nil {
  31. return stream.Send(&pb.CommandResp{
  32. Code: result.TokenParseError,
  33. Msg: err.Error(),
  34. Data: nil,
  35. })
  36. }
  37. _, err = l.svcCtx.InnerRpc.NotifyUserOnline(l.ctx, &inner.NotifyUserStatusReq{
  38. Type: in.Type,
  39. Uid: uid,
  40. GameId: gameId,
  41. })
  42. if err != nil {
  43. return stream.Send(&pb.CommandResp{
  44. Code: result.ServerCommonError,
  45. Msg: err.Error(),
  46. Data: nil,
  47. })
  48. }
  49. flow := &model.Flow{
  50. EndFlow: make(chan int),
  51. Message: make(chan string),
  52. Stream: stream,
  53. Ctx: l.ctx,
  54. SvcCtx: l.svcCtx,
  55. Logger: l.Logger,
  56. User: &model.User{
  57. Type: in.Type,
  58. Uid: uid,
  59. GameId: gameId,
  60. },
  61. }
  62. defer func() {
  63. close(flow.EndFlow)
  64. flow = nil
  65. }()
  66. mgr.GetFlowMgrInstance().Register(flow)
  67. //go func() {
  68. // for {
  69. // select {
  70. // case <-stream.Context().Done():
  71. // if mgr.GetFlowMgrInstance().Has(uid) {
  72. // l.Logger.Infof("flowstream was disconnected abnormally")
  73. // mgr.GetFlowMgrInstance().UnRegister(uid)
  74. // _, err = l.svcCtx.InnerRpc.NotifyUserOffline(l.ctx, &inner.NotifyUserStatusReq{
  75. // Type: in.Type,
  76. // Uid: uid,
  77. // GameId: gameId,
  78. // })
  79. // }
  80. // flow.EndFlow <- 1
  81. // return
  82. // case msg, open := <-flow.Message:
  83. // if open {
  84. // stream.Send(&pb.CommandResp{
  85. // Code: result.Ok,
  86. // Msg: "success",
  87. // Data: []byte(msg),
  88. // })
  89. // } else {
  90. // l.Logger.Error("message channel is close")
  91. // return
  92. // }
  93. // }
  94. // }
  95. //}()
  96. <-flow.EndFlow
  97. l.Logger.Infof("end flow")
  98. return nil
  99. }
  100. func (l *ConnectLogic) checkAuth(in *pb.CommandReq) (string, string, error) {
  101. token, err := jwt.Parse(in.AccessToken, func(token *jwt.Token) (i interface{}, err error) {
  102. return []byte(l.svcCtx.Config.JwtAuth.AccessSecret), nil
  103. })
  104. uid := ""
  105. gameId := ""
  106. if token.Valid {
  107. //将获取的token中的Claims强转为MapClaims
  108. claims, _ := token.Claims.(jwt.MapClaims)
  109. if in.Type == globalkey.CONNECT_TYPE_PLAYER {
  110. uid = claims[jwtkey.PlayerId].(string)
  111. gameId = claims[jwtkey.GameId].(string)
  112. } else {
  113. uid = claims[jwtkey.CsId].(string)
  114. }
  115. return uid, gameId, nil
  116. } else if ve, ok := err.(*jwt.ValidationError); ok {
  117. if ve.Errors&jwt.ValidationErrorMalformed != 0 {
  118. return uid, gameId, errors.Wrap(result.NewErrCode(result.TokenParseError), "")
  119. } else if ve.Errors&(jwt.ValidationErrorExpired|jwt.ValidationErrorNotValidYet) != 0 {
  120. // Token is either expired or not active yet
  121. return uid, gameId, errors.Wrap(result.NewErrCode(result.TokenExpireError), "")
  122. } else {
  123. return uid, gameId, errors.Wrap(result.NewErrCode(result.TokenParseError), "")
  124. }
  125. } else {
  126. return uid, gameId, errors.Wrap(result.NewErrCode(result.TokenParseError), "")
  127. }
  128. }