|
@@ -23,10 +23,10 @@ class PlaybackStopHandler(EslEventHandler):
|
|
|
def handle(self, address, event, coreUUID):
|
|
|
call_id = EslEventUtil.getCallId(event)
|
|
|
device_id = EslEventUtil.getDeviceId(event)
|
|
|
- # playback_file_path = EslEventUtil.getPlaybackFilePath(event)
|
|
|
- # if playback_file_path and HOLD_MUSIC_PATH == playback_file_path:
|
|
|
- # self.logger.info("等待音结束不需要处理 callId: %s deviceId: %s playbackFilePath: %s", call_id, device_id, playback_file_path);
|
|
|
- # return
|
|
|
+ playback_file_path = EslEventUtil.getPlaybackFilePath(event)
|
|
|
+ if playback_file_path and HOLD_MUSIC_PATH == playback_file_path:
|
|
|
+ self.logger.info("等待音结束不需要处理 callId: %s deviceId: %s playbackFilePath: %s", call_id, device_id, playback_file_path);
|
|
|
+ return
|
|
|
|
|
|
call_info = self.cache.get_call_info(call_id)
|
|
|
if not call_info:
|
|
@@ -41,15 +41,15 @@ class PlaybackStopHandler(EslEventHandler):
|
|
|
self.logger.info("PLAYBACK_STOP next_command is null, call_info:%s", call_info)
|
|
|
return
|
|
|
|
|
|
- self.logger.info("PLAYBACK_STOP next_command:%s", next_command)
|
|
|
- if next_command and next_command.next_type == NextType.NEXT_TRANSFER_CALL.code:
|
|
|
- device_id = next_command.next_value
|
|
|
- self.inbound_client.break0(device_id)
|
|
|
- self.inbound_client.hold_play(device_id, WaitingHangupMusicPath)
|
|
|
- self.inbound_client.play_timeout(call_id, timeout=30)
|
|
|
- next_command = NextCommand(device_id = device_id, next_type=NextType.NEXT_HANGUP.code)
|
|
|
- call_info.next_commands = [next_command]
|
|
|
- self.logger.info("PLAYBACK_STOP 开始播放结束音乐 callId:%s customerDeviceId:%s playFile:%s", call_id, device_id, WaitingHangupMusicPath)
|
|
|
+ # self.logger.info("PLAYBACK_STOP next_command:%s", next_command)
|
|
|
+ # if next_command and next_command.next_type == NextType.NEXT_TRANSFER_CALL.code:
|
|
|
+ # device_id = next_command.next_value
|
|
|
+ # self.inbound_client.break0(device_id)
|
|
|
+ # self.inbound_client.hold_play(device_id, WaitingHangupMusicPath)
|
|
|
+ # self.inbound_client.play_timeout(call_id, timeout=30)
|
|
|
+ # next_command = NextCommand(device_id = device_id, next_type=NextType.NEXT_HANGUP.code)
|
|
|
+ # call_info.next_commands = [next_command]
|
|
|
+ # self.logger.info("PLAYBACK_STOP 开始播放结束音乐 callId:%s customerDeviceId:%s playFile:%s", call_id, device_id, WaitingHangupMusicPath)
|
|
|
|
|
|
if NextType.NEXT_HANGUP == next_command.next_type:
|
|
|
call_info.end_time = device_info.end_time
|