service_call_logic.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "errors"
  9. "fmt"
  10. "log"
  11. "call_center/call/rpc/internal/svc"
  12. "github.com/tal-tech/go-zero/core/logx"
  13. )
  14. type ServiceCallLogic struct {
  15. ctx context.Context
  16. svcCtx *svc.ServiceContext
  17. logx.Logger
  18. }
  19. func NewServiceCallLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ServiceCallLogic {
  20. return &ServiceCallLogic{
  21. ctx: ctx,
  22. svcCtx: svcCtx,
  23. Logger: logx.WithContext(ctx),
  24. }
  25. }
  26. func (l *ServiceCallLogic) ServiceCall(req *pb.ServiceMsgReq) (*pb.ServiceMsgRes, error) {
  27. var err error
  28. server := core.GetServer()
  29. id := req.IdInfo.Id
  30. var resList []*pb.CommandMsg
  31. exception.Try(func() {
  32. stream := server.GetServiceStream(id)
  33. if stream == nil {
  34. errStr := fmt.Sprintf("<ServiceCall> service id not login, id:%v", id)
  35. err = exception.MakeError(int32(pb.EErrorCode_ERR_PARAM_ERROR), errStr)
  36. exception.Throw(errStr)
  37. }
  38. // 接收客服信息
  39. for _, cmd := range req.Cmd {
  40. cmdType := cmd.CmdType
  41. cmdRes := new(pb.CommandMsg)
  42. switch cmdType {
  43. case pb.ECommand_CALL_SERVICE_MSG:
  44. err = handler.FromServiceMsg(server, id, cmd, l.svcCtx.Db)
  45. break
  46. case pb.ECommand_CALL_SERVICE_REPLY:
  47. err = handler.ServiceReply(server, id, cmd, l.svcCtx.Db)
  48. break
  49. case pb.ECommand_CALL_PLAYER_CHAT_LOG:
  50. cmdRes, err = handler.GetPlayerChatLog(id, cmd, l.svcCtx.Db)
  51. break
  52. default:
  53. err = errors.New(fmt.Sprintf("<ServiceCall> invalid cmd type:%s", cmdType))
  54. break
  55. }
  56. if err != nil {
  57. // 过滤
  58. exception.Throw(err)
  59. continue
  60. }
  61. resList = append(resList, cmdRes)
  62. }
  63. }).Catch(func(e exception.Exception) {
  64. log.Println("<ServiceCall> error: ", e)
  65. err = e.(error)
  66. }).Finally(func() {
  67. // server.OnServiceDisConnect(server, id)
  68. })
  69. return &pb.ServiceMsgRes{Cmd: resList}, err
  70. }