]> iEval git - gruntmaster-page.git/blob - lib/Gruntmaster/Page/Pb.pm
Add contest/multispace support
[gruntmaster-page.git] / lib / Gruntmaster / Page / Pb.pm
1 package Gruntmaster::Page::Pb;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6 use parent qw/Exporter/;
7 our @EXPORT_OK = qw/generate/;
8 our $VERSION = '0.001';
9
10 use constant TITLE => 'Problems';
11
12 use Fcntl qw/:flock/;
13 use HTML::Template::Compiled;
14 use IO::File;
15 use POSIX qw/strftime/;
16 use YAML::Any qw/LoadFile/;
17 use Gruntmaster::Page qw/header footer/;
18
19 my %templates = (
20 en => <<'HTML',
21 <ul>
22 <tmpl_loop problems><li><a href="<tmpl_var id>"><tmpl_var name></a>
23 </tmpl_loop></ul>
24 HTML
25 );
26
27 $templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
28 $templates{$_} .= footer $_ for keys %templates;
29
30 sub generate{
31 my ($path, $lang) = @_;
32 $path =~ s,/index\.html$,,;
33 my $template = $templates{$lang};
34 my $htc = HTML::Template::Compiled->new(scalarref => \$template);
35 IO::File->new(">$path/meta.yml")->close unless -f "$path/meta.yml";
36 flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH;
37 my @problems = sort { $b->{name} cmp $a->{name} } map {
38 my $meta = LoadFile $_;
39 my $id = (m,^$path/(.*)/meta.yml$,)[0];
40 +{ id => $id, name => $meta->{name} } } <$path/*/meta.yml>;
41 $htc->param(problems => \@problems);
42 $htc->output
43 }
44
45 1
This page took 0.047285 seconds and 5 git commands to generate.