From 259f606eb8b186e2b1033036a11467c610188100 Mon Sep 17 00:00:00 2001 From: Pierre POMES Date: Sun, 19 Feb 2012 19:25:09 -0500 Subject: Ticket #2205 - Main logic for relayd global settings screen, still need to add stuff (input validation, etc) before closing ticket --- usr/local/www/load_balancer_monitor.php | 1 + usr/local/www/load_balancer_pool.php | 1 + usr/local/www/load_balancer_setting.php | 141 +++++++++++++++++++++++++ usr/local/www/load_balancer_virtual_server.php | 1 + 4 files changed, 144 insertions(+) create mode 100755 usr/local/www/load_balancer_setting.php (limited to 'usr/local') diff --git a/usr/local/www/load_balancer_monitor.php b/usr/local/www/load_balancer_monitor.php index 5ed82e5..bbdc937 100755 --- a/usr/local/www/load_balancer_monitor.php +++ b/usr/local/www/load_balancer_monitor.php @@ -109,6 +109,7 @@ include("head.inc"); $tab_array[] = array(gettext("Pools"), false, "load_balancer_pool.php"); $tab_array[] = array(gettext("Virtual Servers"), false, "load_balancer_virtual_server.php"); $tab_array[] = array(gettext("Monitors"), true, "load_balancer_monitor.php"); + $tab_array[] = array(gettext("Settings"), false, "load_balancer_setting.php"); display_top_tabs($tab_array); ?> diff --git a/usr/local/www/load_balancer_pool.php b/usr/local/www/load_balancer_pool.php index 24c99db..73b4721 100755 --- a/usr/local/www/load_balancer_pool.php +++ b/usr/local/www/load_balancer_pool.php @@ -118,6 +118,7 @@ include("head.inc"); $tab_array[] = array(gettext("Pools"), true, "load_balancer_pool.php"); $tab_array[] = array(gettext("Virtual Servers"), false, "load_balancer_virtual_server.php"); $tab_array[] = array(gettext("Monitors"), false, "load_balancer_monitor.php"); + $tab_array[] = array(gettext("Settings"), false, "load_balancer_setting.php"); display_top_tabs($tab_array); ?> diff --git a/usr/local/www/load_balancer_setting.php b/usr/local/www/load_balancer_setting.php new file mode 100755 index 0000000..00444d9 --- /dev/null +++ b/usr/local/www/load_balancer_setting.php @@ -0,0 +1,141 @@ +. + Copyright (C) 2012 Pierre POMES . + 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. +*/ +/* + pfSense_MODULE: routing +*/ + +##|+PRIV +##|*IDENT=page-services-loadbalancer-setting +##|*NAME=Services: Load Balancer: setting page +##|*DESCR=Allow access to the 'Settings: Load Balancer: Settings' page. +##|*MATCH=load_balancer_setting.php* +##|-PRIV + +require_once("guiconfig.inc"); +require_once("functions.inc"); +require_once("filter.inc"); +require_once("shaper.inc"); +require_once("util.inc"); + +if (!is_array($config['load_balancer']['setting'])) { + $config['load_balancer']['setting'] = array(); +} +$lbsetting = &$config['load_balancer']['setting']; + +if ($_POST) { + + if ($_POST['apply']) { + $retval = 0; + $retval |= filter_configure(); + $retval |= relayd_configure(); + + $savemsg = get_std_save_message($retval); + clear_subsystem_dirty('loadbalancer'); + } else { + $pconfig = $_POST; + + $lbsetting['timeout'] = $_POST['timeout']; + $lbsetting['interval'] = $_POST['interval']; + + write_config(); + mark_subsystem_dirty('loadbalancer'); + } + header("Location: load_balancer_setting.php"); + exit; +} + +$pgtitle = array(gettext("Services"),gettext("Load Balancer"),gettext("Settings")); +$statusurl = "status_lb_pool.php"; +$logurl = "diag_logs_relayd.php"; + +include("head.inc"); + +?> + + +
+ + +

+" . gettext("You must apply the changes in order for them to take effect."));?>
+ + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + +
+ " class="formfld unknown"> +
+ +
+ " class="formfld unknown"> +
+ +
  + " /> +
+
+
+

+ + + diff --git a/usr/local/www/load_balancer_virtual_server.php b/usr/local/www/load_balancer_virtual_server.php index 624f418..ef3633b 100755 --- a/usr/local/www/load_balancer_virtual_server.php +++ b/usr/local/www/load_balancer_virtual_server.php @@ -115,6 +115,7 @@ include("head.inc"); $tab_array[] = array(gettext("Pools"), false, "load_balancer_pool.php"); $tab_array[] = array(gettext("Virtual Servers"), true, "load_balancer_virtual_server.php"); $tab_array[] = array(gettext("Monitors"), false, "load_balancer_monitor.php"); + $tab_array[] = array(gettext("Settings"), false, "load_balancer_setting.php"); display_top_tabs($tab_array); ?> -- cgit v1.1