fusionpbx/app/xml_cdr/xml_cdr_statistics.php

329 lines
11 KiB
PHP
Raw Normal View History

<?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>
2019-12-24 22:33:04 +01:00
Portions created by the Initial Developer are Copyright (C) 2008-2019
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2019-12-24 22:33:04 +01:00
2018-02-02 00:00:18 +01:00
//includes
require_once "root.php";
require_once "resources/require.php";
require_once "resources/check_auth.php";
2020-01-06 18:56:27 +01:00
require_once "xml_cdr_statistics_inc.php";
2018-02-02 00:00:18 +01:00
//check permissions
2019-12-24 22:33:04 +01:00
if (permission_exists('xml_cdr_statistics')) {
2018-02-02 00:00:18 +01:00
//access granted
}
else {
echo "access denied";
exit;
}
//add multi-lingual support
$language = new text;
$text = $language->get();
//additional includes
2020-01-06 18:56:27 +01:00
$document['title'] = $text['title-call-statistics'];
require_once "resources/header.php";
2018-02-02 00:00:18 +01:00
//search url
$search_url = '';
if (permission_exists('xml_cdr_search_advanced')) {
$search_url .= '&redirect=xml_cdr_statistics';
}
if(permission_exists('xml_cdr_all') && ($_GET['showall'] === 'true')){
$search_url .= '&showall=true';
}
if (strlen($_GET['direction']) > 0) {
$search_url .= '&direction='.urlencode($_GET['direction']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['leg']) > 0) {
$search_url .= '&leg='.urlencode($_GET['leg']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['caller_id_name']) > 0) {
$search_url .= '&caller_id_name='.urlencode($_GET['caller_id_name']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['caller_extension_uuid']) > 0) {
$search_url .= '&caller_extension_uuid='.urlencode($_GET['caller_extension_uuid']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['caller_id_number']) > 0) {
$search_url .= '&caller_id_number='.urlencode($_GET['caller_id_number']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['destination_number']) > 0) {
$search_url .= '&destination_number='.urlencode($_GET['destination_number']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['context']) > 0) {
$search_url .= '&context='.urlencode($_GET['context']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['start_stamp_begin']) > 0) {
$search_url .= '&start_stamp_begin='.urlencode($_GET['start_stamp_begin']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['start_stamp_end']) > 0) {
$search_url .= '&start_stamp_end='.urlencode($_GET['start_stamp_end']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['answer_stamp_begin']) > 0) {
$search_url .= '&answer_stamp_begin='.urlencode($_GET['answer_stamp_begin']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['answer_stamp_end']) > 0) {
$search_url .= '&answer_stamp_end='.urlencode($_GET['answer_stamp_end']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['end_stamp_begin']) > 0) {
$search_url .= '&end_stamp_begin='.urlencode($_GET['end_stamp_begin']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['end_stamp_end']) > 0) {
$search_url .= '&end_stamp_end='.urlencode($_GET['end_stamp_end']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['duration']) > 0) {
$search_url .= '&duration='.urlencode($_GET['duration']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['billsec']) > 0) {
$search_url .= '&billsec='.urlencode($_GET['billsec']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['hangup_cause']) > 0) {
$search_url .= '&hangup_cause='.urlencode($_GET['hangup_cause']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['uuid']) > 0) {
$search_url .= '&uuid='.urlencode($_GET['uuid']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['bleg_uuid']) > 0) {
$search_url .= '&bleg_uuid='.urlencode($_GET['bleg_uuid']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['accountcode']) > 0) {
$search_url .= '&accountcode='.urlencode($_GET['accountcode']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['read_codec']) > 0) {
$search_url .= '&read_codec='.urlencode($_GET['read_codec']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['write_codec']) > 0) {
$search_url .= '&write_codec='.urlencode($_GET['write_codec']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['remote_media_ip']) > 0) {
$search_url .= '&remote_media_ip='.urlencode($_GET['remote_media_ip']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['network_addr']) > 0) {
$search_url .= '&network_addr='.urlencode($_GET['network_addr']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['mos_comparison']) > 0) {
$search_url .= '&mos_comparison='.urlencode($_GET['mos_comparison']);
2018-02-02 00:00:18 +01:00
}
if (strlen($_GET['mos_score']) > 0) {
$search_url .= '&mos_score='.urlencode($_GET['mos_score']);
2018-02-02 00:00:18 +01:00
}
2015-12-09 23:44:22 +01:00
//show the content
echo "<div class='action_bar' id='action_bar'>\n";
echo " <div class='heading'><b>".$text['title-call-statistics']."</b></div>\n";
echo " <div class='actions'>\n";
if (substr_count($_SERVER['HTTP_REFERER'], 'app/xml_cdr/xml_cdr.php') != 0) {
echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','style'=>'margin-right: 15px;','link'=>'xml_cdr.php']);
}
if (permission_exists('xml_cdr_search_advanced')) {
echo button::create(['type'=>'button','label'=>$text['button-advanced_search'],'icon'=>'tools','link'=>'xml_cdr_search.php?type=advanced'.$search_url]);
}
if (permission_exists('xml_cdr_all') && $_GET['showall'] != 'true') {
echo button::create(['type'=>'button','label'=>$text['button-show_all'],'icon'=>$_SESSION['theme']['button_icon_all'],'link'=>'xml_cdr_statistics.php?showall=true'.$search_url]);
}
echo button::create(['type'=>'button','label'=>$text['button-extension_summary'],'icon'=>'list','link'=>'xml_cdr_extension_summary.php']);
echo button::create(['type'=>'button','label'=>$text['button-download_csv'],'icon'=>$_SESSION['theme']['button_icon_download'],'link'=>'xml_cdr_statistics_csv.php?type=csv'.$search_url]);
echo " </div>\n";
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
echo $text['label-call-statistics-description']."\n";
echo "<br /><br />\n";
?>
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="<?php echo PROJECT_PATH; ?>/resources/jquery/flot/excanvas.min.js"></script><![endif]-->
<script language="javascript" type="text/javascript" src="<?php echo PROJECT_PATH; ?>/resources/jquery/flot/jquery.flot.js"></script>
<script language="javascript" type="text/javascript" src="<?php echo PROJECT_PATH; ?>/resources/jquery/flot/jquery.flot.time.js"></script>
2015-02-15 10:15:34 +01:00
<div align='center'>
<table>
<tr>
<td align='left' colspan='2'>
<div id="placeholder-legend" style="padding:2px;margin-bottom: 8px;border-radius: 3px 3px 3px 3px;border: 1px solid #E6E6E6;display: inline-block;margin: 0 auto;"></div>
</td>
</tr>
<tr>
<td align='left'>
<div id="placeholder" style="width:700px;height:180px;margin-right:25px;"></div>
</td>
<td align='left' valign='top'>
<p id="choices"></p>
</td>
</tr>
</table>
2015-02-15 10:15:34 +01:00
</div>
<script type="text/javascript">
$(function () {
var datasets = {
"volume": {
label: "Volume",
data: <?php echo json_encode($graph['volume']); ?>
},
"minutes": {
label: "Minutes",
data: <?php echo json_encode($graph['minutes']); ?>
},
"call_per_min": {
label: "Calls Per Min",
data: <?php echo json_encode($graph['call_per_min']); ?>
},
"missed": {
label: "Missed",
data: <?php echo json_encode($graph['missed']); ?>
},
"asr": {
label: "ASR",
data: <?php echo json_encode($graph['asr']); ?>
},
"aloc": {
label: "ALOC",
data: <?php echo json_encode($graph['aloc']); ?>
},
};
// hard-code color indices to prevent them from shifting as
// countries are turned on/off
var i = 0;
$.each(datasets, function(key, val) {
val.color = i;
++i;
});
// insert checkboxes
var choiceContainer = $("#choices");
$.each(datasets, function(key, val) {
choiceContainer.append('<br /><span style="white-space: nowrap;"><input type="checkbox" name="' + key +
'" checked="checked" id="id' + key + '">&nbsp;' +
'<label for="id' + key + '">'
+ val.label + '</label></span>');
});
choiceContainer.find("input").on('click', plotAccordingToChoices);
function plotAccordingToChoices() {
var data = [];
choiceContainer.find("input:checked").each(function () {
var key = $(this).attr("name");
if (key && datasets[key])
data.push(datasets[key]);
});
if (data.length > 0)
$.plot($("#placeholder"), data, {
legend:{
show: true,
noColumns: 10,
container: $("#placeholder-legend"),
placement: 'outsideGrid',
},
yaxis: { min: 0 },
<?php
2019-09-03 16:29:44 +02:00
if ($hours <= 48) {
echo "xaxis: {mode: \"time\",timeformat: \"%d:%H\",minTickSize: [1, \"hour\"]}";
}
else if ($hours > 48 && $hours < 168) {
echo "xaxis: {mode: \"time\",timeformat: \"%m:%d\",minTickSize: [1, \"day\"]}";
}
else {
echo "xaxis: {mode: \"time\",timeformat: \"%m:%d\",minTickSize: [1, \"month\"]}";
}
?>
});
}
plotAccordingToChoices();
});
</script>
<?php
//show the results
echo "<table class='list'>\n";
echo "<tr class='list-header'>\n";
echo " <th>".$text['table-hours']."</th>\n";
echo " <th>".$text['table-date']."</th>\n";
echo " <th class='no-wrap'>".$text['table-time']."</th>\n";
echo " <th>Volume</th>\n";
echo " <th>".$text['table-minutes']."</th>\n";
echo " <th>".$text['table-calls-per-minute']."</th>\n";
echo " <th class='center'>".$text['table-missed']."</th>\n";
echo " <th>ASR</th>\n";
echo " <th>ALOC</th>\n";
echo "</tr>\n";
$i = 0;
foreach ($stats as $row) {
echo "<tr class='list-row'>\n";
if ($i <= $hours) {
echo " <td>".($i+1)."</td>\n";
}
2019-09-03 16:29:44 +02:00
else if ($i == $hours+1) {
echo " <br /><br />\n";
echo "</tr>\n";
echo "<tr>\n";
echo " <td>\n";
echo " <br /><br />\n";
echo " </td>\n";
echo "</tr>\n";
echo "<tr class='list-header'>\n";
echo " <th class='no-wrap'>".$text['table-days']."</th>\n";
echo " <th class='no-wrap'>".$text['table-date']."</th>\n";
echo " <th class='no-wrap'>".$text['table-time']."</th>\n";
echo " <th>Volume</th>\n";
echo " <th>".$text['table-minutes']."</th>\n";
echo " <th class='no-wrap'>".$text['table-calls-per-minute']."</th>\n";
echo " <th class='center'>".$text['table-missed']."</th>\n";
echo " <th>ASR</th>\n";
echo " <th>ALOC</th>\n";
echo "</tr>\n";
echo "<tr class='list-row'>\n";
}
if ($i > $hours) {
echo " <td>" . floor(escape($row['hours'])/24) . "</td>\n";
}
if ($i <= $hours) {
echo " <td>".date('j M', $row['start_epoch'])."</td>\n";
echo " <td>".date('H:i', $row['start_epoch'])." - ".date('H:i', $row['stop_epoch'])."&nbsp;</td>\n";
}
else {
echo " <td>".date('j M', $row['start_epoch'])."&nbsp;</td>\n";
echo " <td>".date('H:i', $row['start_epoch'])." - ".date('j M H:i', $row['stop_epoch'])."&nbsp;</td>\n";
}
echo " <td>".escape($row['volume'])."&nbsp;</td>\n";
echo " <td>".(round(escape($row['minutes']),2))."&nbsp;</td>\n";
echo " <td>".(round(escape($row['avg_min']),2))."&nbsp;/&nbsp;".(round(escape($row['cpm_ans']),2))."&nbsp;</td>\n";
echo " <td class='center'><a href=\"xml_cdr.php?call_result=missed&direction=$direction&start_epoch=".escape($row['start_epoch'])."&stop_epoch=".escape($row['stop_epoch'])."\">".escape($row['missed'])."</a>&nbsp;</td>\n";
echo " <td>".(round(escape($row['asr']),2))."&nbsp;</td>\n";
echo " <td>".(round(escape($row['aloc']),2))."&nbsp;</td>\n";
echo "</tr >\n";
$i++;
}
echo "</table>\n";
2015-02-15 12:57:14 +01:00
echo "<br><br>";
//include the footer
require_once "resources/footer.php";
2018-06-13 08:47:42 +02:00
?>