]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
captive-portal: Code cleanup
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 21 Apr 2017 15:29:39 +0000 (16:29 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 22 Sep 2017 17:54:45 +0000 (18:54 +0100)
No functional changes

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
html/html/captive/index.cgi

index cf84acf71edbc5439ff6c27c5d2a63d6adde0c72..7c5b5e7c94e3b6b8880b2abeb1bad4ede4729840 100755 (executable)
@@ -27,37 +27,29 @@ require '/var/ipfire/general-functions.pl';
 
 my $url = "http://$ENV{'SERVER_NAME'}$ENV{'REQUEST_URI'}";
 my $safe_url = uri_escape($url);
-my $settings="${General::swroot}/captive/settings";
-my $ethernet="${General::swroot}/ethernet/settings";
-my %settingshash=();
-my %ethernethash=();
-my $green_ip;
-my $green_mask;
-my $blue_ip;
-my $blue_mask;
+
+my %settingshash = ();
+my %ethernethash = ();
 my $target;
-#Read settings
-&General::readhash("$settings", \%settingshash) if(-f $settings);
-&General::readhash("$ethernet", \%ethernethash) if(-f $ethernet);
 
-#Get Clients IP-Address
-my $ip_address = $ENV{X_FORWARDED_FOR} || $ENV{REMOTE_ADDR} ||"";
+# Read settings
+&General::readhash("${General::swroot}/captive/settings", \%settingshash);
+&General::readhash("${General::swroot}/ethernet/settings", \%ethernethash);
+
+# Get the client's IP address
+my $client_address = $ENV{X_FORWARDED_FOR} || $ENV{REMOTE_ADDR} || "";
+
+if ($settingshash{'ENABLE_GREEN'} eq "on" && $ethernethash{'GREEN_ADDRESS'} ne '') {
+       if (&General::IpInSubnet($client_address, $ethernethash{'GREEN_ADDRESS'}, $ethernethash{'GREEN_NETMASK'})) {
+               $target = $ethernethash{'GREEN_ADDRESS'};
+       }
+
+} elsif($settingshash{'ENABLE_BLUE'} eq "on" && $ethernethash{'BLUE_ADDRESS'} ne '') {
+       if (&General::IpInSubnet($client_address, $ethernethash{'BLUE_ADDRESS'}, $ethernethash{'BLUE_NETMASK'})) {
+               $target = $ethernethash{'BLUE_ADDRESS'};
+       }
 
-if($settingshash{'ENABLE_GREEN'} eq "on" && $ethernethash{'GREEN_ADDRESS'} ne ''){
-               $green_ip=$ethernethash{'GREEN_ADDRESS'};
-               $green_mask=$ethernethash{'GREEN_NETMASK'};
-               
-               if (&General::IpInSubnet($ip_address,$ethernethash{'GREEN_ADDRESS'},$ethernethash{'GREEN_NETMASK'})){
-                       $target = $green_ip;
-               }
-}elsif($settingshash{'ENABLE_BLUE'} eq "on" &&$ethernethash{'BLUE_ADDRESS'} ne '' ){
-               $blue_ip=$ethernethash{'BLUE_ADDRESS'};
-               $blue_mask=$ethernethash{'BLUE_NETMASK'};
-               
-               if (&General::IpInSubnet($ip_address,$ethernethash{'BLUE_ADDRESS'},$ethernethash{'BLUE_NETMASK'})){
-                       $target = $blue_ip;
-               }
-}else{
+} else {
        exit 0;
 }