|
@@ -1,10 +1,11 @@
|
|
|
#!/usr/bin/env python3
|
|
|
# encoding:utf-8
|
|
|
from src.core.callcenter.esl.annotation import EslEventName
|
|
|
-from src.core.callcenter.enumeration import DeviceType, AgentServiceState
|
|
|
+from src.core.callcenter.enumeration import DeviceType, AgentServiceState,WorkStatus,AgentScene
|
|
|
from src.core.callcenter.esl.constant.event_names import CHANNEL_BRIDGE
|
|
|
from src.core.callcenter.esl.handler.esl_event_handler import EslEventHandler
|
|
|
import src.core.callcenter.esl.utils.esl_event_util as EslEventUtil
|
|
|
+from src.core.callcenter.push import PushHandler
|
|
|
from src.core.callcenter.data_handler import *
|
|
|
|
|
|
@EslEventName(CHANNEL_BRIDGE)
|
|
@@ -13,6 +14,7 @@ class ChannelBridgeHandler(EslEventHandler):
|
|
|
def __init__(self, inbound_client, bot_agent):
|
|
|
super().__init__(inbound_client, bot_agent)
|
|
|
self.dataHandleServer = DataHandleServer(inbound_client.app)
|
|
|
+ self.push_handler = PushHandler(inbound_client.logger)
|
|
|
|
|
|
def handle(self, address, event, coreUUID):
|
|
|
call_id = EslEventUtil.getCallId(event)
|
|
@@ -25,7 +27,9 @@ class ChannelBridgeHandler(EslEventHandler):
|
|
|
print('debugger::device_id is23232323232 ', device_id, device, flush=True)
|
|
|
print("bridge call_info.answer_time:%s,device_info.answer_time%s,device.device_type%s" % (call.answer_time, device.answer_time,device.device_type),
|
|
|
flush=True)
|
|
|
+ self.cache.add_call_info(call)
|
|
|
if device.device_type == DeviceType.AGENT.code: # 如果是坐席接听 变更坐席状态
|
|
|
print("变更坐席状态:%s" % call.agent_key)
|
|
|
- self.dataHandleServer.update_agent_monitor_service_state(call.agent_key, AgentServiceState.IDLE.code)
|
|
|
+ self.dataHandleServer.update_agent_monitor_service_state(call.agent_key, AgentServiceState.CALLING.code)
|
|
|
+ self.push_handler.push_on_agent_work_report(call.saas_id, call.cti_flow_id, call.agent_key, call.call_id, AgentScene.ROBOT,WorkStatus.AGENT_ANSWER_INCOMING)
|
|
|
pass
|