|
@@ -1,34 +1,15 @@
|
|
|
#!/usr/bin/env python3
|
|
|
# encoding:utf-8
|
|
|
from src.core.callcenter.esl.annotation import EslEventName
|
|
|
-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)
|
|
|
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):
|
|
|
- pass
|
|
|
- # call_id = EslEventUtil.getCallId(event)
|
|
|
- # device_id = EslEventUtil.getDeviceId(event)
|
|
|
- # call_info = self.cache.get_call_info(call_id)
|
|
|
- # device = call_info.device_info_map.get(device_id)
|
|
|
- # # 每通电话的第一次写入应答时间
|
|
|
- # if not call_info.answer_time:
|
|
|
- # call_info.answer_time = EslEventUtil.getEventDateTimestamp(event)
|
|
|
- # self.cache.add_call_info(call_info)
|
|
|
- # self.dataHandleServer.update_record(call_id, {"status": 1})
|
|
|
- # self.logger.info("bridge call_info.answer_time:%s,device_info.answer_time%s,device.device_type%s" % (call_info.answer_time, device.answer_time,device.device_type))
|
|
|
- # if device.device_type == DeviceType.AGENT.code: # 如果是坐席接听 变更坐席状态
|
|
|
- # # self.dataHandleServer.update_record(call_id, {"status": 1})
|
|
|
- # self.push_handler.push_on_agent_work_report(call_info.saas_id, call_info.cti_flow_id, call_info.agent_key, call_info.call_id, AgentScene.ROBOT,WorkStatus.AGENT_ANSWER_INCOMING)
|
|
|
- # self.dataHandleServer.update_agent_monitor_service_state(call_info.agent_key,AgentServiceState.CALLING.code)
|
|
|
+ pass
|