Files
Web-Infra-Reports-IT/Hyper-V/VMs-Backups.php
e025532 d1f7f5f313 .
2024-11-26 09:37:10 +01:00

168 lines
6.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Page Title -->
<title>Web Infra Reports IT</title>
<link rel="shortcut icon" type="image/png" href="/include/favicon-32x32.png">
<!-- JQuery -->
<script src="/js/jquery-3.6.1.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/bootstrap-icons/bootstrap-icons.css">
<link rel="stylesheet" href="/css/preloader.css">
<script src="/js/bootstrap.bundle.min.js"></script>
<!-- Bootstrap-tables -->
<link rel="stylesheet" href="/css/bootstrap-table.min.css">
<script src="/js/bootstrap-table.min.js"></script>
<script src="/js/bootstrap-table-fr-FR.min.js"></script>
<script src="/js/tableExport.min.js"></script>
<script src="/js/bootstrap-table-export.min.js"></script>
<script src="/js/libs/js-xlsx/xlsx.core.min.js"></script>
</head>
<body class="bg-light text-dark">
<?php include $_SERVER['DOCUMENT_ROOT'] . "/include/all.php"; ?> <!-- Include All -->
<?php // DATA
$answers = Invoke_WebInfraReports("SELECT a.VM, a.LastBackup, a.Result, a.LastGoodBackup, a.Host, b.OS
FROM netbackup_vms a
left join globalcrossover b on a.VM = b.Server
where a.vm not like 'WS%' order by a.VM");
?>
<!-- HTML -->
<div class="container-fluid" id="content">
<div class="row flex-nowrap">
<!-- Left NAVBAR -->
<div class="col-auto col-md-2 col-xl-2 px-sm-2 px-0 bg-dark" style="-ms-flex: 0 0 230px;flex: 0 0 230px;">
<?php include $_SERVER['DOCUMENT_ROOT'] . "/navbar.html"; ?>
</div>
<!-- Display -->
<div class="col py-3">
<!-- Page Title -->
<h1><span class="badge text-bg-secondary font-weight-bold" style="width:100%;" id="ERR"></span></h1>
<!-- Main content -->
<div class="container-fluid">
<!-- MODAL WAIT -->
<div class="modal fade bs-example-modal-sm" id="wait" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="static" style="padding-top: 15%;">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title mb-1 text-dark text-uppercase">
<center><i class="bi bi-hourglass-split"></i><br> Work in progress ...</center>
</h4>
</div>
<div class="modal-body">
<div class="progress">
<div class="progress-bar progress-bar-secondary progress-bar-striped progress-bar-animated" style="width: 100%"></div>
</div>
</div>
</div>
</div>
</div>
<!-- TABLE -->
<div>
<table class='table table-bordered table-hover table-sm' id='t1' data-height="620" data-toggle="table" data-search="true" data-show-columns="true" data-export-types="['xlsx','csv','json']" data-show-export="true" data-sortable="true" data-sort-name="VM">
<thead> <!-- Header -->
<th data-field='vm' data-sortable='true'>VM</th>
<th data-field='Last Backup' data-sortable='true'>Last Backup</th>
<th data-field='LastGood' data-sortable='true'>Last Good Backup</th>
<th data-field='OS' data-sortable='true'>OS</th>
<th data-field='Host' data-sortable='true'>Host</th>
</thead>
<tbody> <!-- Body -->
<?php
$er = 0;
foreach ($answers as $row) {
$ok = 1;
if($row['LastBackup'] == 0){
echo '<tr class="table-primary">';
echo '<td><b>'.$row['VM'].'</b></td>';
echo '<td>Excluded via VMM</td>';
echo '<td></td><td>'.$row['OS'].'</td><td>'.$row['Host'].'</td>';
}else{
echo '<tr>';
$date1 = date_create($row['LastGoodBackup']);
$diff = date_diff($date1, date_create(date("Y-m-d")));
if ($diff->format("%R%a") > 3 || $row['LastGoodBackup'] == ""){
echo '<td class="table-danger"><b>'.$row['VM'].'</b></td>';
$ok = 0;
}else{
echo '<td class="table-success"><b>'.$row['VM'].'</b></td>';
}
if($row['Result'] === "0"){
echo '<td class="table-success">OK</td>';
}else{
$ok = 0;
if($row['Result'] == " : FAILED"){
echo '<td class="table-danger"> SNAPSHOT FAILED</td>';
}else{
echo '<td class="table-warning"> ERROR '.$row['Result'].'</td>';
}
}
if ($diff->format("%R%a") > 3 || $row['LastGoodBackup'] == ""){
echo '<td class="table-danger">'.$row['LastGoodBackup'].'</td>';
$ok = 0;
}else{
echo '<td class="table-success">'.$row['LastGoodBackup'].'</td>';
}
echo '<td>'.$row['OS'].'</td>';
echo '<td>'.$row['Host'].'</td>';
echo '</tr>' ;
}
if($ok ==0){$er++;}
}
?>
</tbody>
</table>
<br>
</div>
</div>
<!-- End of main content -->
</div>
</div>
</div>
</body>
<script src="/js/switch.js"></script>
</HTML>
<SCRIPT>
$(document).ready(function() {
$('#t1').DataTable({
scrollY: '50vh',
scrollCollapse: true,
paging: false,
});
});
$(function () {
var options = $('#t1').bootstrapTable('getOptions');
options.height= document.getElementById('content').clientHeight-170;
$('#t1').bootstrapTable('refreshOptions',options);
});
function tableresize() {
var options = $('#t1').bootstrapTable('getOptions');
options.height= document.getElementById('content').clientHeight-170;
$('#t1').bootstrapTable('refreshOptions',options);
};
window.addEventListener("resize", tableresize);
document.getElementById("ERR").innerHTML = "<?php echo 'VMs backups ('.$er.' issues)'; ?>";
</script>
</SCRIPT>