From: Alexander Wirt Date: Mon, 5 Mar 2012 21:03:53 +0000 (+0100) Subject: Merge branch 'dynamic_mirror' X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=402a9839c640b6da9475fcd6c2c37052c041ec01;hp=7b7098bd6b151388cceeb0b98ad43d5872829d06;p=grml.org.git Merge branch 'dynamic_mirror' --- diff --git a/download/mirrors/index.html.tt2 b/download/mirrors/index.html.tt2 index fa6f856..556fe82 100644 --- a/download/mirrors/index.html.tt2 +++ b/download/mirrors/index.html.tt2 @@ -43,116 +43,23 @@ + [% FOREACH region IN mirrors.keys.sort %] +

Mirrors in [% region.substr(3) %]

+ + [% FOREACH mirror IN mirrors.$region.keys.sort %] +

[% mirror %] ([% mirrors.$region.$mirror.location %])

+ [% FOREACH type IN [ 'grml-http' 'grml-rsync' 'grml-ftp' ] %] + + [% END %] + [% END %] + [% END %] -

Mirrors in Europe

-

sil.at (Vienna/Austria):

- - -

inode.at (Vienna/Austria):

- - -

gd.tuwien.ac.at (Vienna/Austria):

- - - - -

netcologne.de (Germany):

- - - - -

GWDG.de (Germany):

- - -

rwth-aachen.de (Germany):

- - -

modprobe.de (Germany):

- - - - -

de.leaseweb.net (Germany):

- - -

nl.leaseweb.net (Haarlem/Netherlands):

- - - -

Mirrors in America

- -

rit.edu (New York/US):

- - -

Mirrors in Brazil

- -

grml.c3sl.ufpr.br (Brazil):

- - - -

Download via rsync

- -
diff --git a/gen_website b/gen_website index 7069102..6204a12 100755 --- a/gen_website +++ b/gen_website @@ -10,7 +10,50 @@ use File::Basename qw (fileparse dirname); use File::Copy::Recursive qw(fcopy dirmove); use File::Temp qw (tempdir); +use lib '/usr/share/perl5/'; +use Mirmon::Mirmon; + +my $m = Mirmon ->new('/etc/mirmon.conf'); +my $conf = $m->conf ; # a Mirmon::Conf object +my $state = $m->state ; # the mirmon state + + my $out_dir = shift || "out/"; +my $masterlist = '/usr/local/src/grml-mirrors/Mirrors.masterlist'; + +open (my $fh, '<', $masterlist) or die "Could not open $masterlist: $!"; +my $mirrors; + +sub get_last_state ($) { + my $url = shift; + my $mirror_state = $state->{ $url } ; # a Mirmon::Mirror object + my ($time, $history) = split('-', $mirror_state->{state_history}); + my $last_state = substr($history,-1,1); + return $last_state; +} + + +my $data; +while (my $line = <$fh>) { + chomp $line; + if ($line =~ /([^:]+): (.*)/) { + my $key = lc($1); + my $value = $2; + $data->{$key} = $value; + } elsif ($line eq '') { + my $url = sprintf ("http://%s%s", $data->{'site'}, $data->{'grml-http'}); + next if get_last_state($url) eq 'f'; + $mirrors->{ $data->{'country'} }->{ $data->{'site'} } = $data; + $data = undef; + } else { + print "Malformed line: $line\n"; + } +} + +if ($data) { + my $url = sprintf ("http://%s%s", $data->{'site'}, $data->{'grml-http'}); + $mirrors->{ $data->{'country'} }->{ $data->{'site'} } = $data if get_last_state($url) eq 'f'; +} #find all files @@ -41,7 +84,7 @@ foreach my $file (@files) { next if $file =~ /$0$/; if ($file =~ /\.tt2$/) { my $output; - $template->process($file, undef, \$output) + $template->process($file, { mirrors => $mirrors }, \$output) || die "Could not process file \"$file\": $!"; my ($name,$path,$suffix) = fileparse($file,qw (.tt2));