|
@@ -34,7 +34,7 @@ class ChannelHangupHandler(EslEventHandler):
|
|
# self.logger.info(json.loads(event.serialize('json')))
|
|
# self.logger.info(json.loads(event.serialize('json')))
|
|
try:
|
|
try:
|
|
call_id = EslEventUtil.getCallId(event)
|
|
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:
|
|
if not call_id:
|
|
other_leg_device_id = event.getHeader("variable_bridge_uuid")
|
|
other_leg_device_id = event.getHeader("variable_bridge_uuid")
|
|
call_id = self.cache.get_call_id_by_device_id(other_leg_device_id)
|
|
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)
|
|
caller = EslEventUtil.getCallerCallerIdNumber(event)
|
|
called = EslEventUtil.getCallerDestinationNumber(event)
|
|
called = EslEventUtil.getCallerDestinationNumber(event)
|
|
sip_status = EslEventUtil.getSipStatus(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)
|
|
sip_protocol = EslEventUtil.getSipProtocol(event)
|
|
rtp_use_codec = EslEventUtil.getRtpUseCodec(event)
|
|
rtp_use_codec = EslEventUtil.getRtpUseCodec(event)
|
|
channel_name = EslEventUtil.getCallerChannelName(event)
|
|
channel_name = EslEventUtil.getCallerChannelName(event)
|
|
@@ -81,9 +83,9 @@ class ChannelHangupHandler(EslEventHandler):
|
|
hangup_cause = EslEventUtil.getVariableSipHPLIBRAHangupCause(event)
|
|
hangup_cause = EslEventUtil.getVariableSipHPLIBRAHangupCause(event)
|
|
hangup_reason = EslEventUtil.getLIBRAHangupReason(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_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.channel_name = channel_name
|
|
device_info.end_time = timestamp
|
|
device_info.end_time = timestamp
|
|
|
|
|