status_gateways.php 5.92 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
	Copyright (C) 2010 Seth Mos <seth.mos@dds.nl>.
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:

	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.

	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.

	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
	POSSIBILITY OF SUCH DAMAGE.
*/

29
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
30 31 32 33 34 35 36 37 38 39 40 41 42

$a_gateways = return_gateways_array();
$gateways_status = array();
$gateways_status = return_gateways_status(true);

$now = time();
$year = date("Y");

$pgtitle = array(gettext("Status"),gettext("Gateways"));
$shortcut_section = "gateways";
include("head.inc");

?>
43 44
<body>

Ad Schellevis's avatar
Ad Schellevis committed
45
<?php include("fbegin.inc"); ?>
46

47
	<section class="page-content-main">
48
		<div class="container-fluid">
49
			<div class="row">
50

51
				<?php if ($input_errors) print_input_errors($input_errors); ?>
52

53
			    <section class="col-xs-12">
54 55

				<?php
56 57 58 59 60 61
					        /* active tabs */
					        $tab_array = array();
					        $tab_array[] = array(gettext("Gateways"), true, "status_gateways.php");
					        $tab_array[] = array(gettext("Gateway Groups"), false, "status_gateway_groups.php");
					        display_top_tabs($tab_array);
					?>
62 63

				    <div class="tab-content content-box col-xs-12">
64 65

							<div class="responsive-table">
66 67


68
				              <table class="table table-striped table-sort">
69 70 71 72 73 74 75 76 77 78 79 80
				              <thead>
				                <tr>
				                  <td width="10%" class="listhdrr"><?=gettext("Name"); ?></td>
				                  <td width="10%" class="listhdrr"><?=gettext("Gateway"); ?></td>
				                  <td width="10%" class="listhdrr"><?=gettext("Monitor"); ?></td>
				                  <td width="8%" class="listhdrr"><?=gettext("RTT"); ?></td>
				                  <td width="7%" class="listhdrr"><?=gettext("Loss"); ?></td>
				                  <td width="35%" class="listhdrr"><?=gettext("Status"); ?></td>
				                  <td width="20%" class="listhdr"><?=gettext("Description"); ?></td>
								</tr>
				              </thead>
				              <tbody>
81 82 83 84 85 86 87 88 89 90
							  <?php foreach ($a_gateways as $gname => $gateway) {
								?>
					                <tr>
					                  <td class="listlr">
									<?=$gateway['name'];?>
					                  </td>
					                  <td class="listr" align="center" >
					                                <?php echo lookup_gateway_ip_by_name($gname);?>
					                  </td>
					                  <td class="listr" align="center" >
91
					                                <?php	if ($gateways_status[$gname])
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
											echo $gateways_status[$gname]['monitorip'];
										else
											echo $gateway['monitorip'];
									?>
					                  </td>
							<td class="listr" align="center">
							<?php	if ($gateways_status[$gname])
									echo $gateways_status[$gname]['delay'];
								else
									echo gettext("Pending");
							?>
									<?php $counter++; ?>
							</td>
							<td class="listr" align="center">
							<?php	if ($gateways_status[$gname])
									echo $gateways_status[$gname]['loss'];
								else
									echo gettext("Pending");
							?>
									<?php $counter++; ?>
							</td>
					                  <td class="listr" >
								<table border="0" cellpadding="0" cellspacing="2">
					                        <?php
									if ($gateways_status[$gname]) {
										$status = $gateways_status[$gname];
										if (stristr($status['status'], "force_down")) {
											$online = gettext("Offline (forced)");
											$bgcolor = "#F08080";  // lightcoral
										} elseif (stristr($status['status'], "down")) {
											$online = gettext("Offline");
											$bgcolor = "#F08080";  // lightcoral
										} elseif (stristr($status['status'], "loss")) {
											$online = gettext("Warning, Packetloss").': '.$status['loss'];
											$bgcolor = "#F0E68C";  // khaki
										} elseif (stristr($status['status'], "delay")) {
											$online = gettext("Warning, Latency").': '.$status['delay'];
											$bgcolor = "#F0E68C";  // khaki
										} elseif ($status['status'] == "none") {
											$online = gettext("Online");
											$bgcolor = "#90EE90";  // lightgreen
										}
									} else if (isset($gateway['monitor_disable'])) {
											$online = gettext("Online");
											$bgcolor = "#90EE90";  // lightgreen
									} else {
										$online = gettext("Pending");
										$bgcolor = "#D3D3D3";  // lightgray
									}
									echo "<tr><td><table width='100%'><tr><td bgcolor=\"$bgcolor\">&nbsp;$online&nbsp;</td></tr><tr><td>";
									$lastchange = $gateways_status[$gname]['lastcheck'];
									if(!empty($lastchange)) {
										echo gettext("Last check:") . '<br />' . $lastchange;
									}
									echo "</td></tr></table></td></tr>";
					                        ?>
								</table>
149

150 151 152
						  <td class="listbg"> <?=$gateway['descr']; ?></td>
				                </tr>
						<?php } ?>
Ad Schellevis's avatar
Ad Schellevis committed
153
						</tbody>
154 155 156 157 158 159 160
				              </table>
					</div>
				</div>
			</section>
		</div>
	</div>
</section>
Ad Schellevis's avatar
Ad Schellevis committed
161

162
<?php include("foot.inc"); ?>