call.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #!/usr/bin/env python3
  2. # encoding:utf-8
  3. import json
  4. import time
  5. from datetime import datetime
  6. from src.core.callcenter.cache import Cache
  7. from src.core.callcenter.constant import saasId, HOLD_MUSIC_PATH
  8. from src.core.callcenter.enumeration import CallCause, Direction, NextType, DeviceType, CdrType, AgentServiceState,AgentScene,WorkStatus
  9. from src.core.callcenter.api import AgentCallRequest, CallInfo, HangupCallRequest, CheckInCallRequest, \
  10. DeviceInfo, NextCommand, MakeCallContext
  11. from src.core.callcenter.esl.constant.sip_header_constant import sipHeaderServiceId, sipHeaderCtiFlowId
  12. from src.core.callcenter.snowflake import Snowflake
  13. from src.core.callcenter.push import PushHandler
  14. from src.core.callcenter.data_handler import *
  15. class CallService:
  16. def __init__(self, client, logger):
  17. self.client = client
  18. self.logger = logger
  19. self.cache = Cache(client.app)
  20. self.snowflake = Snowflake()
  21. self.dataHandleServer=DataHandleServer(client.app)
  22. # self.push_handler = PushHandler(logger)
  23. def call(self, request: AgentCallRequest):
  24. call_id = 'C' + str(self.snowflake.next_id())
  25. device_id = 'D' + str(self.snowflake.next_id())
  26. # now = lambda: int(round(time.time() * 1000))
  27. now = datetime.utcnow().timestamp()
  28. self.logger.info("CallService 人工外呼 agent:%s makecall, ctiFlowId:%s, callId:%s, callerDisplay:%s, called:%s"%
  29. (request.caller, request.cti_flow_id, call_id, request.caller_display, request.called))
  30. agent = self.cache.get_agent_info(request.saas_id, request.agent_id)
  31. route_gateway = self.cache.get_route_gateway(request.saas_id)
  32. call_info = CallInfo(cti_flow_id=request.cti_flow_id, call_id=call_id, agent_key=agent.agent_number, sip_server=agent.sip_server,
  33. caller=agent.agent_number, called=request.called, direction=Direction.OUTBOUND.code,
  34. caller_display=request.caller_display, called_display=request.called_display,
  35. call_type=request.call_type, call_time=now, follow_data=request.follow_data,
  36. uuid1=request.uuid1, uuid2=request.uuid2, saas_id=saasId,
  37. core_uuid=None, conference=None, group_id=None, hidden_customer=0, number_location=None, agent_name=None, login_type=None, ivr_id=None, task_id=None, media_host=None, client_host=None, record=None, record2=None, record_time=None, answer_flag=None, wait_time=None, answer_count=0, hangup_dir=None, sdk_hangup=0, hangup_code=None, answer_time=None, end_time=None, talk_time=None, first_queue_time=None, queue_start_time=None, queue_end_time=None, overflow_count=0, cdr_notify_url=None, queue_level=None, transfer_agent=None, device_list=[], device_info_map = {}, process_data = {}, next_commands=[], call_details=[])
  38. 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,
  39. agent_key=agent.agent_number, caller_display=route_gateway.name, cdr_type=CdrType.INBOUND.code,
  40. conference=None, agent_name=None, from_agent=None, caller=None, called=None, display=None, called_location=None, caller_location=None, ring_start_time=None, ring_end_time=None, answer_time=None, bridge_time=None, end_time=None, talk_time=None, sip_protocol=None, channel_name=None, hangup_cause=None, ring_cause=None, sip_status=None, record=None, record_time=None, record_start_time=None, state=None, apparent_number=None,
  41. )
  42. call_info.device_list.append(device_id)
  43. self.logger.info("liuwei::debugger:1111::call_id=%s, device_id=%s"%(call_id, device_id))
  44. call_info.next_commands.append(NextCommand(device_id, NextType.NEXT_CALL_OTHER.code))
  45. call_info.device_info_map = {device_id: device_info}
  46. self.cache.add_call_info(call_info)
  47. context = MakeCallContext(display=request.called, caller=request.called, called=request.caller,
  48. call_id=call_id, device_id=device_id, device_type=device_info.device_type,
  49. call_type=call_info.call_type, sip_server=call_info.sip_server,
  50. sip_header_map={sipHeaderCtiFlowId: request.cti_flow_id})
  51. self.client.make_call_new(context)
  52. # # 创建一条通话记录
  53. # self.dataHandleServer.create_record({
  54. # "session_id": call_id,
  55. # "time_begin": datetime.utcnow(),
  56. # "category": 1,
  57. # "agent_num":request.agent_id,
  58. # "phone": request.called
  59. # })
  60. # # 变更坐席状态为拨号中
  61. # self.dataHandleServer.update_agent_monitor_service_state(request.agent_id, AgentServiceState.DIALING.code)
  62. # self.push_handler.push_on_agent_work_report(request.saas_id, request.cti_flow_id, request.agent_id, call_id,AgentScene.ROBOT, WorkStatus.AGENT_DIALING)
  63. return call_id
  64. def hold(self, call_info: CallInfo, device_id):
  65. devices = call_info.device_list
  66. try:
  67. devices.remove(device_id)
  68. except:
  69. pass
  70. custom_device_id = devices[0]
  71. self.logger.info('hold, custom_device_id=%s'%custom_device_id)
  72. # self.client.sync_invoke_method("bridge_break", method_args=(custom_device_id,))
  73. # self.client.sync_invoke_method("hold_play", method_args=(custom_device_id,HOLD_MUSIC_PATH))
  74. self.client.bridge_break(call_info.call_id, custom_device_id)
  75. self.cache.set_need_play_hold_music(call_info.call_id)
  76. self.logger.info('hold success custom_device_id=%s'%custom_device_id)
  77. def cancel_hold(self, call_info: CallInfo, device_id):
  78. self.client.bridge_call(call_info.call_id, call_info.device_list[0], call_info.device_list[1])
  79. def transfer(self, call_info: CallInfo, agent_number, service_id):
  80. caller = call_info.called
  81. call_id = call_info.call_id
  82. agent = self.cache.get_agent_info(call_info.saas_id, agent_number)
  83. device_id = 'T' + str(self.snowflake.next_id())
  84. # now = lambda: int(round(time.time() * 1000))
  85. now = datetime.utcnow().timestamp()
  86. device_info = DeviceInfo(device_id=device_id, caller=caller, display=caller, called=agent_number, call_id=call_id,
  87. call_time=now, cdr_type=CdrType.TRANSFER.code, device_type=DeviceType.AGENT.code,
  88. cti_flow_id=None, agent_key=None, agent_name=None, from_agent=None, called_location=None, caller_location=None, ring_start_time=None, ring_end_time=None, answer_time=None, bridge_time=None, end_time=None, talk_time=None, sip_protocol=None, channel_name=None, hangup_cause=None, ring_cause=None, sip_status=None, record=None, record_time=None, record_start_time=None, state=None, apparent_number=None, caller_display=None)
  89. call_info.device_list.append(device_id)
  90. self.logger.info("liuwei::debugger:2222::call_id=%s, device_id=%s" % (call_id, device_id))
  91. # call_info.caller = agent_number
  92. call_info.device_info_map[device_id] = device_info
  93. call_info.next_commands.append(NextCommand(device_info.device_id, NextType.NEXT_TRANSFER_CALL.code, call_info.device_list[0]))
  94. call_info.agent_key = agent_number
  95. self.logger.info('transfer, agent_number=%s, device_id=%s, call_info=%s'% (agent_number, device_id, call_info))
  96. # agent.sip_server
  97. self.cache.add_call_info(call_info)
  98. self.cache.add_agent_info(agent=agent, call_id=call_id, device_id=device_id)
  99. sip_header_map = {sipHeaderServiceId: service_id}
  100. context = MakeCallContext(display=call_info.caller, caller=call_info.caller, called=agent_number,
  101. call_id=call_id, device_id=device_id, device_type=device_info.device_type,sip_server=agent.sip_server,
  102. call_type=call_info.call_type, service_id=service_id, sip_header_map=sip_header_map)
  103. self.client.make_call_new(context)
  104. def hangup(self, request: HangupCallRequest):
  105. call_info = self.cache.get_call_info(request.call_id)
  106. if not call_info:
  107. self.logger.info('hangup call not exist callId: %s', request.call_id)
  108. return
  109. devices = call_info.device_list
  110. if not devices:
  111. self.logger.info('hangup deviceList is null callId: %s', request.call_id)
  112. return
  113. self.hangup_all(call_info, CallCause.AGENT_HANGUP_CALL)
  114. def hangup_all(self, call_info: CallInfo, case_enum=CallCause.DEFAULT):
  115. devices = call_info.device_list
  116. if not devices:
  117. self.logger.info('hangupCallAll skip 已全部挂断 callId: %s', call_info.call_id)
  118. return
  119. self.logger.info("hangup_all, call_id:%s, devices=%s, case=%s"%(call_info.call_id, json.dumps(devices), case_enum))
  120. for device in devices:
  121. self.client.kill_call(call_info.call_id, device, case_enum)
  122. def hangup_call(self, call_id):
  123. call_info = self.cache.get_call_info(call_id)
  124. if not call_info:
  125. self.logger.info('hangup call not exist callId: %s', call_id)
  126. return
  127. devices = call_info.device_list
  128. if not devices:
  129. self.logger.info('hangup deviceList is null callId: %s', call_id)
  130. return
  131. self.logger.info("hangup_all, call_id:%s, devices=%s" % (call_info.call_id, json.dumps(devices)))
  132. for device in devices:
  133. self.client.kill_call(call_info.call_id, device, CallCause.RESTART)
  134. def checkin_call(self, request: CheckInCallRequest):
  135. agent = self.cache.get_agent_info(request.saas_id, request.agent_number)
  136. return self.client.show_channel(agent.device_id)