diff options
author | Chris Buechler <cmb@pfsense.org> | 2009-02-15 14:03:53 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2009-02-15 14:03:53 -0500 |
commit | 124aee67adde2663086ed2b9c408c24f22340712 (patch) | |
tree | 9cf194ec9c74270926d84cdb9e31d7e21c5b9568 /usr | |
parent | 3d9567bdeb4d51e3f75ef427b8fd3b119d9e6fc5 (diff) | |
download | pfsense-124aee67adde2663086ed2b9c408c24f22340712.zip pfsense-124aee67adde2663086ed2b9c408c24f22340712.tar.gz |
Revert "Unbreak System Gateways page. I'll just add back the changes from the old CVS repo afterwards."
This reverts commit e31534731ec7de3d2599cf669e065b1ec52281a0.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/system_gateways.php | 20 | ||||
-rwxr-xr-x | usr/local/www/system_gateways_edit.php | 132 |
2 files changed, 69 insertions, 83 deletions
diff --git a/usr/local/www/system_gateways.php b/usr/local/www/system_gateways.php index 17a0751..3b0cd6c 100755 --- a/usr/local/www/system_gateways.php +++ b/usr/local/www/system_gateways.php @@ -1,5 +1,5 @@ <?php -/* $Id: system_gateways.php,v 1.1 2008/11/06 16:46:42 sumacob Exp $ */ +/* $Id$ */ /* system_gateways.php part of pfSense (http://pfsense.com) @@ -39,10 +39,7 @@ require("guiconfig.inc"); -if (!is_array($config['gateways']['gateway_item'])) - $config['gateways']['gateway_item'] = array(); - -$a_gateways = &$config['gateways']['gateway_item']; +$a_gateways = return_gateways_array(); $changedesc = "Gateways: "; if ($_POST) { @@ -71,8 +68,12 @@ if ($_POST) { if ($_GET['act'] == "del") { if ($a_gateways[$_GET['id']]) { - $changedesc .= "removed gateway {$_GET['id']}"; - unset($a_gateways[$_GET['id']]); + /* remove the real entry */ + $realid = $a_gateways[$_GET['id']]['attribute']; + $a_gateways = &$config['gateways']['gateway_item']; + + $changedesc .= "removed gateway {$realid}"; + unset($a_gateways[$realid]); write_config($changedesc); touch($d_staticroutesdirty_path); header("Location: system_gateways.php"); @@ -80,6 +81,7 @@ if ($_GET['act'] == "del") { } } + $pgtitle = array("System","Gateways"); include("head.inc"); @@ -128,9 +130,9 @@ effect.");?><br> <tr> <td class="listlr" ondblclick="document.location='system_gateways_edit.php?id=<?=$i;?>';"> <?php - echo $gateway['name']; + echo strtoupper($gateway['name']); if(isset($gateway['defaultgw'])) { - echo " <br /><strong>({$gateway['type']} default)<strong>"; + echo " <strong>(default)<strong>"; } ?> diff --git a/usr/local/www/system_gateways_edit.php b/usr/local/www/system_gateways_edit.php index 15b60e1..314b45d 100755 --- a/usr/local/www/system_gateways_edit.php +++ b/usr/local/www/system_gateways_edit.php @@ -1,5 +1,5 @@ <?php -/* $Id: system_gateways_edit.php,v 1.3 2008/11/24 05:48:02 sumacob Exp $ */ +/* $Id$ */ /* system_gateways_edit.php part of pfSense (http://pfsense.com) @@ -37,13 +37,10 @@ ##|-PRIV -require_once("guiconfig.inc"); +require("guiconfig.inc"); require_once("IPv6.inc"); -if (!is_array($config['gateways']['gateway_item'])) - $config['gateways']['gateway_item'] = array(); - -$a_gateways = &$config['gateways']['gateway_item']; +$a_gateways = return_gateways_array(); if (isset($_GET['id'])) { $id = $_GET['id']; @@ -64,11 +61,14 @@ if (isset($id) && $a_gateways[$id]) { $pconfig['defaultgw'] = $a_gateways[$id]['defaultgw']; $pconfig['monitor'] = $a_gateways[$id]['monitor']; $pconfig['descr'] = $a_gateways[$id]['descr']; + $pconfig['attribute'] = $a_gateways[$id]['attribute']; $pconfig['type'] = $a_gateways[$id]['type']; } -if (isset($_GET['dup'])) +if (isset($_GET['dup'])) { unset($id); + unset($pconfig['attribute']); +} if ($_POST) { @@ -81,12 +81,17 @@ if ($_POST) { do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); + /* Does this gateway name already exist? */ + foreach($config['gateways']['gateway_item'] as $gw) + if($gw['name'] == $_POST['name']) + $input_errors[] = "This gateway name already exists."; + if (! isset($_POST['name'])) { $input_errors[] = "A valid gateway name must be specified."; } if ($_POST['type'] == 'IPv4') { - if (!is_ipaddr($_POST['gateway'])) { + if (!is_ipaddr($_POST['gateway']) && $pconfig['attribute'] != 'system') { $input_errors[] = "A valid IPv4 gateway address must be specified."; } @@ -94,7 +99,7 @@ if ($_POST) { $input_errors[] = "A valid IPv4 monitor address must be specified."; } } else if ($_POST['type'] == 'IPv6') { - if (!Net_IPv6::checkIPv6($_POST['gateway'])) { + if (!Net_IPv6::checkIPv6($_POST['gateway']) && $pconfig['attribute'] != 'system') { $input_errors[] = "A valid IPv6 gateway address must be specified."; } @@ -104,18 +109,6 @@ if ($_POST) { } else { $input_errors[] = "A network type must be specified."; } - - if ($_POST['defaultgw'] == "yes") { - $i=0; - foreach ($a_gateways as $gateway) { - if($id != $i && $config['gateways']['gateway_item'][$i]['type'] == $_POST['type']) { - unset($config['gateways']['gateway_item'][$i]['defaultgw']); - } else if ($config['gateways']['gateway_item'][$i]['type'] == $_POST['type']) { - $config['gateways']['gateway_item'][$i]['defaultgw'] = true; - } - $i++; - } - } /* check for overlaps */ foreach ($a_gateways as $gateway) { @@ -137,22 +130,46 @@ if ($_POST) { } if (!$input_errors) { - $gateway = array(); - $gateway['interface'] = $_POST['interface']; - $gateway['name'] = $_POST['name']; - $gateway['gateway'] = $_POST['gateway']; - $gateway['monitor'] = $_POST['monitor']; - $gateway['descr'] = $_POST['descr']; - $gateway['type'] = $_POST['type']; - - if($_POST['defaultgw'] == "yes") { - $gateway['defaultgw'] = true; + /* if we are processing a system gateway only save the monitorip */ + if($pconfig['attribute'] == "system") { + $config['interfaces'][$_POST['interface']]['monitorip'] = $_POST['monitor']; } - if (isset($id) && $a_gateways[$id]) - $a_gateways[$id] = $gateway; - else - $a_gateways[] = $gateway; + /* Manual gateways are handled differently */ + /* rebuild the array with the manual entries only */ + if (!is_array($config['gateways']['gateway_item'])) + $config['gateways']['gateway_item'] = array(); + + $a_gateways = &$config['gateways']['gateway_item']; + + if ($pconfig['attribute'] != "system") { + $gateway = array(); + $gateway['interface'] = $_POST['interface']; + $gateway['name'] = $_POST['name']; + $gateway['gateway'] = $_POST['gateway']; + $gateway['descr'] = $_POST['descr']; + $gateway['type'] = $_POST['type']; + + if ($_POST['defaultgw'] == "yes") { + $i=0; + foreach ($a_gateways as $gateway) { + if($id != $i && $config['gateways']['gateway_item'][$i]['type'] == $_POST['type']) { + unset($config['gateways']['gateway_item'][$i]['defaultgw']); + } else if ($config['gateways']['gateway_item'][$i]['type'] == $_POST['type']) { + $config['gateways']['gateway_item'][$i]['defaultgw'] = true; + } + $i++; + } + } + + /* when saving the manual gateway we use the attribute which has the corresponding id */ + $id = $pconfig['attribute']; + if (isset($id) && $a_gateways[$id]) { + $a_gateways[$id] = $gateway; + } else { + $a_gateways[] = $gateway; + } + } touch($d_staticroutesdirty_path); @@ -177,6 +194,12 @@ include("head.inc"); <?php include("fbegin.inc"); ?> <?php if ($input_errors) print_input_errors($input_errors); ?> <form action="system_gateways_edit.php" method="post" name="iform" id="iform"> + <?php + /* If this is a automatically added system gateway we need this var */ + if(($pconfig['attribute'] == "system") || is_numeric($pconfig['attribute'])) { + echo "<input type='hidden' name='attribute' id='attribute' value='{$pconfig['attribute']}' >\n"; + } + ?> <table width="100%" border="0" cellpadding="6" cellspacing="0"> <tr> <td colspan="2" valign="top" class="listtopic">Edit gateway</td> @@ -211,45 +234,6 @@ include("head.inc"); <tr> <td width="22%" valign="top" class="vncellreq">Type</td> <td width="78%" class="vtable"> - <!-- XXX --> - <? /* - <?php if (isset($_GET['id']) || $_POST): ?> - <select class="formselect" disabled="true"> - <?php - if ($pconfig['type'] == 'IPv6') { - $str = <<<EOD - <option value="IPv6" selected>IPv6</option> -EOD; - } else { - $str = <<<EOD - <option value="IPv4" selected>IPv4</option> -EOD; - } - - echo $str; - ?> - </select> - <input type="hidden" name="type" id="type" value="<?php htmlspecialchars($pconfig['type']); ?>" /> - <? else: ?> - <select name="type" class="formselect"> - <?php - if ($pconfig['type'] == 'IPv6') { - $str = <<<EOD - <option value="IPv4">IPv4</option> - <option value="IPv6" selected>IPv6</option> -EOD; - } else { - $str = <<<EOD - <option value="IPv4" selected>IPv4</option> - <option value="IPv6">IPv6</option> -EOD; - } - - echo $str; - ?> - </select> - <? endif; ?> - */ ?> <select name="type" class="formselect"> <?php if ($pconfig['type'] == 'IPv6') { |