call.py 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. #!/usr/bin/env python3
  2. # encoding:utf-8
  3. import time
  4. from datetime import datetime
  5. from src.core.callcenter.cache import Cache
  6. from src.core.callcenter.constant import saasId, HOLD_MUSIC_PATH
  7. from src.core.callcenter.enumeration import CallCause, Direction, NextType, DeviceType, CdrType, AgentServiceState, AgentScene,WorkStatus
  8. from src.core.callcenter.api import AgentCallRequest, CallInfo, HangupCallRequest, CheckInCallRequest, \
  9. DeviceInfo, NextCommand, MakeCallContext
  10. from src.core.callcenter.esl.constant.sip_header_constant import sipHeaderServiceId, sipHeaderCtiFlowId
  11. from src.core.callcenter.snowflake import Snowflake
  12. from src.core.callcenter.data_handler import *
  13. class CallService:
  14. def __init__(self, client, logger):
  15. self.client = client
  16. self.logger = logger
  17. self.cache = Cache(client.app)
  18. self.snowflake = Snowflake()
  19. self.dataHandleServer=DataHandleServer(client.app)
  20. def call(self, request: AgentCallRequest):
  21. call_id = 'C' + str(self.snowflake.next_id())
  22. device_id = 'D' + str(self.snowflake.next_id())
  23. # now = lambda: int(round(time.time() * 1000))
  24. now = datetime.utcnow().timestamp()
  25. agent = self.cache.get_agent_info(request.saas_id, request.agent_id)
  26. route_gateway = self.cache.get_route_gateway(request.saas_id)
  27. call_info = CallInfo(cti_flow_id=request.cti_flow_id, call_id=call_id, agent_key=agent.agent_number, sip_server=agent.sip_server,
  28. caller=agent.agent_number, called=request.called, direction=Direction.INBOUND.code,
  29. caller_display=request.caller_display, called_display=request.called_display,
  30. call_type=request.call_type.code, call_time=now, follow_data=request.follow_data,
  31. uuid1=request.uuid1, uuid2=request.uuid2, saas_id=saasId)
  32. device_info = DeviceInfo(cti_flow_id=request.cti_flow_id, device_id=device_id, call_time=now, call_id=call_id, device_type=DeviceType.AGENT.code,
  33. agent_key=agent.agent_number, caller_display=route_gateway.name, cdr_type=CdrType.INBOUND.code)
  34. call_info.device_list.append(device_id)
  35. call_info.next_commands.append(NextCommand(device_id, NextType.NEXT_CALL_OTHER.code))
  36. call_info.device_info_map = {device_id: device_info}
  37. self.cache.add_call_info(call_info)
  38. context = MakeCallContext(display=request.called, caller=request.called, called=request.caller,
  39. call_id=call_id, device_id=device_id, device_type=device_info.device_type,
  40. call_type=call_info.call_type, sip_server=call_info.sip_server,
  41. sip_header_map={sipHeaderCtiFlowId: request.cti_flow_id})
  42. self.client.make_call_new(context)
  43. # 创建一条通话记录
  44. self.dataHandleServer.create_record({
  45. "session_id": call_id,
  46. "time_begin": datetime.utcnow(),
  47. "category": 1,
  48. "agent_num":request.agent_id,
  49. "phone": request.called
  50. })
  51. # 变更坐席状态为拨号中
  52. self.dataHandleServer.update_agent_monitor_service_state(request.agent_id, AgentServiceState.DIALING.code)
  53. self.push_handler.push_on_agent_work_report(request.saas_id, request.cti_flow_id, request.agent_id, call_id, AgentScene.ROBOT, WorkStatus.AGENT_HANG_IDLE)
  54. return call_id
  55. def hold(self, call_info: CallInfo, device_id):
  56. devices = call_info.device_list
  57. try:
  58. devices.remove(device_id)
  59. except:
  60. pass
  61. custom_device_id = devices[0]
  62. print('debugger::hold, custom_device_id=%s'%custom_device_id, flush=True)
  63. # self.client.sync_invoke_method("bridge_break", method_args=(custom_device_id,))
  64. # self.client.sync_invoke_method("hold_play", method_args=(custom_device_id,HOLD_MUSIC_PATH))
  65. self.client.bridge_break(call_info.call_id, custom_device_id)
  66. self.cache.set_need_play_hold_music(call_info.call_id)
  67. print('debugger::hold success custom_device_id=%s'%custom_device_id, flush=True)
  68. def cancel_hold(self, call_info: CallInfo, device_id):
  69. self.client.bridge_call(call_info.call_id, call_info.device_list[0], call_info.device_list[1])
  70. def transfer(self, call_info: CallInfo, agent_number, service_id):
  71. caller = call_info.called
  72. call_id = call_info.call_id
  73. agent = self.cache.get_agent_info(call_info.saas_id, call_info.agent_key)
  74. device_id = 'T' + str(self.snowflake.next_id())
  75. # now = lambda: int(round(time.time() * 1000))
  76. now = datetime.utcnow().timestamp()
  77. device_info = DeviceInfo(device_id=device_id, caller=caller, display=caller, called=agent_number, call_id=call_id,
  78. call_time=now, cdr_type=CdrType.TRANSFER.code, device_type=DeviceType.AGENT.code)
  79. call_info.device_list.append(device_id)
  80. # call_info.caller = agent_number
  81. call_info.device_info_map[device_id] = device_info
  82. call_info.next_commands.append(NextCommand(device_info.device_id, NextType.NEXT_TRANSFER_CALL.code, call_info.device_list[0]))
  83. call_info.agent_key = agent_number
  84. print('lwdebugger::transfer, agent_number=%s, device_id=%s, call_info=%s'% (agent_number, device_id, call_info), flush=True)
  85. # agent.sip_server
  86. self.cache.add_call_info(call_info)
  87. self.cache.add_agent_info(agent=agent, call_id=call_id, device_id=device_id)
  88. sip_header_map = {sipHeaderServiceId: service_id}
  89. context = MakeCallContext(display=call_info.caller, caller=call_info.caller, called=agent_number,
  90. call_id=call_id, device_id=device_id, device_type=device_info.device_type,sip_server=agent.sip_server,
  91. call_type=call_info.call_type, service_id=service_id, sip_header_map=sip_header_map)
  92. self.client.make_call_new(context)
  93. def hangup(self, request: HangupCallRequest):
  94. call_info = self.cache.get_call_info(request.call_id)
  95. if not call_info:
  96. self.logger.info('hangup call not exist callId: %s', request.call_id)
  97. return
  98. devices = call_info.device_list
  99. if not devices:
  100. self.logger.info('hangup deviceList is null callId: %s', request.call_id)
  101. return
  102. self.hangup_all(call_info, CallCause.AGENT_HANGUP_CALL)
  103. def hangup_all(self, call_info: CallInfo, case_enum=CallCause.DEFAULT):
  104. devices = call_info.device_list
  105. if not devices:
  106. self.logger.info('hangupCallAll skip 已全部挂断 callId: %s', call_info.call_id)
  107. return
  108. for device in devices:
  109. self.client.hangup_call(call_info.call_id, device, case_enum)
  110. def hangup_call(self, call_id):
  111. call_info = self.cache.get_call_info(call_id)
  112. if not call_info:
  113. self.logger.info('hangup call not exist callId: %s', call_id)
  114. return
  115. devices = call_info.device_list
  116. if not devices:
  117. self.logger.info('hangup deviceList is null callId: %s', call_id)
  118. return
  119. for device in devices:
  120. self.client.hangup_call(call_info.call_id, device, CallCause.RESTART)
  121. def checkin_call(self, request: CheckInCallRequest):
  122. agent = self.cache.get_agent_info(request.saas_id, request.agent_number)
  123. return self.client.show_channel(agent.device_id)