add maxmax DB fetch script to bin/

This commit is contained in:
Matt Simerson 2014-11-10 12:49:29 -08:00
parent dbccb0a63b
commit cff651507f
2 changed files with 51 additions and 1 deletions

View File

@ -32,7 +32,8 @@ WriteMakefile(
# 'Mail::SpamAssassin' => 0,
# 'GeoIP2' => 2,
# 'Geo::IP' => 1,
# 'Math::Complex' => 0, # geodesic distance in geoip
# 'Math::Complex' => 0, # geodesic distance in Geo::IP
# 'PerlIO::gzip' => 0, # gunzip GeoIP databases
# 'Mail::SPF' => 0,
},
ABSTRACT => 'Flexible smtpd daemon written in Perl',

View File

@ -0,0 +1,49 @@
#!/usr/bin/perl
use strict;
our $VERSION = '0.02';
use LWP::Simple qw/ mirror RC_NOT_MODIFIED RC_OK $ua /;
use File::Copy qw/ mv /;
use File::Spec;
use PerlIO::gzip;
# --- maxmind.com - please send comments to support@maxmind.com
#
# mirror various maxmind databases from geolite.maxmind.com.
# The script download only changed files, unzip the files and
# move it into the desired directory.
#
# Here is a sample cron entry that check daily for new files.
# 34 15 * * * /usr/local/bin/geolite-mirror-simple.pl
# adjust the path to your needs. Make sure the directories exists
-d ( my $download_dir = '/usr/local/share/GeoIP/download' ) or die $!;
-d ( my $dest_dir = '/usr/local/share/GeoIP' ) or die $!;
# --- remove lines you do not need
# geoip customers should rename or remove GeoIP.dat.gz and GeoIPCity.dat.gz
# This example overwrite your GeoIPCity.dat database!
my %mirror = ( # local-filename geolite-name
'GeoIP.dat.gz' => 'GeoLiteCountry/GeoIP.dat.gz',
'GeoIPCity.dat.gz' => 'GeoLiteCity.dat.gz',
'GeoIPv6.dat.gz' => 'GeoIPv6.dat.gz',
'GeoIPASNum.dat.gz' => 'asnum/GeoIPASNum.dat.gz'
);
$ua->agent("MaxMind-geolite-mirror-simple/$VERSION");
my $dl_path = 'http://geolite.maxmind.com/download/geoip/database/';
chdir $download_dir or die $!;
for my $f ( keys %mirror ) {
my $rc = mirror( $dl_path . $mirror{$f}, $f );
next if $rc == RC_NOT_MODIFIED;
if ( $rc == RC_OK ) {
( my $outfile = $f ) =~ s/\.gz$//;
open my $in, '<:gzip', $f or die $!;
open my $out, '>', $outfile or die $!;
print $out $_ or die $! while <$in>;
mv( $outfile, File::Spec->catfile( $dest_dir, $outfile ) ) or die $!;
}
}
exit 0;