From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] Add GeoIP location to nameservers
Date: Mon, 04 Jan 2016 16:59:40 +0000 [thread overview]
Message-ID: <1451926780.31655.263.camel@ipfire.org> (raw)
In-Reply-To: <5686D08D.7000802@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3603 bytes --]
Just out of curiosity, why do you find this information so helpful?
-Michael
On Fri, 2016-01-01 at 20:16 +0100, Matthias Fischer wrote:
> Hi,
>
> Tested.
>
> Works.
>
> Thanks! ;-)
>
> One suggestion:
>
> If you change line ~156 in 'netexternal.cgi' from:
>
> ...
> <td>$nameserver</td>
> ...
>
> to
>
> ...
> <td align="center">$nameserver</td>
> ...
>
> it looks even better... (see Attachment)
>
> Jm2C!
>
> Best,
> Matthias
>
>
> On 01.01.2016 18:11, IT Superhack wrote:
> > Add the GeoIP location flag to the nameservers entry on
> > netexternal.cgi. The appropriate flag is shown between
> > ip address and dnssec status.
> >
> > Signed-off-by: Timmothy Wilson <itsuperhack(a)web.de>
> > ---
> > diff --git a/html/cgi-bin/netexternal.cgi b/html/cgi
> > -bin/netexternal.cgi
> > index 299612d..757785e 100644
> > --- a/html/cgi-bin/netexternal.cgi
> > +++ b/html/cgi-bin/netexternal.cgi
> > @@ -19,6 +19,7 @@
> > #
> > #
> >
> > ###################################################################
> > ############
> >
> > +use Geo::IP::PurePerl;
> > use strict;
> >
> > # enable only the following on debugging purpose
> > @@ -28,6 +29,7 @@ use strict;
> > require '/var/ipfire/general-functions.pl';
> > require "${General::swroot}/lang.pl";
> > require "${General::swroot}/header.pl";
> > +require "${General::swroot}/geoip-functions.pl";
> > require "${General::swroot}/graphs.pl";
> >
> > my %color = ();
> > @@ -99,6 +101,9 @@ if ( $querry[0] ne~ ""){
> > <strong>$Lang::tr
> > {'nameserver'}</strong>
> > </th>
> > <th align="center">
> > + <strong>$Lang::tr{
> > 'location'}</strong>
> > + </th>
> > + <th align="center">
> > <strong>$Lang::tr
> > {'status'}</strong>
> > </th>
> > </tr>
> > @@ -138,10 +143,20 @@ END
> > }
> >
> > my $table_colour = ($id++ % 2) ?
> > $color{'color22'} : $color{'color20'};
> > +
> > + # geoip lookup
> > + my $geoaddr = Geo::IP::PurePerl->new();
> > + my $ccode = $geoaddr
> > ->country_code_by_name($nameserver);
> > + my $fcode = lc($ccode);
> > + # Get flag icon for of the country.
> > + my $flag_icon = &GeoIP::get_flag_icon($ccode);
> >
> > print <<END;
> > <tr bgcolor="$table_colour">
> > <td>$nameserver</td>
> > + <td align="center">
> > + <a href='/cgi
> > -bin/country.cgi#$fcode'><img src='$flag_icon' border='0'
> > align='absmiddle' alt='$ccode' title='$ccode'></a>
> > + </td>
> > <td bgcolor="$bgcolour"
> > align="center">
> > <font
> > color="$colour"><strong>$message</strong></font>
> > </td>
> > diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl
> > index 2bca854..836d12f 100644
> > --- a/langs/de/cgi-bin/de.pl
> > +++ b/langs/de/cgi-bin/de.pl
> > @@ -1429,6 +1429,7 @@
> > 'local vpn hostname/ip' => 'Lokaler VPN Hostname/IP',
> > 'localkey' => 'Localkey',
> > 'localkeyfile' => 'Localkeyfile',
> > +'location' => 'Standort',
> > 'log' => 'Protokoll',
> > 'log enabled' => 'Log aktiviert',
> > 'log level' => 'Log Level',
> > diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl
> > index 4c52392..51a6241 100644
> > --- a/langs/en/cgi-bin/en.pl
> > +++ b/langs/en/cgi-bin/en.pl
> > @@ -1459,6 +1459,7 @@
> > 'local vpn hostname/ip' => 'Local VPN Hostname/IP',
> > 'localkey' => 'Localkey',
> > 'localkeyfile' => 'Localkeyfile',
> > +'location' => 'Location',
> > 'log' => 'Log',
> > 'log enabled' => 'Log Enabled',
> > 'log level' => 'Log Level',
> >
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next parent reply other threads:[~2016-01-04 16:59 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <5686D08D.7000802@ipfire.org>
2016-01-04 16:59 ` Michael Tremer [this message]
2016-01-04 17:16 ` Matthias Fischer
2016-01-10 16:25 ` IT Superhack
2016-01-10 22:15 ` Michael Tremer
2016-01-11 8:10 ` IT Superhack
2016-01-19 1:30 ` Michael Tremer
2016-01-19 6:57 ` IT Superhack
2016-01-01 17:11 IT Superhack
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1451926780.31655.263.camel@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox