service_login_logic.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package logic
  2. import (
  3. "call_center/call/rpc/internal/core"
  4. "call_center/call/rpc/pb"
  5. "call_center/public/exception"
  6. "context"
  7. "log"
  8. "time"
  9. "call_center/call/rpc/internal/svc"
  10. "github.com/tal-tech/go-zero/core/logx"
  11. )
  12. type ServiceLoginLogic struct {
  13. ctx context.Context
  14. svcCtx *svc.ServiceContext
  15. logx.Logger
  16. }
  17. func NewServiceLoginLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ServiceLoginLogic {
  18. return &ServiceLoginLogic{
  19. ctx: ctx,
  20. svcCtx: svcCtx,
  21. Logger: logx.WithContext(ctx),
  22. }
  23. }
  24. func (l *ServiceLoginLogic) ServiceLogin(req *pb.ServiceMsgReq, stream pb.Call_ServiceLoginServer) error {
  25. server := core.GetServer()
  26. idInfo := req.IdInfo
  27. if idInfo == nil {
  28. // 传参失效
  29. errStr := "<ServiceLogin> req.IdInfo is nil"
  30. log.Println(errStr)
  31. return exception.MakeError(int32(pb.EErrorCode_ERR_PARAM_ERROR), errStr)
  32. }
  33. if idInfo.Id != "" {
  34. // 客服重登
  35. service := server.GetService(idInfo.Id)
  36. if service != nil {
  37. server.KickService(idInfo.Id, int32(pb.ErrorReason_SERVICE_REPEAT_LOGIN))
  38. log.Println("<ServiceLogin> service already conn, disconnect first, id:", idInfo.Id)
  39. }
  40. }
  41. // 客服stream注册
  42. service, err := server.OnServiceConnect(idInfo.Id, server, stream, l.svcCtx.Db)
  43. if service == nil {
  44. log.Println("<ClientLogin> OnPlayerConnect failed, err:", err)
  45. return exception.MakeError(int32(pb.EErrorCode_ERR_SERVICE_CONN_ERR), err.Error())
  46. }
  47. // 初始化客服信息
  48. stopChan := make(chan int32)
  49. service.Init(stopChan)
  50. // 心跳ticker
  51. duration := time.Second * time.Duration(server.HeartBeatInterval)
  52. ticker := time.NewTicker(duration)
  53. var errCode pb.ErrorReason
  54. exception.Try(func() {
  55. defer func() {
  56. ticker.Stop()
  57. }()
  58. for {
  59. select {
  60. case <-stream.Context().Done():
  61. log.Println("<ServiceLogin> heartbeat failed, id:", service.Id, " err:", stream.Context().Err())
  62. errCode = pb.ErrorReason_SERVICE_HEART_BEAT_FAILED
  63. return
  64. case <-ticker.C:
  65. break
  66. case stop := <-stopChan:
  67. errCode = pb.ErrorReason(stop)
  68. log.Println("<ServiceLogin> service stop connect, code:", stop)
  69. return
  70. }
  71. }
  72. }).Catch(func(ex exception.Exception) {
  73. log.Println("<ServiceLogin> error:", ex)
  74. }).Finally(func() {
  75. server.OnServiceDisConnect(server, service.Id, errCode)
  76. })
  77. return nil
  78. }