call.py 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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
  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. print("CallService 人工外呼 agent:%s makecall, ctiFlowId:%s, callId:%s, callerDisplay:%s, called:%s"%
  26. (request.caller, request.cti_flow_id, call_id, request.caller_display, request.called), flush=True)
  27. agent = self.cache.get_agent_info(request.saas_id, request.agent_id)
  28. route_gateway = self.cache.get_route_gateway(request.saas_id)
  29. call_info = CallInfo(cti_flow_id=request.cti_flow_id, call_id=call_id, agent_key=agent.agent_number, sip_server=agent.sip_server,
  30. caller=agent.agent_number, called=request.called, direction=Direction.INBOUND.code,
  31. caller_display=request.caller_display, called_display=request.called_display,
  32. call_type=request.call_type.code, call_time=now, follow_data=request.follow_data,
  33. uuid1=request.uuid1, uuid2=request.uuid2, saas_id=saasId)
  34. 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,
  35. agent_key=agent.agent_number, caller_display=route_gateway.name, cdr_type=CdrType.INBOUND.code)
  36. call_info.device_list.append(device_id)
  37. call_info.next_commands.append(NextCommand(device_id, NextType.NEXT_CALL_OTHER.code))
  38. call_info.device_info_map = {device_id: device_info}
  39. self.cache.add_call_info(call_info)
  40. context = MakeCallContext(display=request.called, caller=request.called, called=request.caller,
  41. call_id=call_id, device_id=device_id, device_type=device_info.device_type,
  42. call_type=call_info.call_type, sip_server=call_info.sip_server,
  43. sip_header_map={sipHeaderCtiFlowId: request.cti_flow_id})
  44. self.client.make_call_new(context)
  45. # 创建一条通话记录
  46. self.dataHandleServer.create_record({
  47. "session_id": call_id,
  48. "time_begin": datetime.utcnow(),
  49. "category": 1,
  50. "agent_num":request.agent_id,
  51. "phone": request.called
  52. })
  53. # 变更坐席状态为拨号中
  54. self.dataHandleServer.update_agent_monitor_service_state(request.agent_id, AgentServiceState.DIALING.code)
  55. return call_id
  56. def hold(self, call_info: CallInfo, device_id):
  57. devices = call_info.device_list
  58. try:
  59. devices.remove(device_id)
  60. except:
  61. pass
  62. custom_device_id = devices[0]
  63. print('debugger::hold, custom_device_id=%s'%custom_device_id, flush=True)
  64. # self.client.sync_invoke_method("bridge_break", method_args=(custom_device_id,))
  65. # self.client.sync_invoke_method("hold_play", method_args=(custom_device_id,HOLD_MUSIC_PATH))
  66. self.client.bridge_break(call_info.call_id, custom_device_id)
  67. self.cache.set_need_play_hold_music(call_info.call_id)
  68. print('debugger::hold success custom_device_id=%s'%custom_device_id, flush=True)
  69. def cancel_hold(self, call_info: CallInfo, device_id):
  70. self.client.bridge_call(call_info.call_id, call_info.device_list[0], call_info.device_list[1])
  71. def transfer(self, call_info: CallInfo, agent_number, service_id):
  72. caller = call_info.called
  73. call_id = call_info.call_id
  74. agent = self.cache.get_agent_info(call_info.saas_id, call_info.agent_key)
  75. device_id = 'T' + str(self.snowflake.next_id())
  76. # now = lambda: int(round(time.time() * 1000))
  77. now = datetime.utcnow().timestamp()
  78. device_info = DeviceInfo(device_id=device_id, caller=caller, display=caller, called=agent_number, call_id=call_id,
  79. call_time=now, cdr_type=CdrType.TRANSFER.code, device_type=DeviceType.AGENT.code)
  80. call_info.device_list.append(device_id)
  81. # call_info.caller = agent_number
  82. call_info.device_info_map[device_id] = device_info
  83. call_info.next_commands.append(NextCommand(device_info.device_id, NextType.NEXT_TRANSFER_CALL.code, call_info.device_list[0]))
  84. call_info.agent_key = agent_number
  85. print('lwdebugger::transfer, agent_number=%s, device_id=%s, call_info=%s'% (agent_number, device_id, call_info), flush=True)
  86. # agent.sip_server
  87. self.cache.add_call_info(call_info)
  88. self.cache.add_agent_info(agent=agent, call_id=call_id, device_id=device_id)
  89. sip_header_map = {sipHeaderServiceId: service_id}
  90. context = MakeCallContext(display=call_info.caller, caller=call_info.caller, called=agent_number,
  91. call_id=call_id, device_id=device_id, device_type=device_info.device_type,sip_server=agent.sip_server,
  92. call_type=call_info.call_type, service_id=service_id, sip_header_map=sip_header_map)
  93. self.client.make_call_new(context)
  94. def hangup(self, request: HangupCallRequest):
  95. call_info = self.cache.get_call_info(request.call_id)
  96. if not call_info:
  97. self.logger.info('hangup call not exist callId: %s', request.call_id)
  98. return
  99. devices = call_info.device_list
  100. if not devices:
  101. self.logger.info('hangup deviceList is null callId: %s', request.call_id)
  102. return
  103. self.hangup_all(call_info, CallCause.AGENT_HANGUP_CALL)
  104. def hangup_all(self, call_info: CallInfo, case_enum=CallCause.DEFAULT):
  105. devices = call_info.device_list
  106. if not devices:
  107. self.logger.info('hangupCallAll skip 已全部挂断 callId: %s', call_info.call_id)
  108. return
  109. for device in devices:
  110. self.client.hangup_call(call_info.call_id, device, case_enum)
  111. def hangup_call(self, call_id):
  112. call_info = self.cache.get_call_info(call_id)
  113. if not call_info:
  114. self.logger.info('hangup call not exist callId: %s', call_id)
  115. return
  116. devices = call_info.device_list
  117. if not devices:
  118. self.logger.info('hangup deviceList is null callId: %s', call_id)
  119. return
  120. for device in devices:
  121. self.client.hangup_call(call_info.call_id, device, CallCause.RESTART)
  122. def checkin_call(self, request: CheckInCallRequest):
  123. agent = self.cache.get_agent_info(request.saas_id, request.agent_number)
  124. return self.client.show_channel(agent.device_id)