2019-05-04 02:03:42 +02:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-05-04 02:03:42 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
|
|
|
|
$module = Modules::get('Stato dei servizi');
|
|
|
|
|
|
|
|
echo '
|
2020-12-31 16:13:28 +01:00
|
|
|
<script src="'.base_url().'/assets/dist/js/chartjs/Chart.min.js"></script>';
|
2019-05-04 02:03:42 +02:00
|
|
|
|
|
|
|
// Operazioni JavaScript
|
|
|
|
echo '
|
|
|
|
<script>
|
|
|
|
|
2020-06-25 17:56:59 +02:00
|
|
|
function formatBytes(a,b=2){if(0===a)return"0 Bytes";const c=0>b?0:b,d=Math.floor(Math.log(a)/Math.log(1024));return parseFloat((a/Math.pow(1024,d)).toFixed(c))+" "+["Bytes","KB","MB","GB","TB","PB","EB","ZB","YB"][d]}
|
|
|
|
|
2019-05-04 02:03:42 +02:00
|
|
|
$(document).ready(function() {
|
|
|
|
$.ajax({
|
|
|
|
url: globals.rootdir + "/actions.php",
|
|
|
|
type: "get",
|
|
|
|
data: {
|
|
|
|
id_module: '.$module->id.',
|
|
|
|
op: "sizes",
|
|
|
|
},
|
|
|
|
success: function(data) {
|
|
|
|
data = JSON.parse(data);
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2019-05-04 02:03:42 +02:00
|
|
|
crea_grafico(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function crea_grafico(values){
|
|
|
|
var ctx = $("#chart");
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
$labels = [];
|
|
|
|
values.forEach(function(element) {
|
|
|
|
$data.push(element.size);
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2020-06-25 17:56:59 +02:00
|
|
|
//Segnalazione se sul server sembrano mancare file rispetto a quanto previsto a DB
|
|
|
|
if (element.dbSize!==""){
|
|
|
|
if (element.size<element.dbSize){
|
|
|
|
var diff = (element.dbSize-element.size);
|
|
|
|
|
|
|
|
if (diff>1000){
|
2020-06-26 13:02:38 +02:00
|
|
|
$("#message").append("<div class=\"label label-warning\" ><i class=\"fa fa-exclamation-triangle\" aria-hidden=\"true\"></i> "+formatBytes(diff)+" di file mancanti per allegati.</div><br>");
|
2020-06-25 17:56:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Segnalazione se sul server sembrano mancare file rispetto a quanto previsto a DB
|
|
|
|
if (element.dbCount!==""){
|
|
|
|
if (element.count<element.dbCount){
|
|
|
|
var diff = (element.dbCount-element.count);
|
|
|
|
|
2020-07-17 17:34:06 +02:00
|
|
|
$("#message").append("<div class=\"label label-warning\" ><i class=\"fa fa-exclamation-triangle\" aria-hidden=\"true\"></i> "+diff+" file non trovati sul disco.</div><br>");
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2020-06-25 17:56:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 13:02:38 +02:00
|
|
|
//Numero di file in Allegati per estensione
|
|
|
|
if (element.dbExtensions.length > 0){
|
|
|
|
|
2020-07-17 17:34:06 +02:00
|
|
|
$("#message").append("<br><p><b>Top 10 allegati:</b></p>");
|
2020-06-26 13:02:38 +02:00
|
|
|
|
|
|
|
element.dbExtensions.forEach(function(extension) {
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2020-06-26 13:02:38 +02:00
|
|
|
$("#message").append("<div class=\"label label-info\" ><i class=\"fa fa-file\" aria-hidden=\"true\"></i> <b>"+extension["NUM"]+"</b> file con estensione <b>"+extension["EXTENSION"]+"</b>.</div><br>");
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-06-25 17:56:59 +02:00
|
|
|
$labels.push(element.description + " (" + element.formattedSize + ")" + " [" + element.count + "]" )
|
|
|
|
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2019-05-04 02:03:42 +02:00
|
|
|
});
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2019-05-04 02:03:42 +02:00
|
|
|
options = {
|
|
|
|
legend: {
|
|
|
|
display: true,
|
|
|
|
position: "right"
|
|
|
|
},
|
|
|
|
animation:{
|
|
|
|
animateScale: true,
|
|
|
|
animateRotate: true,
|
2020-06-26 13:02:38 +02:00
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
title: function(tooltipItem, data) {
|
|
|
|
return data["labels"][tooltipItem[0]["index"]];
|
|
|
|
},
|
|
|
|
label: function(tooltipItem, data) {
|
|
|
|
//return data["datasets"][0]["data"][tooltipItem["index"]];
|
|
|
|
var dataset = data["datasets"][0];
|
|
|
|
var percent = Math.round((dataset["data"][tooltipItem["index"]] / dataset["_meta"][0]["total"]) * 100)
|
|
|
|
return "(" + percent + "%)";
|
|
|
|
},
|
|
|
|
afterLabel: function(tooltipItem, data) {
|
|
|
|
//var dataset = data["datasets"][0];
|
|
|
|
//var percent = Math.round((dataset["data"][tooltipItem["index"]] / dataset["_meta"][0]["total"]) * 100)
|
|
|
|
//return "(" + percent + "%)";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
backgroundColor: "#fbfbfb",
|
|
|
|
titleFontSize: 12,
|
|
|
|
titleFontColor: "#000",
|
|
|
|
bodyFontColor: "#444",
|
|
|
|
bodyFontSize: 10,
|
|
|
|
displayColors: true
|
|
|
|
}
|
2019-05-04 02:03:42 +02:00
|
|
|
};
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2019-05-04 02:03:42 +02:00
|
|
|
data = {
|
|
|
|
datasets: [{
|
|
|
|
data: $data,
|
|
|
|
backgroundColor: [
|
|
|
|
\'rgba(255, 99, 132, 0.2)\',
|
|
|
|
\'rgba(54, 162, 235, 0.2)\',
|
|
|
|
\'rgba(255, 206, 86, 0.2)\',
|
|
|
|
\'rgba(75, 192, 192, 0.2)\',
|
|
|
|
\'rgba(153, 102, 255, 0.2)\',
|
|
|
|
\'rgba(255, 159, 64, 0.2)\'
|
|
|
|
],
|
|
|
|
borderColor: [
|
|
|
|
\'rgba(255, 99, 132, 1)\',
|
|
|
|
\'rgba(54, 162, 235, 1)\',
|
|
|
|
\'rgba(255, 206, 86, 1)\',
|
|
|
|
\'rgba(75, 192, 192, 1)\',
|
|
|
|
\'rgba(153, 102, 255, 1)\',
|
|
|
|
\'rgba(255, 159, 64, 1)\'
|
|
|
|
],
|
|
|
|
}],
|
2020-09-07 15:04:06 +02:00
|
|
|
|
2019-05-04 02:03:42 +02:00
|
|
|
labels: $labels,
|
|
|
|
};
|
|
|
|
|
|
|
|
var chart = new Chart(ctx, {
|
|
|
|
type: "pie",
|
|
|
|
data: data,
|
|
|
|
options: options
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
2020-06-26 13:02:38 +02:00
|
|
|
<div id="message" class="pull-right"></div>
|
|
|
|
<div class="chart-container" style="width:35em;">
|
2019-05-04 02:03:42 +02:00
|
|
|
<canvas id="chart"></canvas>
|
2020-06-26 13:02:38 +02:00
|
|
|
</div>';
|