From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 10/11] ipinfo.cgi: Allow to display multiple flags. Date: Tue, 22 Sep 2020 20:25:08 +0200 Message-ID: <20200922182509.18643-10-stefan.schantl@ipfire.org> In-Reply-To: <20200922182509.18643-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6591043421797879483==" List-Id: --===============6591043421797879483== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Stefan Schantl --- config/cfgroot/location-functions.pl | 17 +++++++--- html/cgi-bin/ipinfo.cgi | 48 ++++++++++++++++++++++++---- 2 files changed, 55 insertions(+), 10 deletions(-) diff --git a/config/cfgroot/location-functions.pl b/config/cfgroot/location-f= unctions.pl index b0b8cd086..2cfe7f908 100644 --- a/config/cfgroot/location-functions.pl +++ b/config/cfgroot/location-functions.pl @@ -190,10 +190,13 @@ sub get_locations() { return @sorted_locations; } =20 -# Function to check if a given address has a special flag. -sub address_has_flag($) { +# Function to check if a given address has one ore more special flags. +sub address_has_flags($) { my ($address) =3D @_; =20 + # Array to store the flags of the address. + my @flags; + # Init libloc database handle. my $db_handle =3D &init(); =20 @@ -206,10 +209,16 @@ sub address_has_flag($) { # Grab the mapped location code for this flag. $mapped_code =3D $network_flags{$flag}; =20 - # Return the code. - return $mapped_code; + # Add the mapped code to the array of flags. + push(@flags, $mapped_code); } } + + # Sort the array of flags. + @flags =3D sort(@flags); + + # Return the array of flags. + return @flags; } =20 1; diff --git a/html/cgi-bin/ipinfo.cgi b/html/cgi-bin/ipinfo.cgi index cce6097ff..d8cb6c6b7 100644 --- a/html/cgi-bin/ipinfo.cgi +++ b/html/cgi-bin/ipinfo.cgi @@ -64,7 +64,7 @@ if (&General::validip($addr)) { # enumerate location information for IP address... my $db_handle =3D &Location::Functions::init(); my $ccode =3D &Location::Functions::lookup_country_code($db_handle, $addr); - my $network_flag =3D &Location::Functions::address_has_flag($addr); + my @network_flags =3D &Location::Functions::address_has_flags($addr); =20 # Try to get the continent of the country code. my $continent =3D &Location::get_continent_code($db_handle, $ccode); @@ -111,12 +111,48 @@ if (&General::validip($addr)) { &Header::openbox('100%', 'left', $addr . " <= img src=3D'$flag_icon' border=3D'0' align=3D'absmiddle' alt=3D'$ccode' title= =3D'$ccode' /> (" . $hostname . ') : '.$whois_server); =20 # Check if the address has a flag. - if ($network_flag) { - # Get - my $network_flag_name =3D &Location::Functions::get_full_country_name($net= work_flag); + if (@network_flags) { + # Get amount of flags for this network. + my $flags_amount =3D @network_flags; + my $processed_flags; + + # The message string which will be displayed. + my $message_string =3D "This address is marked as"; + + # Loop through the array of network_flags. + foreach my $network_flag (@network_flags) { + # Increment value of processed flags. + $processed_flags++; + + # Get the network flag name. + my $network_flag_name =3D &Location::Functions::get_full_country_name($ne= twork_flag); + + # Add the flag name to the message string. + $message_string =3D "$message_string" . " $network_flag_name"; + + # Check if multiple flags are set for this network. + if ($flags_amount gt "1") { + # Check if the the current flag is the next-to-last one. + if ($processed_flags eq $flags_amount - 1) { + $message_string =3D "$message_string" . " and "; + + # Check if the current flag it the last one. + } elsif ($processed_flags eq $flags_amount) { + # The message is finished add a dot for ending the sentence. + $message_string =3D "$message_string" . "."; + + # Otherwise add a simple comma to the message string. + } else { + $message_string =3D "$message_string" . ", "; + } + } else { + # Nothing special to do, simple add a dot to finish the sentence. + $message_string =3D "$message_string" . "."; + } + } =20 - # Display notice. - print "

This address is marked as $network_flag_name.

\n"; + # Display the generated notice. + print "

$message_string

\n"; print "
\n"; } =20 --=20 2.20.1 --===============6591043421797879483==--