public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] Add GeoIP information to ipinfo.cgi
@ 2016-01-01 16:41 IT Superhack
  2016-01-18 16:56 ` IT Superhack
  0 siblings, 1 reply; 3+ messages in thread
From: IT Superhack @ 2016-01-01 16:41 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2143 bytes --]

Add the GeoIP information to the general ip information
(address, reverse dns name) on the ipinfo.cgi.

The ip address is given to Geo::IP::PurePerl first, then
the country code and the flag icon path are queried.

Fixes a feature request filed under bug #10946

Signed-off-by: Timmothy Wilson <itsuperhack(a)web.de>
---
diff --git a/html/cgi-bin/ipinfo.cgi b/html/cgi-bin/ipinfo.cgi
index 71098a2..cebce23 100644
--- a/html/cgi-bin/ipinfo.cgi
+++ b/html/cgi-bin/ipinfo.cgi
@@ -20,6 +20,7 @@
 ###############################################################################
 
 use IO::Socket;
+use Geo::IP::PurePerl;
 use strict;
 
 # enable only the following on debugging purpose
@@ -27,10 +28,13 @@ use strict;
 #use CGI::Carp 'fatalsToBrowser';
 
 require '/var/ipfire/general-functions.pl';
+require "${General::swroot}/geoip-functions.pl";
 require "${General::swroot}/lang.pl";
 require "${General::swroot}/header.pl";
 
 my %cgiparams=();
+my $s;
+my @key;
 
 &Header::showhttpheaders();
 
@@ -52,6 +56,14 @@ next if $addr eq "";
 	my $iaddr = inet_aton($addr);
 	my $hostname = gethostbyaddr($iaddr, AF_INET);
 	if (!$hostname) { $hostname = $Lang::tr{'lookup failed'}; }
+	
+	# geoip lookup
+	my $geoaddr = Geo::IP::PurePerl->new();
+	my $ccode = $geoaddr->country_code_by_name($addr);
+	my $fcode = lc($ccode);
+	# Get flag icon for of the country.
+	my $flag_icon = &GeoIP::get_flag_icon($ccode);
+	
 
 	my $sock = new IO::Socket::INET ( PeerAddr => $whoisname, PeerPort => 43, Proto => 'tcp');
 	if ($sock)
@@ -84,7 +96,9 @@ next if $addr eq "";
 		@lines = ( "$Lang::tr{'unable to contact'} $whoisname" );
 	}
 
-	&Header::openbox('100%', 'left', $addr . ' (' . $hostname . ') : '.$whoisname);
+	# include geoip information here
+	&Header::openbox('100%', 'left', $addr . ' <a href=\'/cgi-bin/country.cgi#' . $fcode . '\'><img src=\'' . $flag_icon . '\' border=\'0\' align=\'absmiddle\' alt=\'' 
+.$ccode .'\' title=\'' . $ccode . '\'></a> (' . $hostname . ') : '.$whoisname);
 	print "<pre>\n";
 	foreach my $line (@lines) {
 		print &Header::cleanhtml($line,"y");


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Add GeoIP information to ipinfo.cgi
  2016-01-01 16:41 [PATCH] Add GeoIP information to ipinfo.cgi IT Superhack
@ 2016-01-18 16:56 ` IT Superhack
  2016-01-19  0:05   ` Michael Tremer
  0 siblings, 1 reply; 3+ messages in thread
From: IT Superhack @ 2016-01-18 16:56 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2484 bytes --]

Hello development-list,

I was just wondering if something is wrong
with the patch (code error/bad style?) because there
was no answer within ~ two weeks.

Best regards,
Timmothy Wilson

IT Superhack:
> Add the GeoIP information to the general ip information
> (address, reverse dns name) on the ipinfo.cgi.
> 
> The ip address is given to Geo::IP::PurePerl first, then
> the country code and the flag icon path are queried.
> 
> Fixes a feature request filed under bug #10946
> 
> Signed-off-by: Timmothy Wilson <itsuperhack(a)web.de>
> ---
> diff --git a/html/cgi-bin/ipinfo.cgi b/html/cgi-bin/ipinfo.cgi
> index 71098a2..cebce23 100644
> --- a/html/cgi-bin/ipinfo.cgi
> +++ b/html/cgi-bin/ipinfo.cgi
> @@ -20,6 +20,7 @@
>  ###############################################################################
>  
>  use IO::Socket;
> +use Geo::IP::PurePerl;
>  use strict;
>  
>  # enable only the following on debugging purpose
> @@ -27,10 +28,13 @@ use strict;
>  #use CGI::Carp 'fatalsToBrowser';
>  
>  require '/var/ipfire/general-functions.pl';
> +require "${General::swroot}/geoip-functions.pl";
>  require "${General::swroot}/lang.pl";
>  require "${General::swroot}/header.pl";
>  
>  my %cgiparams=();
> +my $s;
> +my @key;
>  
>  &Header::showhttpheaders();
>  
> @@ -52,6 +56,14 @@ next if $addr eq "";
>  	my $iaddr = inet_aton($addr);
>  	my $hostname = gethostbyaddr($iaddr, AF_INET);
>  	if (!$hostname) { $hostname = $Lang::tr{'lookup failed'}; }
> +	
> +	# geoip lookup
> +	my $geoaddr = Geo::IP::PurePerl->new();
> +	my $ccode = $geoaddr->country_code_by_name($addr);
> +	my $fcode = lc($ccode);
> +	# Get flag icon for of the country.
> +	my $flag_icon = &GeoIP::get_flag_icon($ccode);
> +	
>  
>  	my $sock = new IO::Socket::INET ( PeerAddr => $whoisname, PeerPort => 43, Proto => 'tcp');
>  	if ($sock)
> @@ -84,7 +96,9 @@ next if $addr eq "";
>  		@lines = ( "$Lang::tr{'unable to contact'} $whoisname" );
>  	}
>  
> -	&Header::openbox('100%', 'left', $addr . ' (' . $hostname . ') : '.$whoisname);
> +	# include geoip information here
> +	&Header::openbox('100%', 'left', $addr . ' <a href=\'/cgi-bin/country.cgi#' . $fcode . '\'><img src=\'' . $flag_icon . '\' border=\'0\' align=\'absmiddle\' alt=\'' 
> +.$ccode .'\' title=\'' . $ccode . '\'></a> (' . $hostname . ') : '.$whoisname);
>  	print "<pre>\n";
>  	foreach my $line (@lines) {
>  		print &Header::cleanhtml($line,"y");
> 



[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Add GeoIP information to ipinfo.cgi
  2016-01-18 16:56 ` IT Superhack
