]> iEval git - gruntmaster-page.git/blob - lib/Gruntmaster/Page/Pb.pm
5ada0e22b8a5ad07175140b570a299d33384cdb1
[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 Gruntmaster::Page::Common qw/header footer/;
17 use Gruntmaster::Data qw/problem_name problem_level problems/;
18
19 my %templates = (
20 en => <<'HTML',
21 <tmpl_if levels>
22 <h2>Beginner</h2>
23 <ul>
24 <tmpl_loop beginner><li><a href="<tmpl_var id>.var"><tmpl_var name></a>
25 </tmpl_loop></ul>
26
27 <h2>Easy</h2>
28 <ul>
29 <tmpl_loop easy><li><a href="<tmpl_var id>.var"><tmpl_var name></a>
30 </tmpl_loop></ul>
31
32 <h2>Medium</h2>
33 <ul>
34 <tmpl_loop medium><li><a href="<tmpl_var id>.var"><tmpl_var name></a>
35 </tmpl_loop></ul>
36
37 <h2>Hard</h2>
38 <ul>
39 <tmpl_loop hard><li><a href="<tmpl_var id>.var"><tmpl_var name></a>
40 </tmpl_loop></ul>
41
42 <tmpl_else>
43 <ul>
44 <tmpl_loop problems><li><a href="<tmpl_var id>.var"><tmpl_var name></a>
45 </tmpl_loop></ul>
46 </tmpl_if>
47 HTML
48 );
49
50 $templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
51 $templates{$_} .= footer $_ for keys %templates;
52
53 sub generate{
54 $_[0] =~ m,^(?:ct/([^/]+)/)?pb/index.html$,;
55 local $Gruntmaster::Data::contest = $1;
56
57 my $htc = HTML::Template::Compiled->new(scalarref => \$templates{$_[1]});
58 my @problems = sort { $b->{name} cmp $a->{name} } map +{
59 id => $_,
60 name => problem_name,
61 level => problem_level}, problems;
62 for my $d (qw/beginner easy medium advanced hard/) {
63 $htc->param($d => [grep {$_->{level} and $_->{level} eq $d} @problems]);
64 }
65 $htc->param(levels => grep { $_->{level} } @problems);
66 $htc->param(problems => \@problems);
67 $htc->output
68 }
69
70 1
This page took 0.042649 seconds and 3 git commands to generate.