2012-06-04 14:58:40 +00:00
<? php
/*
FusionPBX
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is FusionPBX
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
2014-07-17 17:47:20 +00:00
Portions created by the Initial Developer are Copyright (C) 2008-2014
2012-06-04 14:58:40 +00:00
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
2014-06-22 18:24:32 +00:00
Luis Daniel Lucio Quiroz <dlucio@okay.com.mx>
2012-06-04 14:58:40 +00:00
*/
require_once "root.php" ;
2013-07-06 06:03:27 +00:00
require_once "resources/require.php" ;
2013-07-06 05:50:55 +00:00
require_once "resources/check_auth.php" ;
2014-12-06 10:30:44 +00:00
2012-06-04 14:58:40 +00:00
if ( permission_exists ( 'xml_cdr_view' )) {
//access granted
}
else {
echo "access denied" ;
exit ;
}
2012-10-24 07:35:01 +00:00
//add multi-lingual support
2014-12-06 10:30:44 +00:00
require_once "app_languages.php" ;
2012-10-24 07:35:01 +00:00
foreach ( $text as $key => $value ) {
$text [ $key ] = $value [ $_SESSION [ 'domain' ][ 'language' ][ 'code' ]];
2012-10-06 18:02:17 +00:00
}
2012-06-04 14:58:40 +00:00
//import xml_cdr files
require_once "v_xml_cdr_import.php" ;
//additional includes
2013-07-06 06:29:50 +00:00
require_once "resources/header.php" ;
require_once "resources/paging.php" ;
2012-07-11 02:23:05 +00:00
2012-09-03 21:48:16 +00:00
2012-06-04 14:58:40 +00:00
//xml cdr include
2012-07-11 02:23:05 +00:00
$rows_per_page = 100 ;
2012-06-04 14:58:40 +00:00
require_once "xml_cdr_inc.php" ;
2012-08-29 21:31:31 +00:00
//javascript function: send_cmd
echo "<script type= \" text/javascript \" > \n " ;
echo "function send_cmd(url) { \n " ;
2014-09-09 09:15:32 +00:00
echo " if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari \n " ;
2012-08-29 21:31:31 +00:00
echo " xmlhttp=new XMLHttpRequest(); \n " ;
echo " } \n " ;
echo " else {// code for IE6, IE5 \n " ;
echo " xmlhttp=new ActiveXObject( \" Microsoft.XMLHTTP \" ); \n " ;
echo " } \n " ;
echo " xmlhttp.open( \" GET \" ,url,true); \n " ;
echo " xmlhttp.send(null); \n " ;
echo " document.getElementById('cmd_reponse').innerHTML=xmlhttp.responseText; \n " ;
echo "} \n " ;
echo "</script> \n " ;
2014-08-03 04:03:44 +00:00
//javascript to toggle input/select boxes
echo "<script type='text/javascript'>" ;
echo " function toggle(field) {" ;
echo " if (field == 'source') {" ;
echo " document.getElementById('caller_extension_uuid').selectedIndex = 0;" ;
echo " document.getElementById('caller_id_number').value = '';" ;
echo " $('#caller_extension_uuid').toggle();" ;
echo " $('#caller_id_number').toggle();" ;
echo " if ($('#caller_id_number').is(':visible')) { $('#caller_id_number').focus(); } else { $('#caller_extension_uuid').focus(); }" ;
echo " }" ;
echo " }" ;
echo "</script>" ;
2014-12-06 10:30:44 +00:00
//javascript to toggle export select box
echo "<script language='javascript' type='text/javascript'>" ;
echo " var fade_speed = 400;" ;
echo " function toggle_select(select_id) {" ;
echo " $('#'+select_id).fadeToggle(fade_speed, function() {" ;
echo " document.getElementById(select_id).selectedIndex = 0;" ;
echo " });" ;
echo " }" ;
echo "</script>" ;
2012-06-04 14:58:40 +00:00
//page title and description
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'> \n " ;
echo "<tr> \n " ;
2014-06-16 18:12:21 +00:00
echo "<td align='left' width='50%' nowrap='nowrap' style='vertical-align: top;'><b>" . $text [ 'title' ] . "</b><br><br><br></td> \n " ;
echo "<td align='right' width='100%' style='vertical-align: top;'> \n " ;
2014-12-06 10:30:44 +00:00
echo " <form id='frm_export' method='post' action='xml_cdr_export.php'>" ;
2012-06-04 14:58:40 +00:00
echo " <input type='hidden' name='direction' value=' $direction '> \n " ;
echo " <input type='hidden' name='caller_id_name' value=' $caller_id_name '> \n " ;
2014-08-02 10:57:02 +00:00
echo " <input type='hidden' name='start_stamp_begin' value=' $start_stamp_begin '> \n " ;
echo " <input type='hidden' name='start_stamp_end' value=' $start_stamp_end '> \n " ;
2012-06-04 14:58:40 +00:00
echo " <input type='hidden' name='hangup_cause' value=' $hangup_cause '> \n " ;
2014-08-03 04:03:44 +00:00
echo " <input type='hidden' name='caller_extension_uuid' value=' $caller_extension_uuid '> \n " ;
2012-06-04 14:58:40 +00:00
echo " <input type='hidden' name='caller_id_number' value=' $caller_id_number '> \n " ;
2014-08-03 04:03:44 +00:00
echo " <input type='hidden' name='destination_extension_uuid' value=' $destination_extension_uuid '> \n " ;
2012-06-04 14:58:40 +00:00
echo " <input type='hidden' name='destination_number' value=' $destination_number '> \n " ;
2014-12-06 10:30:44 +00:00
echo " <input type='hidden' name='context' value=' $context '> \n " ;
2014-08-02 10:57:02 +00:00
echo " <input type='hidden' name='answer_stamp_begin' value=' $answer_stamp_begin '> \n " ;
echo " <input type='hidden' name='answer_stamp_end' value=' $answer_stamp_end '> \n " ;
echo " <input type='hidden' name='end_stamp_begin' value=' $end_stamp_begin '> \n " ;
echo " <input type='hidden' name='end_stamp_end' value=' $end_stamp_end '> \n " ;
2012-06-04 14:58:40 +00:00
echo " <input type='hidden' name='duration' value=' $duration '> \n " ;
echo " <input type='hidden' name='billsec' value=' $billsec '> \n " ;
echo " <input type='hidden' name='uuid' value=' $uuid '> \n " ;
echo " <input type='hidden' name='bleg_uuid' value=' $bleg_uuid '> \n " ;
echo " <input type='hidden' name='accountcode' value=' $accountcode '> \n " ;
echo " <input type='hidden' name='read_codec' value=' $read_codec '> \n " ;
echo " <input type='hidden' name='write_codec' value=' $write_codec '> \n " ;
echo " <input type='hidden' name='remote_media_ip' value=' $remote_media_ip '> \n " ;
echo " <input type='hidden' name='network_addr' value=' $network_addr '> \n " ;
2014-12-06 10:30:44 +00:00
echo " <table cellpadding='0' cellspacing='0' border='0'> \n " ;
echo " <tr> \n " ;
echo " <td style='vertical-align: top;'> \n " ;
if ( permission_exists ( 'xml_cdr_search_advanced' )) {
echo " <input type='button' class='btn' value='" . $text [ 'button-advanced_search' ] . "' onclick= \" window.location='xml_cdr_search.php'; \" > \n " ;
}
echo " <input type='button' class='btn' value='" . $text [ 'button-missed' ] . "' onclick= \" document.location.href='xml_cdr.php?missed=true'; \" > \n " ;
echo " <input type='button' class='btn' value='" . $text [ 'button-statistics' ] . "' onclick= \" document.location.href='xml_cdr_statistics.php'; \" > \n " ;
echo " <input type='button' class='btn' value='" . $text [ 'button-export' ] . "' onclick= \" toggle_select('export_format'); \" > \n " ;
echo " </td>" ;
echo " <td style='vertical-align: top;'>" ;
echo " <select class='formfld' style='display: none; width: auto; margin-left: 3px;' name='export_format' id='export_format' onchange= \" display_message('" . $text [ 'message-preparing_download' ] . "'); toggle_select('export_format'); document.getElementById('frm_export').submit(); \" > \n " ;
echo " <option value=''>...</option> \n " ;
echo " <option value='csv'>CSV</option> \n " ;
echo " <option value='pdf'>PDF</option> \n " ;
echo " </select> \n " ;
echo " </td> \n " ;
echo " </tr> \n " ;
echo " </table> \n " ;
2012-06-04 14:58:40 +00:00
echo " </form> \n " ;
echo "</td> \n " ;
echo "</tr> \n " ;
echo "<tr> \n " ;
echo "<td align='left' colspan='2'> \n " ;
2012-10-24 07:35:01 +00:00
echo "" . $text [ 'description' ] . " \n " ;
echo "" . $text [ 'description2' ] . " \n " ;
echo "" . $text [ 'description-3' ] . " \n " ;
echo "" . $text [ 'description-4' ] . " \n " ;
2012-06-04 14:58:40 +00:00
//To do an advanced search of the call detail records click on the following advanced button.
echo "<br /> \n " ;
echo "<br /> \n " ;
echo "</td> \n " ;
echo "</tr> \n " ;
echo "</table> \n " ;
2014-06-16 22:08:30 +00:00
//basic search of call detail records
if ( permission_exists ( 'xml_cdr_search' )) {
2014-06-16 18:12:21 +00:00
2012-06-04 14:58:40 +00:00
echo "<form method='post' action=''> \n " ;
2014-06-16 18:12:21 +00:00
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'> \n " ;
2012-06-04 14:58:40 +00:00
echo "<tr> \n " ;
2014-08-02 12:49:22 +00:00
echo "<td width='33%' style='vertical-align: top;'> \n " ;
2014-06-16 18:12:21 +00:00
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'> \n " ;
2012-06-04 14:58:40 +00:00
echo " <tr> \n " ;
2014-06-16 18:12:21 +00:00
echo " <td class='vncell' valign='top' nowrap='nowrap' width='30%'> \n " ;
echo " " . $text [ 'label-direction' ] . " \n " ;
echo " </td> \n " ;
echo " <td class='vtable' width='70%' align='left'> \n " ;
echo " <select name='direction' class='formfld'> \n " ;
echo " <option value=''></option> \n " ;
2012-06-04 14:58:40 +00:00
if ( $direction == "inbound" ) {
2012-10-24 07:35:01 +00:00
echo " <option value='inbound' selected='selected'>" . $text [ 'label-inbound' ] . "</option> \n " ;
2012-06-04 14:58:40 +00:00
}
else {
2012-10-24 07:35:01 +00:00
echo " <option value='inbound'>" . $text [ 'label-inbound' ] . "</option> \n " ;
2012-06-04 14:58:40 +00:00
}
if ( $direction == "outbound" ) {
2012-10-24 07:35:01 +00:00
echo " <option value='outbound' selected='selected'>" . $text [ 'label-outbound' ] . "</option> \n " ;
2012-06-04 14:58:40 +00:00
}
else {
2012-10-24 07:35:01 +00:00
echo " <option value='outbound'>" . $text [ 'label-outbound' ] . "</option> \n " ;
2012-06-04 14:58:40 +00:00
}
if ( $direction == "local" ) {
2012-10-24 07:35:01 +00:00
echo " <option value='local' selected='selected'>" . $text [ 'label-local' ] . "</option> \n " ;
2012-06-04 14:58:40 +00:00
}
else {
2012-10-24 07:35:01 +00:00
echo " <option value='local'>" . $text [ 'label-local' ] . "</option> \n " ;
2012-06-04 14:58:40 +00:00
}
echo " </select> \n " ;
echo " </td> \n " ;
echo " </tr> \n " ;
echo " <tr> \n " ;
2014-06-16 18:12:21 +00:00
echo " <td class='vncell' valign='top' nowrap='nowrap' width='30%'> \n " ;
echo " " . $text [ 'label-status' ] . " \n " ;
echo " </td> \n " ;
echo " <td class='vtable' width='70%' align='left'> \n " ;
echo " <select name= \" hangup_cause \" class='formfld'> \n " ;
2014-06-16 22:08:30 +00:00
echo " <option value=''></option> \n " ;
2014-06-16 18:12:21 +00:00
$cdr_status_options = array (
'NORMAL_CLEARING' ,
'ORIGINATOR_CANCEL' ,
'BLIND_TRANSFER' ,
'LOSE_RACE' ,
'NO_ANSWER' ,
'NORMAL_UNSPECIFIED' ,
'NO_USER_RESPONSE' ,
'NO_ROUTE_DESTINATION' ,
'SUBSCRIBER_ABSENT' ,
'NORMAL_TEMPORARY_FAILURE' ,
'ATTENDED_TRANSFER' ,
'PICKED_OFF' ,
'USER_BUSY' ,
'CALL_REJECTED' ,
'INVALID_NUMBER_FORMAT' ,
'NETWORK_OUT_OF_ORDER' ,
'DESTINATION_OUT_OF_ORDER' ,
'RECOVERY_ON_TIMER_EXPIRE' ,
'MANAGER_REQUEST' ,
'MEDIA_TIMEOUT' ,
'UNALLOCATED_NUMBER' ,
'NONE' ,
'EXCHANGE_ROUTING_ERROR' ,
'ALLOTTED_TIMEOUT' ,
'CHAN_NOT_IMPLEMENTED' ,
'INCOMPATIBLE_DESTINATION' ,
'USER_NOT_REGISTERED' ,
'SYSTEM_SHUTDOWN' ,
'MANDATORY_IE_MISSING'
);
sort ( $cdr_status_options );
foreach ( $cdr_status_options as $cdr_status ) {
2014-06-16 22:08:30 +00:00
$selected = ( $hangup_cause == $cdr_status ) ? "selected='selected'" : null ;
2014-06-16 18:12:21 +00:00
$cdr_status_label = ucwords ( strtolower ( str_replace ( "_" , " " , $cdr_status )));
2014-08-03 11:14:56 +00:00
echo " <option value='" . $cdr_status . "' " . $selected . ">" . $cdr_status_label . "</option> \n " ;
2014-06-16 18:12:21 +00:00
}
echo " </select> \n " ;
echo " </td> \n " ;
2012-06-04 14:58:40 +00:00
echo " </tr> \n " ;
echo "</table> \n " ;
2014-06-16 18:12:21 +00:00
echo "</td>" ;
2014-08-02 12:49:22 +00:00
echo "<td width='33%' style='vertical-align: top;'> \n " ;
2012-06-04 14:58:40 +00:00
2014-08-03 04:03:44 +00:00
// set visibility of Source field(s)
if ( $caller_extension_uuid == '' && $caller_id_number != '' ) {
$style [ 'caller_extension_uuid' ] = 'display: none;' ;
}
else {
$style [ 'caller_id_number' ] = 'display: none;' ;
}
2014-06-16 18:12:21 +00:00
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'> \n " ;
2012-06-04 14:58:40 +00:00
echo " <tr> \n " ;
2014-06-16 18:12:21 +00:00
echo " <td class='vncell' valign='top' nowrap='nowrap' width='30%'> \n " ;
echo " " . $text [ 'label-source' ] . " \n " ;
echo " </td> \n " ;
2014-08-03 04:03:44 +00:00
echo " <td class='vtable' width='70%' align='left' style='white-space: nowrap;'> \n " ;
echo " <select class='formfld' style='" . $style [ 'caller_extension_uuid' ] . "' name='caller_extension_uuid' id='caller_extension_uuid'> \n " ;
2014-08-03 11:14:56 +00:00
echo " <option value=''></option> \n " ;
2014-08-03 04:03:44 +00:00
$sql = "select extension_uuid, extension, number_alias from v_extensions " ;
$sql .= "where domain_uuid = '" . $_SESSION [ 'domain_uuid' ] . "' " ;
$sql .= "order by " ;
$sql .= "extension asc " ;
$sql .= ", number_alias asc " ;
$prep_statement = $db -> prepare ( check_sql ( $sql ));
$prep_statement -> execute ();
$result_e = $prep_statement -> fetchAll ( PDO :: FETCH_NAMED );
foreach ( $result_e as & $row ) {
$selected = ( $row [ 'extension_uuid' ] == $caller_extension_uuid ) ? "selected" : null ;
2014-08-03 11:14:56 +00:00
echo " <option value='" . $row [ 'extension_uuid' ] . "' " . $selected . ">" . (( is_numeric ( $row [ 'extension' ])) ? $row [ 'extension' ] : $row [ 'number_alias' ] . " (" . $row [ 'extension' ] . ")" ) . "</option> \n " ;
2014-08-03 04:03:44 +00:00
}
unset ( $prep_statement );
echo " </select> \n " ;
echo " <input type='text' class='formfld' style='" . $style [ 'caller_id_number' ] . "' name='caller_id_number' id='caller_id_number' value='" . $caller_id_number . "'> \n " ;
2014-08-03 07:02:12 +00:00
echo " <input type='button' id='btn_toggle_source' class='btn' name='' alt='" . $text [ 'button-back' ] . "' value='◁' onclick= \" toggle('source'); \" > \n " ;
2014-06-16 18:12:21 +00:00
echo " </td> \n " ;
2012-06-04 14:58:40 +00:00
echo " </tr> \n " ;
echo " <tr> \n " ;
2014-06-16 18:12:21 +00:00
echo " <td class='vncell' valign='top' nowrap='nowrap' width='30%'> \n " ;
echo " " . $text [ 'label-destination' ] . " \n " ;
echo " </td> \n " ;
2014-08-03 04:03:44 +00:00
echo " <td class='vtable' width='70%' align='left' style='white-space: nowrap;'> \n " ;
echo " <input type='text' class='formfld' name='destination_number' id='destination_number' value='" . $destination_number . "'> \n " ;
2014-06-16 18:12:21 +00:00
echo " </td> \n " ;
2012-06-04 14:58:40 +00:00
echo " </tr> \n " ;
echo "</table> \n " ;
2014-06-16 18:12:21 +00:00
echo "</td>" ;
2014-08-02 12:49:22 +00:00
echo "<td width='34%' style='vertical-align: top;'> \n " ;
2012-06-04 14:58:40 +00:00
2014-06-16 18:12:21 +00:00
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'> \n " ;
2012-06-04 14:58:40 +00:00
echo " <tr> \n " ;
2014-06-16 18:12:21 +00:00
echo " <td class='vncell' valign='top' nowrap='nowrap' width='30%'> \n " ;
2014-08-02 10:57:02 +00:00
echo " " . $text [ 'label-start_range' ] . " \n " ;
2014-06-16 18:12:21 +00:00
echo " </td> \n " ;
2014-08-02 10:57:02 +00:00
echo " <td class='vtable' width='70%' align='left' style='white-space: nowrap;'> \n " ;
2014-08-03 05:23:44 +00:00
echo " <input type='text' class='formfld' style='min-width: 115px; width: 115px;' name='start_stamp_begin' data-calendar= \" {format: '%Y-%m-%d %H:%M', listYears: true, hideOnPick: false, fxName: null, showButtons: true} \" placeholder='" . $text [ 'label-from' ] . "' value=' $start_stamp_begin '> \n " ;
echo " <input type='text' class='formfld' style='min-width: 115px; width: 115px;' name='start_stamp_end' data-calendar= \" {format: '%Y-%m-%d %H:%M', listYears: true, hideOnPick: false, fxName: null, showButtons: true} \" placeholder='" . $text [ 'label-to' ] . "' value=' $start_stamp_end '> \n " ;
2014-06-16 18:12:21 +00:00
echo " </td> \n " ;
2012-06-04 14:58:40 +00:00
echo " </tr> \n " ;
echo " <tr> \n " ;
2014-06-16 18:12:21 +00:00
echo " <td class='vncell' valign='top' nowrap='nowrap' width='30%'> \n " ;
2014-08-02 10:57:02 +00:00
echo " " . $text [ 'label-cid-name' ] . " \n " ;
2014-06-16 18:12:21 +00:00
echo " </td> \n " ;
echo " <td class='vtable' width='70%' align='left'> \n " ;
2014-08-02 10:57:02 +00:00
echo " <input type='text' class='formfld' name='caller_id_name' value=' $caller_id_name '> \n " ;
2012-06-04 14:58:40 +00:00
echo " </td> \n " ;
echo " </tr> \n " ;
2014-06-16 18:12:21 +00:00
echo "</table> \n " ;
2012-06-04 14:58:40 +00:00
echo "</td>" ;
echo "</tr>" ;
2014-06-16 18:12:21 +00:00
echo "<tr>" ;
2014-06-24 00:37:17 +00:00
echo "<td colspan='2' style='padding-top: 8px;' align='left'>" ;
echo $text [ 'description_search' ];
echo "</td>" ;
echo "<td style='padding-top: 8px;' align='right'>" ;
2014-06-16 18:12:21 +00:00
echo "<input type='button' class='btn' value='" . $text [ 'button-reset' ] . "' onclick= \" document.location.href='xml_cdr.php'; \" > \n " ;
echo "<input type='submit' class='btn' name='submit' value='" . $text [ 'button-search' ] . "'> \n " ;
echo "</td>" ;
2012-06-04 14:58:40 +00:00
echo "</tr>" ;
echo "</table>" ;
2014-06-16 18:12:21 +00:00
2012-06-04 14:58:40 +00:00
echo "</form>" ;
2014-06-16 18:12:21 +00:00
echo "<br /><br />" ;
2012-06-04 14:58:40 +00:00
}
//show the results
2014-06-22 02:18:58 +00:00
echo "<table class='tr_hover' width='100%' cellpadding='0' cellspacing='0'> \n " ;
2012-06-04 14:58:40 +00:00
echo "<tr> \n " ;
2014-06-21 10:38:02 +00:00
echo "<th> </th> \n " ;
2014-06-16 18:12:21 +00:00
echo th_order_by ( 'caller_id_name' , $text [ 'label-cid-name' ], $order_by , $order );
echo th_order_by ( 'caller_id_number' , $text [ 'label-source' ], $order_by , $order );
2012-10-24 07:35:01 +00:00
echo th_order_by ( 'destination_number' , $text [ 'label-destination' ], $order_by , $order );
2014-09-11 18:25:00 +00:00
echo "<th>" . $text [ 'label-tools' ] . "</th> \n " ;
echo th_order_by ( 'start_stamp' , $text [ 'label-start' ], $order_by , $order , null , "style='text-align: right;'" );
2014-09-20 01:13:14 +00:00
echo th_order_by ( 'tta' , $text [ 'label-tta' ], $order_by , $order , null , "style='text-align: right;'" );
2014-09-11 18:25:00 +00:00
echo th_order_by ( 'duration' , $text [ 'label-duration' ], $order_by , $order , null , "style='text-align: center;'" );
2014-07-17 19:31:50 +00:00
if ( file_exists ( $_SERVER [ 'DOCUMENT_ROOT' ] . PROJECT_PATH . "/app/billing/app_config.php" )){
2014-06-22 18:24:32 +00:00
// billing collumns
echo "<th>" . $text [ 'label-price' ] . "</th> \n " ;
}
2014-06-19 23:00:43 +00:00
if ( permission_exists ( 'xml_cdr_pdd' )) {
2014-09-11 18:25:00 +00:00
echo th_order_by ( 'pdd_ms' , 'PDD' , $order_by , $order , null , "style='text-align: right;'" );
2012-06-04 14:58:40 +00:00
}
2014-06-19 23:00:43 +00:00
if ( permission_exists ( 'xml_cdr_mos' )) {
2014-09-11 18:25:00 +00:00
echo th_order_by ( 'rtp_audio_in_mos' , 'MOS' , $order_by , $order , null , "style='text-align: center;'" );
2014-06-19 23:00:43 +00:00
}
2012-10-24 07:35:01 +00:00
echo th_order_by ( 'hangup_cause' , $text [ 'label-status' ], $order_by , $order );
2014-08-13 03:17:12 +00:00
if ( if_group ( "admin" ) || if_group ( "superadmin" ) || if_group ( "cdr" )) {
2014-06-22 02:18:58 +00:00
echo "<td class='list_control_icon'> </td> \n " ;
}
2012-06-04 14:58:40 +00:00
echo "</tr> \n " ;
2014-07-17 19:31:50 +00:00
if ( file_exists ( $_SERVER [ 'DOCUMENT_ROOT' ] . PROJECT_PATH . "/app/billing/app_config.php" )){
2014-07-17 23:46:04 +00:00
require_once "app/billing/resources/functions/rating.php" ;
2014-06-25 23:58:47 +00:00
require_once "resources/classes/database.php" ;
$database = new database ;
}
2014-10-12 15:29:31 +00:00
if ( count ( $_SESSION [ 'domains' ]) == 1 ) { // add to path if single-tenant
$path_mod = $_SESSION [ "domain_name" ];
}
else {
$path_mod = "" ;
}
2012-06-04 14:58:40 +00:00
if ( $result_count > 0 ) {
foreach ( $result as $row ) {
$tmp_year = date ( "Y" , strtotime ( $row [ 'start_stamp' ]));
$tmp_month = date ( "M" , strtotime ( $row [ 'start_stamp' ]));
$tmp_day = date ( "d" , strtotime ( $row [ 'start_stamp' ]));
if ( defined ( 'TIME_24HR' ) && TIME_24HR == 1 ) {
$tmp_start_epoch = date ( "j M Y H:i:s" , $row [ 'start_epoch' ]);
} else {
$tmp_start_epoch = date ( "j M Y h:i:sa" , $row [ 'start_epoch' ]);
}
$hangup_cause = $row [ 'hangup_cause' ];
$hangup_cause = str_replace ( "_" , " " , $hangup_cause );
$hangup_cause = strtolower ( $hangup_cause );
$hangup_cause = ucwords ( $hangup_cause );
2014-09-11 18:25:00 +00:00
//If they cancelled, show the ring time, not the bill time.
2014-12-06 10:30:44 +00:00
$seconds = ( $row [ 'hangup_cause' ] == "ORIGINATOR_CANCEL" ) ? $row [ 'duration' ] : round (( $row [ 'billmsec' ] / 1000 ), 0 , PHP_ROUND_HALF_UP );
2014-09-11 18:25:00 +00:00
2014-10-12 15:29:31 +00:00
$tmp_dir = $_SESSION [ 'switch' ][ 'recordings' ][ 'dir' ] . '/' . $path_mod . '/archive/' . $tmp_year . '/' . $tmp_month . '/' . $tmp_day ;
2012-06-04 14:58:40 +00:00
$tmp_name = '' ;
if ( ! empty ( $row [ 'recording_file' ]) && file_exists ( $row [ 'recording_file' ])){
$tmp_name = $row [ 'recording_file' ];
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'uuid' ] . '.wav' )) {
$tmp_name = $row [ 'uuid' ] . ".wav" ;
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'uuid' ] . '_1.wav' )) {
$tmp_name = $row [ 'uuid' ] . "_1.wav" ;
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'uuid' ] . '.mp3' )) {
$tmp_name = $row [ 'uuid' ] . ".mp3" ;
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'uuid' ] . '_1.mp3' )) {
$tmp_name = $row [ 'uuid' ] . "_1.mp3" ;
2014-08-07 04:43:14 +00:00
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'bridge_uuid' ] . '.wav' )) {
$tmp_name = $row [ 'bridge_uuid' ] . ".wav" ;
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'bridge_uuid' ] . '_1.wav' )) {
$tmp_name = $row [ 'bridge_uuid' ] . "_1.wav" ;
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'bridge_uuid' ] . '.mp3' )) {
$tmp_name = $row [ 'bridge_uuid' ] . ".mp3" ;
}
elseif ( file_exists ( $tmp_dir . '/' . $row [ 'bridge_uuid' ] . '_1.mp3' )) {
$tmp_name = $row [ 'bridge_uuid' ] . "_1.mp3" ;
2012-06-04 14:58:40 +00:00
}
2014-08-13 03:17:12 +00:00
$tr_link = ( if_group ( "admin" ) || if_group ( "superadmin" ) || if_group ( "cdr" )) ? "href='xml_cdr_details.php?uuid=" . $row [ 'uuid' ] . "'" : null ;
2014-06-22 02:18:58 +00:00
echo "<tr " . $tr_link . "> \n " ;
2014-06-21 10:38:02 +00:00
if (
file_exists ( $_SERVER [ "DOCUMENT_ROOT" ] . "/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_inbound_missed.png" ) &&
file_exists ( $_SERVER [ "DOCUMENT_ROOT" ] . "/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_inbound_connected.png" ) &&
file_exists ( $_SERVER [ "DOCUMENT_ROOT" ] . "/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_outbound_failed.png" ) &&
file_exists ( $_SERVER [ "DOCUMENT_ROOT" ] . "/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_outbound_connected.png" ) &&
file_exists ( $_SERVER [ "DOCUMENT_ROOT" ] . "/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_local_failed.png" ) &&
file_exists ( $_SERVER [ "DOCUMENT_ROOT" ] . "/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_local_connected.png" )
) {
echo " <td valign='top' class='" . $row_style [ $c ] . "' style='text-align: center;'>" ;
switch ( $row [ 'direction' ]) {
case "inbound" :
if ( $row [ 'billsec' ] == 0 )
2014-09-08 18:06:36 +00:00
echo "<img src='/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_inbound_missed.png' style='border: none;' title='" . $text [ 'label-inbound' ] . " " . $text [ 'label-missed' ] . "'> \n " ;
2014-06-21 10:38:02 +00:00
else
2014-09-08 18:06:36 +00:00
echo "<img src='/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_inbound_connected.png' style='border: none;' title='" . $text [ 'label-inbound' ] . "'> \n " ;
2014-06-21 10:38:02 +00:00
break ;
case "outbound" :
if ( $row [ 'billsec' ] == 0 )
2014-09-08 18:06:36 +00:00
echo "<img src='/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_outbound_failed.png' style='border: none;' title='" . $text [ 'label-outbound' ] . " " . $text [ 'label-failed' ] . "'> \n " ;
2014-06-21 10:38:02 +00:00
else
2014-09-08 18:06:36 +00:00
echo "<img src='/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_outbound_connected.png' style='border: none;' title='" . $text [ 'label-outbound' ] . "'> \n " ;
2014-06-21 10:38:02 +00:00
break ;
case "local" :
if ( $row [ 'billsec' ] == 0 )
2014-09-08 18:06:36 +00:00
echo "<img src='/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_local_failed.png' style='border: none;' title='" . $text [ 'label-local' ] . " " . $text [ 'label-failed' ] . "'> \n " ;
2014-06-21 10:38:02 +00:00
else
2014-09-08 18:06:36 +00:00
echo "<img src='/themes/" . $_SESSION [ 'domain' ][ 'template' ][ 'name' ] . "/images/icon_cdr_local_connected.png' style='border: none;' title='" . $text [ 'label-local' ] . "'> \n " ;
2014-06-21 10:38:02 +00:00
break ;
2014-09-09 09:15:32 +00:00
default :
echo " " ;
2014-06-21 10:38:02 +00:00
}
echo " </td> \n " ;
}
else {
echo " <td class='" . $row_style [ $c ] . "'> </td>" ;
}
2012-10-15 19:43:00 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . "'>" ;
2014-12-06 10:34:29 +00:00
echo $row [ 'caller_id_name' ] . ' ' ;
2012-10-15 19:43:00 +00:00
echo " </td> \n " ;
2014-06-22 02:18:58 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . " tr_link_void'>" ;
2014-06-16 18:12:21 +00:00
echo " <a href= \" javascript:void(0) \" onclick= \" send_cmd('" . PROJECT_PATH . "/app/click_to_call/click_to_call.php?src_cid_name=" . urlencode ( $row [ 'caller_id_name' ]) . "&src_cid_number=" . urlencode ( $row [ 'caller_id_number' ]) . "&dest_cid_name=" . urlencode ( $_SESSION [ 'user' ][ 'extension' ][ 0 ][ 'outbound_caller_id_name' ]) . "&dest_cid_number=" . urlencode ( $_SESSION [ 'user' ][ 'extension' ][ 0 ][ 'outbound_caller_id_number' ]) . "&src=" . urlencode ( $_SESSION [ 'user' ][ 'extension' ][ 0 ][ 'user' ]) . "&dest=" . urlencode ( $row [ 'caller_id_number' ]) . "&rec=false&ringback=us-ring&auto_answer=true'); \" > \n " ;
2012-10-15 19:43:00 +00:00
if ( is_numeric ( $row [ 'caller_id_number' ])) {
echo " " . format_phone ( $row [ 'caller_id_number' ]) . ' ' ;
2012-06-04 14:58:40 +00:00
}
else {
2012-10-15 19:43:00 +00:00
echo " " . $row [ 'caller_id_number' ] . ' ' ;
2012-06-04 14:58:40 +00:00
}
2012-10-15 19:43:00 +00:00
echo " </a>" ;
2012-06-04 14:58:40 +00:00
echo " </td> \n " ;
2012-10-15 19:43:00 +00:00
2014-06-22 02:18:58 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . " tr_link_void'>" ;
2012-10-15 19:49:24 +00:00
echo " <a href= \" javascript:void(0) \" onclick= \" send_cmd('" . PROJECT_PATH . "/app/click_to_call/click_to_call.php?src_cid_name=" . urlencode ( $row [ 'destination_number' ]) . "&src_cid_number=" . urlencode ( $row [ 'destination_number' ]) . "&dest_cid_name=" . urlencode ( $_SESSION [ 'user' ][ 'extension' ][ 0 ][ 'outbound_caller_id_name' ]) . "&dest_cid_number=" . urlencode ( $_SESSION [ 'user' ][ 'extension' ][ 0 ][ 'outbound_caller_id_number' ]) . "&src=" . urlencode ( $_SESSION [ 'user' ][ 'extension' ][ 0 ][ 'user' ]) . "&dest=" . urlencode ( $row [ 'destination_number' ]) . "&rec=false&ringback=us-ring&auto_answer=true'); \" > \n " ;
if ( is_numeric ( $row [ 'destination_number' ])) {
echo format_phone ( $row [ 'destination_number' ]) . " \n " ;
}
else {
echo " " . $row [ 'destination_number' ] . " \n " ;
}
echo " </a> \n " ;
echo " </td> \n " ;
2012-08-29 21:31:31 +00:00
2014-09-11 18:25:00 +00:00
if ( strlen ( $tmp_name ) > 0 && file_exists ( $_SESSION [ 'switch' ][ 'recordings' ][ 'dir' ] . '/archive/' . $tmp_year . '/' . $tmp_month . '/' . $tmp_day . '/' . $tmp_name ) && $seconds > 0 ) {
echo " <td valign='top' class='" . $row_style [ "2" ] . " tr_link_void'>" ;
$recording_file_path = '/archive/' . $tmp_year . '/' . $tmp_month . '/' . $tmp_day . '/' . $tmp_name ;
$recording_file_name = strtolower ( pathinfo ( $tmp_name , PATHINFO_BASENAME ));
$recording_file_ext = pathinfo ( $recording_file_name , PATHINFO_EXTENSION );
switch ( $recording_file_ext ) {
case "wav" : $recording_type = "audio/wav" ; break ;
case "mp3" : $recording_type = "audio/mpeg" ; break ;
case "ogg" : $recording_type = "audio/ogg" ; break ;
}
echo "<audio id='recording_audio_" . $row [ 'uuid' ] . "' style='display: none;' preload='none' onended= \" recording_reset('" . $row [ 'uuid' ] . "'); \" src= \" " . PROJECT_PATH . "/app/recordings/recordings.php?a=download&type=rec&filename=" . base64_encode ( $recording_file_path ) . " \" type='" . $recording_type . "'></audio>" ;
echo "<span id='recording_button_" . $row [ 'uuid' ] . "' onclick= \" recording_play('" . $row [ 'uuid' ] . "') \" title='" . $text [ 'label-play' ] . " / " . $text [ 'label-pause' ] . "'>" . $v_link_label_play . "</span>" ;
echo "<a href= \" " . PROJECT_PATH . "/app/recordings/recordings.php?a=download&type=rec&t=bin&filename=" . base64_encode ( $recording_file_path ) . " \" title='" . $text [ 'label-download' ] . "'>" . $v_link_label_download . "</a>" ;
}
else {
echo " <td valign='top' class='" . $row_style [ $c ] . "'>" ;
echo " " ;
}
echo " </td> \n " ;
echo " <td valign='top' class='" . $row_style [ $c ] . "' style='text-align: right;'>" . $tmp_start_epoch . "</td> \n " ;
2014-09-08 18:06:36 +00:00
2014-09-11 18:25:00 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . "' style='text-align: right;'>" . (( $row [ 'tta' ] > 0 ) ? $row [ 'tta' ] . "s" : " " ) . "</td> \n " ;
2012-06-04 14:58:40 +00:00
2014-09-11 18:25:00 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . "' style='text-align: center;'>" . gmdate ( "G:i:s" , $seconds ) . "</td> \n " ;
2014-06-22 18:24:32 +00:00
2014-07-17 19:31:50 +00:00
if ( file_exists ( $_SERVER [ 'DOCUMENT_ROOT' ] . PROJECT_PATH . "/app/billing/app_config.php" )){
2014-06-25 23:58:47 +00:00
2014-07-17 17:47:20 +00:00
$database -> table = "v_xml_cdr" ;
$accountcode = ( strlen ( $row [ "accountcode" ]) ? $row [ "accountcode" ] : $_SESSION [ domain_name ]);
$database -> sql = "SELECT currency FROM v_billings WHERE type_value=' $accountcode '" ;
$database -> result = $database -> execute ();
$billing_currency = ( strlen ( $database -> result [ 0 ][ 'currency' ]) ? $database -> result [ 0 ][ 'currency' ] : 'USD' );
2014-11-25 22:22:28 +00:00
$billing_currency = ( strlen ( $database -> result [ 0 ][ 'currency' ]) ? $database -> result [ 0 ][ 'currency' ] :
( strlen ( $_SESSION [ 'billing' ][ 'currency' ][ 'text' ]) ? $_SESSION [ 'billing' ][ 'currency' ][ 'text' ] : 'USD' )
);
2014-07-17 17:47:20 +00:00
unset ( $database -> sql );
unset ( $database -> result );
2014-06-25 23:58:47 +00:00
2014-12-06 15:04:38 +00:00
$sell_price = strlen ( $row [ 'call_sell' ]) ? $row [ 'call_sell' ] : 0 ;
2014-07-17 16:52:31 +00:00
$lcr_direction = ( strlen ( $row [ 'direction' ]) ? $row [ 'direction' ] : "outbound" );
2014-11-25 22:22:28 +00:00
$xml_string = trim ( $row [ "xml" ]);
$json_string = trim ( $row [ "json" ]);
if ( strlen ( $xml_string ) > 0 ) {
$format = "xml" ;
}
if ( strlen ( $json_string ) > 0 ) {
$format = "json" ;
}
try {
if ( $format == 'json' ) {
$array = json_decode ( $json_string , true );
}
if ( $format == 'xml' ) {
$array = json_decode ( json_encode (( array ) simplexml_load_string ( $xml_string )), true );
}
}
catch ( Exception $e ) {
echo $e -> getMessage ();
}
$n = (( $lcr_direction == "inbound" ) ?
check_str ( urldecode ( $array [ "caller_profile" ][ "caller_id_number" ])) :
check_str ( urldecode ( $array [ "variables" ][ "lcr_query_digits" ]))
);
2014-08-02 10:57:02 +00:00
2014-06-25 23:58:47 +00:00
$database -> table = "v_lcr" ;
2014-11-25 22:22:28 +00:00
$database -> sql = "SELECT currency FROM v_lcr WHERE v_lcr.carrier_uuid IS NULL AND v_lcr.enabled='true' AND v_lcr.lcr_direction=' $lcr_direction ' AND v_lcr.digits IN (" . number_series ( $n ) . ") ORDER BY digits DESC, rate ASC, date_start DESC LIMIT 1" ;
2014-06-25 23:58:47 +00:00
$database -> result = $database -> execute ();
2014-11-25 22:22:28 +00:00
// print "<pre>"; print $database->sql . ":";print "[".$database->result[0]['currency']."]"; print_r($array); print "</pre>";
2014-06-25 23:58:47 +00:00
2014-11-25 22:22:28 +00:00
$lcr_currency = (( is_string ( $database -> result [ 0 ][ 'currency' ]) && strlen ( $database -> result [ 0 ][ 'currency' ])) ? $database -> result [ 0 ][ 'currency' ] :
( strlen ( $_SESSION [ 'billing' ][ 'currency' ][ 'text' ]) ? $_SESSION [ 'billing' ][ 'currency' ][ 'text' ] : 'USD' )
); //billed currency
2014-06-25 23:58:47 +00:00
unset ( $database -> sql );
unset ( $database -> result );
2014-12-06 15:04:38 +00:00
if ( $sell_price ){
$price = currency_convert ( $sell_price , $billing_currency , $lcr_currency );
}
2014-07-17 17:47:20 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . "'>" . number_format ( $price , 6 ) . " $billing_currency </td> \n " ;
2014-06-22 18:24:32 +00:00
}
2014-06-19 23:00:43 +00:00
if ( permission_exists ( "xml_cdr_pdd" )) {
2014-09-11 18:25:00 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . "' style='text-align: right;'>" . number_format ( $row [ 'pdd_ms' ] / 1000 , 2 ) . "s</td> \n " ;
2014-06-19 23:00:43 +00:00
}
if ( permission_exists ( "xml_cdr_mos" )) {
2014-09-11 18:25:00 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . "' " . (( strlen ( $row [ 'rtp_audio_in_mos' ]) > 0 ) ? "title='" . ( $row [ 'rtp_audio_in_mos' ] / 5 * 100 ) . "%'" : null ) . " style='text-align: center;'>" . (( strlen ( $row [ 'rtp_audio_in_mos' ]) > 0 ) ? $row [ 'rtp_audio_in_mos' ] : " " ) . "</td> \n " ;
2014-06-19 23:00:43 +00:00
}
2014-06-22 02:18:58 +00:00
echo " <td valign='top' class='" . $row_style [ $c ] . "'>" ;
2014-08-13 03:17:12 +00:00
if ( if_group ( "admin" ) || if_group ( "superadmin" ) || if_group ( "cdr" )) {
2014-06-22 02:18:58 +00:00
echo "<a href='xml_cdr_details.php?uuid=" . $row [ 'uuid' ] . "'>" . $hangup_cause . "</a>" ;
2012-06-04 14:58:40 +00:00
}
else {
2014-06-22 02:18:58 +00:00
echo $hangup_cause ;
}
echo " </td> \n " ;
2014-08-13 03:17:12 +00:00
if ( if_group ( "admin" ) || if_group ( "superadmin" ) || if_group ( "cdr" )) {
2014-06-22 03:24:36 +00:00
echo " <td class='list_control_icon'>" ;
2014-09-11 03:14:52 +00:00
echo " <a href='xml_cdr_details.php?uuid=" . $row [ 'uuid' ] . "' title='" . $text [ 'button-view' ] . "'> $v_link_label_view </a>" ;
2014-06-22 02:18:58 +00:00
echo " </td> \n " ;
2012-06-04 14:58:40 +00:00
}
echo "</tr> \n " ;
if ( $c == 0 ) { $c = 1 ; } else { $c = 0 ; }
} //end foreach
unset ( $sql , $result , $row_count );
} //end if results
echo "<tr> \n " ;
echo "</table>" ;
echo "<br><br>" ;
2014-09-28 08:35:49 +00:00
echo $paging_controls ;
2012-06-04 14:58:40 +00:00
echo "<br><br>" ;
//show the footer
2013-07-06 06:29:50 +00:00
require_once "resources/footer.php" ;
2014-08-03 11:14:56 +00:00
2014-11-25 22:22:28 +00:00
?>