forked from grml/grml.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_website
executable file
·127 lines (103 loc) · 3.3 KB
/
gen_website
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/usr/bin/perl
use strict;
use warnings;
use Template;
use File::Find::Rule;
use File::Path qw(make_path remove_tree);
use File::Basename qw (fileparse dirname);
use File::Copy::Recursive qw(fcopy dirmove);
use File::Temp qw (tempdir);
use lib '/usr/share/perl5/';
my $have_mirmon = 0;
my $masterlist = '/usr/local/src/grml-mirrors/Mirrors.masterlist';
my $mirmonconf = '/etc/mirmon.conf';
my $fh;
my $m;
my $conf;
my $state;
if (eval {require Mirmon; 1 } && -f $masterlist && -f $mirmonconf) {
$have_mirmon = 1;
open ($fh, '<', $masterlist) or die "Could not open $masterlist: $!";
$m = Mirmon ->new($mirmonconf);
$conf = $m->conf ; # a Mirmon::Conf object
$state = $m->state ; # the mirmon state
} else {
print "Skipping mirmon, it's either not installed or not configured.\n";
}
my $out_dir = shift || "out/";
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 (($have_mirmon) && (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
#rule to match git directorys
my $git = File::Find::Rule->directory
->name(".git")
->prune
->discard;
#matches all files
my $file_rule = File::Find::Rule->file();
#match symlinks
my $symlink_rule = File::Find::Rule->symlink();
#combine all rules
my @files = File::Find::Rule->or( $git, $file_rule, $symlink_rule )
->in('.');
#create a tempdir
my $tempdir = tempdir( CLEANUP => 1 );
make_path("$tempdir/out") or die "Could not create $tempdir/out: $!";
#initialize template toolkit
my $template = Template->new;
foreach my $file (@files) {
next if $file =~ /^$out_dir/;
next if $file =~ /$0$/;
if ($file =~ /\.tt2$/) {
my $output;
$template->process($file, { mirrors => $mirrors }, \$output)
|| die "Could not process file \"$file\": $!";
my ($name,$path,$suffix) = fileparse($file,qw (.tt2));
make_path("$tempdir/out/$path") unless -d "$tempdir/out/$path";
open (my $fh, '>', "$tempdir/out/$path/$name")
or die "Could not write to $file: $!";
print $fh $output;
close($fh);
} else {
fcopy ($file, "$tempdir/out/$file") or die "Could not copy $file to $tempdir/out/$file: $!";
}
}
$out_dir =~ s/\/$//;
if (-d $out_dir) {
dirmove ($out_dir, $out_dir . ".bak")
or die "Could not move $out_dir to $out_dir.bak: $!";
}
if (! dirmove ("$tempdir/out", "$out_dir")) {
warn "Could not move $tempdir/out to $out_dir: $!";
warn "Rollback";
remove_tree($out_dir);
dirmove ($out_dir . ".bak", $out_dir);
} else {
remove_tree($out_dir . ".bak");
}