X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FPb.pm;h=170f03f42d2b020235fe1924c62a2f6f0a9db3d0;hb=cd9af27e94244e6454c3db787a8ca6811f44fc16;hp=0aae2b09d216b7d7470cb048eca41c570c6906f0;hpb=6d28cb383168de84cebad84aa43900844341bf5d;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Pb.pm b/lib/Gruntmaster/Page/Pb.pm index 0aae2b0..170f03f 100644 --- a/lib/Gruntmaster/Page/Pb.pm +++ b/lib/Gruntmaster/Page/Pb.pm @@ -13,8 +13,8 @@ use Fcntl qw/:flock/; use HTML::Template::Compiled; use IO::File; use POSIX qw/strftime/; -use YAML::Any qw/LoadFile/; use Gruntmaster::Page::Common qw/header footer/; +use Gruntmaster::Data qw/problem_name problem_level problems/; my %templates = ( en => <<'HTML', @@ -51,22 +51,20 @@ $templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates; $templates{$_} .= footer $_ for keys %templates; sub generate{ - my ($path, $lang) = @_; - $path =~ s,/index\.html$,,; - my $template = $templates{$lang}; - my $htc = HTML::Template::Compiled->new(scalarref => \$template); - IO::File->new(">$path/meta.yml")->close unless -f "$path/meta.yml"; - flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH; - my @problems = sort { $b->{name} cmp $a->{name} } map { - my $meta = LoadFile $_; - my $id = (m,^$path/(.*)/meta.yml$,)[0]; - +{ id => $id, name => $meta->{name}, level => $meta->{level} } } <$path/*/meta.yml>; - for my $d(qw/beginner easy medium advanced hard/) { - $htc->param($d => [grep {$_->{level} and $_->{level} eq $d} @problems]); - } - $htc->param(levels => grep { $_->{level} } @problems); - $htc->param(problems => \@problems); - $htc->output + $_[0] =~ m,^(?:ct/([^/]+)/)?pb/index.html$,; + local $Gruntmaster::Data::contest = $1; + + my $htc = HTML::Template::Compiled->new(scalarref => \$templates{$_[1]}); + my @problems = sort { $b->{name} cmp $a->{name} } map +{ + id => $_, + name => problem_name, + level => problem_level}, problems; + for my $d (qw/beginner easy medium advanced hard/) { + $htc->param($d => [grep {$_->{level} and $_->{level} eq $d} @problems]); + } + $htc->param(levels => grep { $_->{level} } @problems); + $htc->param(problems => \@problems); + $htc->output } 1