|
@@ -16,11 +16,10 @@ class ChannelProgressMediaHandler(EslEventHandler):
|
|
|
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)
|
|
|
- # self.logger.info('ChannelProgressMediaHandler:: device.device_type: %s, call_info.direction: %s ',device.device_type, call_info.direction)
|
|
|
- # if device.device_type == DeviceType.AGENT.code:
|
|
|
- # 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.MANUAL, WorkStatus.AGENT_CALLING_RINGING)
|
|
|
+ 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)
|
|
|
+ self.logger.info('ChannelProgressMediaHandler:: device.device_type: %s, call_info.direction: %s ',device.device_type, call_info.direction)
|
|
|
+ if device.device_type == DeviceType.AGENT.code:
|
|
|
+ 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.MANUAL, WorkStatus.AGENT_CALLING_RINGING)
|