Dashboard - Domain Limits: Rework style to match other widgets.

This commit is contained in:
fusionate 2023-02-20 22:21:54 +00:00
parent 2c76741976
commit fc7a8106fb
No known key found for this signature in database
2 changed files with 218 additions and 133 deletions

View File

@ -1,4 +1,28 @@
<?php <?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>
Portions created by the Initial Developer are Copyright (C) 2017-2023
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
//set the include path //set the include path
$conf = glob("{/usr/local/etc,/etc}/fusionpbx/config.conf", GLOB_BRACE); $conf = glob("{/usr/local/etc,/etc}/fusionpbx/config.conf", GLOB_BRACE);
@ -6,9 +30,9 @@
//includes files //includes files
require_once "resources/require.php"; require_once "resources/require.php";
require_once "resources/check_auth.php";
//check permisions //check permisions
require_once "resources/check_auth.php";
if (permission_exists('xml_cdr_view')) { if (permission_exists('xml_cdr_view')) {
//access granted //access granted
} }
@ -26,96 +50,136 @@
$database = new database; $database = new database;
} }
//clear initial stat
unset($hud_stat);
//domain limits //domain limits
if (is_array($_SESSION['limit']) && sizeof($_SESSION['limit']) > 0) { if (is_array($_SESSION['limit']) && sizeof($_SESSION['limit']) > 0) {
echo "<div class='hud_box'>\n";
//set the row style
$c = 0; $c = 0;
$row_style["0"] = "row_style0"; $row_style["0"] = "row_style0";
$row_style["1"] = "row_style1"; $row_style["1"] = "row_style1";
$show_stat = true; //caller id
if (permission_exists('extension_view')) { echo "<div class='hud_box'>\n";
$sql = "select count(extension_uuid) from v_extensions ";
$sql .= "where domain_uuid = :domain_uuid ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$extension_total = $database->select($sql, $parameters, 'column');
unset($sql, $parameters);
//determine stats
if (permission_exists('user_view')) {
$sql_select[] = "(select count(user_uuid) from v_users where domain_uuid = :domain_uuid) as users";
}
if (permission_exists('call_center_active_view')) {
$sql_select[] = "(select count(call_center_queue_uuid) from v_call_center_queues where domain_uuid = :domain_uuid) as call_center_queues";
}
if (permission_exists('destination_view')) {
$sql_select[] = "(select count(destination_uuid) from v_destinations where domain_uuid = :domain_uuid) as destinations";
}
if (permission_exists('device_view')) {
$sql_select[] = "(select count(device_uuid) from v_devices where domain_uuid = :domain_uuid) as devices";
}
if (permission_exists('extension_view')) {
$sql_select[] = "(select count(extension_uuid) from v_extensions where domain_uuid = :domain_uuid) as extensions";
}
if (permission_exists('gateway_view')) {
$sql_select[] = "(select count(gateway_uuid) from v_gateways where domain_uuid = :domain_uuid) as gateways";
}
if (permission_exists('ivr_menu_view')) {
$sql_select[] = "(select count(ivr_menu_uuid) from v_ivr_menus where domain_uuid = :domain_uuid) as ivr_menus";
}
if (permission_exists('ring_group_view')) {
$sql_select[] = "(select count(ring_group_uuid) from v_ring_groups where domain_uuid = :domain_uuid) as ring_groups";
}
if (is_array($sql_select) && @sizeof($sql_select) != 0) {
$sql = "select ".implode(', ', $sql_select)." limit 1";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$usage = $database->select($sql, $parameters, 'row');
unset($sql, $parameters);
}
//determine chart data
if (permission_exists('extension_view')) {
$onclick = "onclick=\"document.location.href='".PROJECT_PATH."/app/extensions/extensions.php'\""; $onclick = "onclick=\"document.location.href='".PROJECT_PATH."/app/extensions/extensions.php'\"";
$hud_stat = $extension_total; $hud_stat_used = $usage['extensions'];
$hud_stat_title = $text['label-total_extensions']; $hud_stat_remaining = $_SESSION['limit']['extensions']['numeric'] - $usage['extensions'];
$hud_stat_title = $text['label-extensions'];
} }
else if (permission_exists('destination_view')) { else if (permission_exists('destination_view')) {
$sql = "select count(destination_uuid) from v_destinations ";
$sql .= "where domain_uuid = :domain_uuid ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$destination_total = $database->select($sql, $parameters, 'column');
unset($sql, $parameters);
$onclick = "onclick=\"document.location.href='".PROJECT_PATH."/app/destinations/destinations.php'\""; $onclick = "onclick=\"document.location.href='".PROJECT_PATH."/app/destinations/destinations.php'\"";
$hud_stat = $destination_total; $hud_stat_used = $usage['destinations'];
$hud_stat_title = $text['label-total_destinations']; $hud_stat_remaining = $_SESSION['limit']['destinations']['numeric'] - $usage['destinations'];
} $hud_stat_title = $text['label-destinations'];
else {
$show_stat = false;
} }
if ($show_stat) { //doughnut chart
//add doughnut chart echo "<div style='display: flex; flex-wrap: wrap; justify-content: center; padding-bottom: 20px;' onclick=\"$('#hud_domain_limits_details').slideToggle('fast');\">\n";
?> echo " <div style='width: 275px; height: 175px;'><canvas id='domain_limits_chart'></canvas></div>\n";
<div style='display: flex; flex-wrap: wrap; justify-content: center; padding-bottom: 25px;'> echo "</div>\n";
<div style='width: 175px; height: 175px;'>
<canvas id='domain_limits_chart'></canvas>
<div style='color: rgb(125,125,125); margin-top: 2px;'><?php echo $hud_stat_title;?></div>
</div>
</div>
<script> echo "<script>\n";
const domain_limits_chart = new Chart( echo " const domain_limits_chart = new Chart(\n";
document.getElementById('domain_limits_chart').getContext('2d'), echo " document.getElementById('domain_limits_chart').getContext('2d'),\n";
{ echo " {\n";
type: 'doughnut', echo " type: 'doughnut',\n";
data: { echo " data: {\n";
datasets: [{ echo " labels: [\n";
data:['<?php echo $hud_stat; ?>', 0.00001], echo " '".$hud_stat_title.": ".$hud_stat_used."',\n";
borderColor: 'rgba(0,0,0,0)', echo " '".$text['label-remaining'].": ".$hud_stat_remaining."',\n";
backgroundColor: ['#2a9df4', '#d4d4d4'], echo " ],\n";
cutout: chart_cutout echo " datasets: [{\n";
}] echo " data: [\n";
}, echo " '".$hud_stat_used."',\n";
options: { echo " '".$hud_stat_remaining."',\n";
responsive: true, echo " 0.00001,\n";
maintainAspectRatio: false, echo " ],\n";
plugins: { echo " backgroundColor: [\n";
chart_counter: { echo " '".$_SESSION['dashboard']['domain_limits_chart_color_used']['text']."',\n";
chart_text: '<?php echo $hud_stat; ?>', echo " '".$_SESSION['dashboard']['domain_limits_chart_color_remaining']['text']."',\n";
}, echo " ],\n";
legend: { echo " borderColor: '".$_SESSION['dashboard']['domain_limits_chart_border_color']['text']."',\n";
display: false echo " borderWidth: '".$_SESSION['dashboard']['domain_limits_chart_border_width']['text']."',\n";
}, echo " cutout: chart_cutout,\n";
title: { echo " }]\n";
display: true, echo " },\n";
text: '<?php echo $text['label-domain_limits']; ?>', echo " options: {\n";
fontFamily: chart_text_font echo " responsive: true,\n";
} echo " maintainAspectRatio: false,\n";
} echo " plugins: {\n";
}, echo " chart_counter: {\n";
plugins: [chart_counter], echo " chart_text: '".$hud_stat_used."'\n";
} echo " },\n";
); echo " legend: {\n";
</script> echo " position: 'right',\n";
<?php echo " reverse: false,\n";
} echo " labels: {\n";
echo " usePointStyle: true,\n";
echo " pointStyle: 'rect'\n";
echo " }\n";
echo " },\n";
echo " title: {\n";
echo " display: true,\n";
echo " text: '".$text['label-domain_limits']."',\n";
echo " fontFamily: chart_text_font\n";
echo " }\n";
echo " }\n";
echo " },\n";
echo " plugins: [chart_counter],\n";
echo " }\n";
echo " );\n";
echo "</script>\n";
//details
echo "<div class='hud_details hud_box' id='hud_domain_limits_details'>"; echo "<div class='hud_details hud_box' id='hud_domain_limits_details'>";
echo "<table class='tr_hover' width='100%' cellpadding='0' cellspacing='0' border='0'>\n"; echo "<table class='tr_hover' width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
echo "<tr>\n"; echo "<tr style='position: -webkit-sticky; position: sticky; z-index: 5; top: 0;'>\n";
echo "<th class='hud_heading' width='50%'>".$text['label-feature']."</th>\n"; echo "<th class='hud_heading' width='50%'>".$text['label-feature']."</th>\n";
echo "<th class='hud_heading' width='50%' style='text-align: center;'>".$text['label-used']."</th>\n"; echo "<th class='hud_heading' width='50%' style='text-align: center;'>".$text['label-used']."</th>\n";
echo "<th class='hud_heading' style='text-align: center;'>".$text['label-total']."</th>\n"; echo "<th class='hud_heading' style='text-align: center;'>".$text['label-total']."</th>\n";
echo "</tr>\n"; echo "</tr>\n";
//data
foreach ($_SESSION['limit'] as $category => $value) { foreach ($_SESSION['limit'] as $category => $value) {
$used = $usage[$category];
$limit = $value['numeric']; $limit = $value['numeric'];
switch ($category) { switch ($category) {
case 'users': case 'users':
@ -154,7 +218,7 @@
$tr_link = "href='".PROJECT_PATH.$url."'"; $tr_link = "href='".PROJECT_PATH.$url."'";
echo "<tr ".$tr_link." style='cursor: pointer;'>\n"; echo "<tr ".$tr_link." style='cursor: pointer;'>\n";
echo "<td valign='top' class='".$row_style[$c]." hud_text'><a ".$tr_link.">".$text['label-'.$category]."</a></td>\n"; echo "<td valign='top' class='".$row_style[$c]." hud_text'><a ".$tr_link.">".$text['label-'.$category]."</a></td>\n";
echo "<td valign='top' class='".$row_style[$c]." hud_text' style='text-align: center;'>".$stats['domain'][$category]['total']."</td>\n"; echo "<td valign='top' class='".$row_style[$c]." hud_text' style='text-align: center;'>".$used."</td>\n";
echo "<td valign='top' class='".$row_style[$c]." hud_text' style='text-align: center;'>".$limit."</td>\n"; echo "<td valign='top' class='".$row_style[$c]." hud_text' style='text-align: center;'>".$limit."</td>\n";
echo "</tr>\n"; echo "</tr>\n";
$c = ($c) ? 0 : 1; $c = ($c) ? 0 : 1;

View File

@ -2731,6 +2731,27 @@ $text['label-type']['sv-se'] = "Typ";
$text['label-type']['uk-ua'] = "Тип"; $text['label-type']['uk-ua'] = "Тип";
$text['label-type']['tr-tr'] = "Tür"; $text['label-type']['tr-tr'] = "Tür";
$text['label-remaining']['en-us'] = "Remaining";
$text['label-remaining']['en-gb'] = "Remaining";
$text['label-remaining']['ar-eg'] = "Remaining";
$text['label-remaining']['de-at'] = "Remaining";
$text['label-remaining']['de-ch'] = "Remaining";
$text['label-remaining']['de-de'] = "Remaining";
$text['label-remaining']['es-cl'] = "Remaining";
$text['label-remaining']['es-mx'] = "Remaining";
$text['label-remaining']['fr-ca'] = "Remaining";
$text['label-remaining']['fr-fr'] = "Remaining";
$text['label-remaining']['he-il'] = "Remaining";
$text['label-remaining']['it-it'] = "Remaining";
$text['label-remaining']['nl-nl'] = "Remaining";
$text['label-remaining']['pl-pl'] = "Remaining";
$text['label-remaining']['pt-br'] = "Remaining";
$text['label-remaining']['pt-pt'] = "Remaining";
$text['label-remaining']['ro-ro'] = "Remaining";
$text['label-remaining']['ru-ru'] = "Remaining";
$text['label-remaining']['sv-se'] = "Remaining";
$text['label-remaining']['uk-ua'] = "Remaining";
$text['label-category']['en-us'] = "Category"; $text['label-category']['en-us'] = "Category";
$text['label-category']['en-gb'] = "Category"; $text['label-category']['en-gb'] = "Category";
$text['label-category']['ar-eg'] = ""; $text['label-category']['ar-eg'] = "";