From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 08/11] ipinfo.cgi: Display network flags of the given addresses. Date: Tue, 22 Sep 2020 20:25:06 +0200 Message-ID: <20200922182509.18643-8-stefan.schantl@ipfire.org> In-Reply-To: <20200922182509.18643-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2988153939485277522==" List-Id: --===============2988153939485277522== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Use the libloc data for gathering and displaying the stored network flags, like "Anonymous Proxy" for the addresses. The notice of a flag only will be displayed, if a flag is set for the network which contains the given address. Currently this notice text is "hardcoded" in englisch language, because the entire other content of the page is in Englisch (responses from RIR's) and also the flag names like "Anonymous Proxy" are only availabe in English. IMHO there is no need to to translate the string "This address is marked as" into different languages, because of the reasons abouve. Signed-off-by: Stefan Schantl --- html/cgi-bin/ipinfo.cgi | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/html/cgi-bin/ipinfo.cgi b/html/cgi-bin/ipinfo.cgi index 978488cb1..cce6097ff 100644 --- a/html/cgi-bin/ipinfo.cgi +++ b/html/cgi-bin/ipinfo.cgi @@ -64,6 +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); =20 # Try to get the continent of the country code. my $continent =3D &Location::get_continent_code($db_handle, $ccode); @@ -108,6 +109,17 @@ if (&General::validip($addr)) { } =20 &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); + + # 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); + + # Display notice. + print "

This address is marked as $network_flag_name.

\n"; + print "
\n"; + } + print "
\n";
 	foreach my $line (@lines) {
 		print &Header::cleanhtml($line,"y");
--=20
2.20.1


--===============2988153939485277522==--