@ 2016-01-19  0:05   ` Michael Tremer
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Tremer @ 2016-01-19  0:05 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3380 bytes --]

Hi,

no I guess this is kind of alright. I just would have expected a bit
more feedback from the others here. Seems to be a bit of a lonely show
at the moment.

I have stated that at an other occasion recently that I do not think
that the information from a whois query and the geoip database is that
much related, but if it helps people that is okay for me.

However this seems to be an issue:

  The rules are pretty simple: If you comply and agree with the IPFire 
  Project Contributor Agreement, then you just add a line saying

    Signed-off-by: Random Developer <random(a)developer.example.org>

  using your real name. No pseudonyms or anonymous contributions.

From: http://wiki.ipfire.org/devel/git/tags

Best,
-Michael

On Mon, 2016-01-18 at 17:56 +0100, IT Superhack wrote:
> Hello development-list,
> 
> I was just wondering if something is wrong
> with the patch (code error/bad style?) because there
> was no answer within ~ two weeks.
> 
> Best regards,
> Timmothy Wilson
> 
> IT Superhack:
> > Add the GeoIP information to the general ip information
> > (address, reverse dns name) on the ipinfo.cgi.
> > 
> > The ip address is given to Geo::IP::PurePerl first, then
> > the country code and the flag icon path are queried.
> > 
> > Fixes a feature request filed under bug #10946
> > 
> > Signed-off-by: Timmothy Wilson <itsuperhack(a)web.de>
> > ---
> > diff --git a/html/cgi-bin/ipinfo.cgi b/html/cgi-bin/ipinfo.cgi
> > index 71098a2..cebce23 100644
> > --- a/html/cgi-bin/ipinfo.cgi
> > +++ b/html/cgi-bin/ipinfo.cgi
> > @@ -20,6 +20,7 @@
> >  ##################################################################
> > #############
> >  
> >  use IO::Socket;
> > +use Geo::IP::PurePerl;
> >  use strict;
> >  
> >  # enable only the following on debugging purpose
> > @@ -27,10 +28,13 @@ use strict;
> >  #use CGI::Carp 'fatalsToBrowser';
> >  
> >  require '/var/ipfire/general-functions.pl';
> > +require "${General::swroot}/geoip-functions.pl";
> >  require "${General::swroot}/lang.pl";
> >  require "${General::swroot}/header.pl";
> >  
> >  my %cgiparams=();
> > +my $s;
> > +my @key;
> >  
> >  &Header::showhttpheaders();
> >  
> > @@ -52,6 +56,14 @@ next if $addr eq "";
> >  	my $iaddr = inet_aton($addr);
> >  	my $hostname = gethostbyaddr($iaddr, AF_INET);
> >  	if (!$hostname) { $hostname = $Lang::tr{'lookup failed'};
> > }
> > +	
> > +	# geoip lookup
> > +	my $geoaddr = Geo::IP::PurePerl->new();
> > +	my $ccode = $geoaddr->country_code_by_name($addr);
> > +	my $fcode = lc($ccode);
> > +	# Get flag icon for of the country.
> > +	my $flag_icon = &GeoIP::get_flag_icon($ccode);
> > +	
> >  
> >  	my $sock = new IO::Socket::INET ( PeerAddr => $whoisname,
> > PeerPort => 43, Proto => 'tcp');
> >  	if ($sock)
> > @@ -84,7 +96,9 @@ next if $addr eq "";
> >  		@lines = ( "$Lang::tr{'unable to contact'}
> > $whoisname" );
> >  	}
> >  
> > -	&Header::openbox('100%', 'left', $addr . ' (' . $hostname
> > . ') : '.$whoisname);
> > +	# include geoip information here
> > +	&Header::openbox('100%', 'left', $addr . ' <a href=\'/cgi
> > -bin/country.cgi#' . $fcode . '\'><img src=\'' . $flag_icon . '\'
> > border=\'0\' align=\'absmiddle\' alt=\'' 
> > +.$ccode .'\' title=\'' . $ccode . '\'></a> (' . $hostname . ') :
> > '.$whoisname);
> >  	print "<pre>\n";
> >  	foreach my $line (@lines) {
> >  		print &Header::cleanhtml($line,"y");
> > 
> 
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-01-19  0:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-01 16:41 [PATCH] Add GeoIP information to ipinfo.cgi IT Superhack
2016-01-18 16:56 ` IT Superhack
2016-01-19  0:05   ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox