client_call_logic.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package logic
  2. import (
  3. "call_center/call/rpc/internal/core"
  4. "call_center/call/rpc/internal/handler"
  5. "call_center/call/rpc/pb"
  6. "call_center/public/exception"
  7. "context"
  8. "fmt"
  9. "log"
  10. "call_center/call/rpc/internal/svc"
  11. "github.com/tal-tech/go-zero/core/logx"
  12. )
  13. type ClientCallLogic struct {
  14. ctx context.Context
  15. svcCtx *svc.ServiceContext
  16. logx.Logger
  17. }
  18. func NewClientCallLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ClientCallLogic {
  19. return &ClientCallLogic{
  20. ctx: ctx,
  21. svcCtx: svcCtx,
  22. Logger: logx.WithContext(ctx),
  23. }
  24. }
  25. func (l *ClientCallLogic) ClientCall(req *pb.ClientMsgReq) (*pb.ClientMsgRes, error) {
  26. var resList []*pb.CommandMsg
  27. var err error
  28. server := core.GetServer()
  29. exception.Try(func() {
  30. if req.IdInfo == nil {
  31. errStr := fmt.Sprintf("<ClientCall> IdInfo is nil")
  32. err = exception.MakeError(int32(pb.EErrorCode_ERR_PARAM_ERROR), errStr)
  33. exception.Throw(err)
  34. }
  35. id := req.IdInfo.Id
  36. stream := server.GetPlayerStream(id)
  37. if stream == nil {
  38. errStr := fmt.Sprintf("<ClientCall> client id not login, id:%v", id)
  39. err = exception.MakeError(int32(pb.EErrorCode_ERR_PARAM_ERROR), errStr)
  40. exception.Throw(errStr)
  41. }
  42. // 接收玩家信息
  43. for _, cmd := range req.Cmd {
  44. cmdType := cmd.CmdType
  45. cmdRes := new(pb.CommandMsg)
  46. switch cmdType {
  47. case pb.ECommand_CALL_PLAYER_MSG:
  48. // 玩家发消息
  49. err = handler.FromPlayerMsg(l.svcCtx.Db, server, id, cmd)
  50. break
  51. case pb.ECommand_CALL_PLAYER_LOGOUT:
  52. // 玩家退出
  53. handler.PlayerLogout(server, id)
  54. break
  55. default:
  56. errStr := fmt.Sprintf("<ClientCall> invalid cmd type:%s", cmdType)
  57. log.Println(errStr)
  58. exception.Throw(errStr)
  59. break
  60. }
  61. if err != nil {
  62. continue
  63. }
  64. resList = append(resList, cmdRes)
  65. }
  66. }).Catch(func(e exception.Exception) {
  67. log.Println("<ClientCall> error: ", e)
  68. err = e.(error)
  69. }).Finally(func() {
  70. // server.OnPlayerDisConnect(server, id)
  71. })
  72. return &pb.ClientMsgRes{Cmd: resList}, err
  73. }