From 5525974bd179ccd0e01e60dcaa1cd2b3cc1ddde5 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 26 Dec 2014 13:48:06 +0545 Subject: Display tunnel description on IPsec widget There was not even code to attempt to display the description. Also, when I first created a phase1 and there were no phase2 yet, the widget spat out the warning for the line: foreach ($config['ipsec']['phase2'] as $ph2ent){ ... So I enclosed that in a block: if (isset($config['ipsec']['phase2'])) { ... } Tabbing that block in makes the diff look big when there really is little change - a diff ignoring spacing will look much nicer! --- usr/local/www/widgets/widgets/ipsec.widget.php | 94 ++++++++++++++------------ 1 file changed, 49 insertions(+), 45 deletions(-) (limited to 'usr/local/www/widgets/widgets') diff --git a/usr/local/www/widgets/widgets/ipsec.widget.php b/usr/local/www/widgets/widgets/ipsec.widget.php index ee587a3..72a1f1b 100644 --- a/usr/local/www/widgets/widgets/ipsec.widget.php +++ b/usr/local/www/widgets/widgets/ipsec.widget.php @@ -68,57 +68,59 @@ if (isset($config['ipsec']['phase1'])) { ?> $ipsec_detail_array = array(); $ikev1num = array(); - foreach ($config['ipsec']['phase2'] as $ph2ent){ - if ($ph2ent['remoteid']['type'] == "mobile") - continue; - if (!ipsec_lookup_phase1($ph2ent,$ph1ent)) - continue; - - if (isset($ph1ent['disabled']) || isset($ph2ent['disabled'])) - continue; - - if ($ph1ent['iketype'] == 'ikev1') { - if (!isset($ikev1num[$ph1ent['ikeid']])) - $ikev1num[$ph1ent['ikeid']] = 0; - else - $ikev1num[$ph1ent['ikeid']]++; - $ikeid = "con{$ph1ent['ikeid']}00" . $ikev1num[$ph1ent['ikeid']]; - } else - $ikeid = "con{$ph1ent['ikeid']}"; - - $found = false; - foreach ($ipsec_status['query']['ikesalist']['ikesa'] as $ikesa) { - if ($ikeid == $ikesa['peerconfig']) { - $found = true; - $ph2ikeid = $ikesa['id']; - if (ipsec_phase1_status($ipsec_status['query']['ikesalist']['ikesa'], $ph2ikeid)) { - /* tunnel is up */ - $iconfn = "true"; - $activecounter++; - } else { - /* tunnel is down */ - $iconfn = "false"; - $inactivecounter++; + if (isset($config['ipsec']['phase2'])) { + foreach ($config['ipsec']['phase2'] as $ph2ent) { + if ($ph2ent['remoteid']['type'] == "mobile") + continue; + if (!ipsec_lookup_phase1($ph2ent,$ph1ent)) + continue; + + if (isset($ph1ent['disabled']) || isset($ph2ent['disabled'])) + continue; + + if ($ph1ent['iketype'] == 'ikev1') { + if (!isset($ikev1num[$ph1ent['ikeid']])) + $ikev1num[$ph1ent['ikeid']] = 0; + else + $ikev1num[$ph1ent['ikeid']]++; + $ikeid = "con{$ph1ent['ikeid']}00" . $ikev1num[$ph1ent['ikeid']]; + } else + $ikeid = "con{$ph1ent['ikeid']}"; + + $found = false; + foreach ($ipsec_status['query']['ikesalist']['ikesa'] as $ikesa) { + if ($ikeid == $ikesa['peerconfig']) { + $found = true; + $ph2ikeid = $ikesa['id']; + if (ipsec_phase1_status($ipsec_status['query']['ikesalist']['ikesa'], $ph2ikeid)) { + /* tunnel is up */ + $iconfn = "true"; + $activecounter++; + } else { + /* tunnel is down */ + $iconfn = "false"; + $inactivecounter++; + } } } - } - if ($found === false) { - /* tunnel is down */ - $iconfn = "false"; - $inactivecounter++; - } + if ($found === false) { + /* tunnel is down */ + $iconfn = "false"; + $inactivecounter++; + } - $ipsec_detail_array[] = array('src' => convert_friendly_interface_to_friendly_descr($ph1ent['interface']), - 'dest' => $ph1ent['remote-gateway'], - 'remote-subnet' => ipsec_idinfo_to_text($ph2ent['remoteid']), - 'descr' => $ph2ent['descr'], - 'status' => $iconfn); + $ipsec_detail_array[] = array('src' => convert_friendly_interface_to_friendly_descr($ph1ent['interface']), + 'dest' => $ph1ent['remote-gateway'], + 'remote-subnet' => ipsec_idinfo_to_text($ph2ent['remoteid']), + 'descr' => $ph2ent['descr'], + 'status' => $iconfn); + } } unset($ikev1num); } - if (isset($config['ipsec']['phase2'])){ ?> + if (isset($config['ipsec']['phase2'])) { ?>
@@ -158,11 +160,13 @@ if (isset($config['ipsec']['phase1'])) { ?>
()
-
+
+ +