]> iEval git - gruntmaster-page.git/blob - lib/Gruntmaster/Page/Pb.pm
Initial commit
[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 $template = $templates{$_[1]};
32 my $htc = HTML::Template::Compiled->new(scalarref => \$template);
33 IO::File->new('>pb/meta.yml')->close unless -f 'pb/meta.yml';
34 flock my $metafh = IO::File->new('<pb/meta.yml'), LOCK_SH;
35 my @problems = sort { $b->{name} cmp $a->{name} } map {
36 my $meta = LoadFile $_;
37 my $id = (m,^pb/(.*)/meta.yml$,)[0];
38 +{ id => $id, name => $meta->{name} } } <pb/*/meta.yml>;
39 $htc->param(problems => \@problems);
40 $htc->output
41 }
42
43 1
This page took 0.042169 seconds and 4 git commands to generate.