call.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. 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. return call_id
  54. def hold(self, call_info: CallInfo, device_id):
  55. devices = call_info.device_list
  56. try:
  57. devices.remove(device_id)
  58. except:
  59. pass
  60. custom_device_id = devices[0]
  61. print('debugger::hold, custom_device_id=%s'%custom_device_id, flush=True)
  62. # self.client.sync_invoke_method("bridge_break", method_args=(custom_device_id,))
  63. # self.client.sync_invoke_method("hold_play", method_args=(custom_device_id,HOLD_MUSIC_PATH))
  64. self.client.bridge_break(call_info.call_id, custom_device_id)
  65. self.cache.set_need_play_hold_music(call_info.call_id)
  66. print('debugger::hold success custom_device_id=%s'%custom_device_id, flush=True)
  67. def cancel_hold(self, call_info: CallInfo, device_id):
  68. self.client.bridge_call(call_info.call_id, call_info.device_list[0], call_info.device_list[1])
  69. def transfer(self, call_info: CallInfo, agent_number, service_id):
  70. caller = call_info.called
  71. call_id = call_info.call_id
  72. agent = self.cache.get_agent_info(call_info.saas_id, call_info.agent_key)
  73. device_id = 'D' + str(self.snowflake.next_id())
  74. # now = lambda: int(round(time.time() * 1000))
  75. now = datetime.utcnow().timestamp()
  76. device_info = DeviceInfo(device_id=device_id, caller=caller, display=caller, called=agent_number, call_id=call_id,
  77. call_time=now, cdr_type=CdrType.TRANSFER.code, device_type=DeviceType.AGENT.code)
  78. call_info.device_list.append(device_id)
  79. call_info.caller = agent_number
  80. call_info.device_info_map[device_id] = device_info
  81. call_info.next_commands.append(NextCommand(device_info.device_id, NextType.NEXT_TRANSFER_CALL.code, call_info.device_list[0]))
  82. call_info.agent_key = agent_number
  83. print('transfer, agent_number=%s, device_id=%s, call_info=%s'% (agent_number, device_id, call_info), flush=True)
  84. # agent.sip_server
  85. self.cache.add_call_info(call_info)
  86. self.cache.add_agent_info(agent=agent, call_id=call_id, device_id=device_id)
  87. sip_header_map = {sipHeaderServiceId: service_id}
  88. context = MakeCallContext(display=call_info.called, caller=call_info.called, called=agent_number,
  89. call_id=call_id, device_id=device_id, device_type=device_info.device_type,sip_server=agent.sip_server,
  90. call_type=call_info.call_type, service_id=service_id, sip_header_map=sip_header_map)
  91. self.client.make_call_new(context)
  92. def hangup(self, request: HangupCallRequest):
  93. call_info = self.cache.get_call_info(request.call_id)
  94. if not call_info:
  95. self.logger.info('hangup call not exist callId: %s', request.call_id)
  96. return
  97. devices = call_info.device_list
  98. if not devices:
  99. self.logger.info('hangup deviceList is null callId: %s', request.call_id)
  100. return
  101. self.hangup_all(call_info, CallCause.AGENT_HANGUP_CALL)
  102. def hangup_all(self, call_info: CallInfo, case_enum=CallCause.DEFAULT):
  103. devices = call_info.device_list
  104. if not devices:
  105. self.logger.info('hangupCallAll skip 已全部挂断 callId: %s', call_info.call_id)
  106. return
  107. for device in devices:
  108. self.client.hangup_call(call_info.call_id, device, case_enum)
  109. def hangup_call(self, call_id):
  110. call_info = self.cache.get_call_info(call_id)
  111. if not call_info:
  112. self.logger.info('hangup call not exist callId: %s', call_id)
  113. return
  114. devices = call_info.device_list
  115. if not devices:
  116. self.logger.info('hangup deviceList is null callId: %s', call_id)
  117. return
  118. for device in devices:
  119. self.client.hangup_call(call_info.call_id, device, CallCause.RESTART)
  120. def checkin_call(self, request: CheckInCallRequest):
  121. agent = self.cache.get_agent_info(request.saas_id, request.agent_number)
  122. return self.client.show_channel(agent.device_id)