DavidLiu 3 ay önce
ebeveyn
işleme
2476d86107

+ 5 - 3
src/core/callcenter/esl/handler/channel_hangup_handler.py

@@ -34,7 +34,7 @@ class ChannelHangupHandler(EslEventHandler):
         # self.logger.info(json.loads(event.serialize('json')))
         try:
             call_id = EslEventUtil.getCallId(event)
-            self.logger.info('call_id is %s, event=%s', call_id, json.loads(event.serialize('json')))
+            self.logger.info('call_id is %s, event=%s', call_id, json.loads(event.serialize('json')) )
             if not call_id:
                 other_leg_device_id = event.getHeader("variable_bridge_uuid")
                 call_id = self.cache.get_call_id_by_device_id(other_leg_device_id)
@@ -74,6 +74,8 @@ class ChannelHangupHandler(EslEventHandler):
             caller = EslEventUtil.getCallerCallerIdNumber(event)
             called = EslEventUtil.getCallerDestinationNumber(event)
             sip_status = EslEventUtil.getSipStatus(event)
+            sip_invite_failure_status = EslEventUtil.getSipInviteFailureStatus(event)
+            sip_invite_failure_phrase = EslEventUtil.getSipInviteFailurePhrase(event)
             sip_protocol = EslEventUtil.getSipProtocol(event)
             rtp_use_codec = EslEventUtil.getRtpUseCodec(event)
             channel_name = EslEventUtil.getCallerChannelName(event)
@@ -81,9 +83,9 @@ class ChannelHangupHandler(EslEventHandler):
             hangup_cause = EslEventUtil.getVariableSipHPLIBRAHangupCause(event)
             hangup_reason = EslEventUtil.getLIBRAHangupReason(event)
 
-            device_info.hangup_cause = cause
+            device_info.hangup_cause = cause +"##"+ sip_invite_failure_phrase
             device_info.sip_protocol = sip_protocol
-            device_info.sip_status = sip_status if sip_status else "EMPTY"
+            device_info.sip_status = sip_status if sip_status else sip_invite_failure_status if sip_invite_failure_status else "EMPTY"
             device_info.channel_name = channel_name
             device_info.end_time = timestamp
 

+ 7 - 0
src/core/callcenter/esl/utils/esl_event_util.py

@@ -69,6 +69,8 @@ VARIABLE_SIP_VOICE_GATEWAY = "variable_sip_h_X-Voice-Gateway"
 VARIABLE_SIP_PROTOCOL = "variable_sip_via_protocol"
 VARIABLE_RTP_USE_CODEC = "variable_rtp_use_codec_name"
 VARIABLE_SIP_TERM_STATUS = "variable_sip_term_status"
+VARIABLE_SIP_INVITE_FAILURE_STATUS = "variable_sip_invite_failure_status"
+VARIABLE_SIP_INVITE_FAILURE_PHRASE = "variable_sip_invite_failure_phrase"
 VARIABLE_LOCAL_MEDIA_IP = "variable_local_media_ip"
 VARIABLE_SIP_FROM_USER = "variable_sip_from_user"
 VARIABLE_APPLICATION_DATA = "variable_current_application_data"
@@ -369,6 +371,11 @@ def getRtpUseCodec(e):
 def getSipStatus(e):
     return e.getHeader(VARIABLE_SIP_TERM_STATUS)
 
+def getSipInviteFailureStatus(e):
+    return e.getHeader(VARIABLE_SIP_INVITE_FAILURE_STATUS)
+
+def getSipInviteFailurePhrase(e):
+    return e.getHeader(VARIABLE_SIP_INVITE_FAILURE_PHRASE)
 
 def getLocalMediaIp(e):
     return e.getHeader(VARIABLE_LOCAL_MEDIA_IP)