]> iEval git - plack-app-gruntmaster.git/blame_incremental - lib/Gruntmaster/Page/Pb/Entry.pm
Move header / footer to a separate module and update MANIFEST
[plack-app-gruntmaster.git] / lib / Gruntmaster / Page / Pb / Entry.pm
... / ...
CommitLineData
1package Gruntmaster::Page::Pb::Entry;
2
3use 5.014000;
4use strict;
5use warnings;
6use parent qw/Exporter/;
7our @EXPORT_OK = qw/generate/;
8our $VERSION = '0.001';
9
10use Fcntl qw/:flock/;
11use HTML::Template::Compiled;
12use IO::File;
13use POSIX qw/strftime/;
14use YAML::Any qw/LoadFile/;
15use File::Basename qw/fileparse/;
16use File::Slurp qw/slurp/;
17use Gruntmaster::Page::Common qw/header footer/;
18
19use constant FORMATS => [qw/CPP/];
20use constant TITLE => '<tmpl_var name>';
21
22my %templates = (
23 en => <<'HTML',
24<tmpl_var statement>
25
26<tmpl_if cansubmit>
27<h1>Submit solution</h1>
28<form action="https://gm.ieval.ro/action/submit" method="POST" enctype="multipart/form-data">
29<input type="hidden" name="problem" value="<tmpl_var id>">
30<tmpl_if_defined contest><input type="hidden" name="contest" value="<tmpl_var contest>"></tmpl_if_defined>
31<label>File: <input name="prog" required type="file"></label>
32
33<label>File format: <select name="prog_format" required>
34<tmpl_loop formats><option value="<tmpl_var _>"><tmpl_var _></option>
35</tmpl_loop></select></label>
36
37<input type="submit" value="Submit job">
38</tmpl_if>
39HTML
40);
41
42$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
43$templates{$_} .= footer $_ for keys %templates;
44
45sub generate{
46 my ($path, $lang) = @_;
47 my $contest;
48 $contest = $1 if $path =~ m,ct/([^/]*)/,;
49 my $id = ($path =~ m,pb/([^/]*)/index,)[0];
50 $path =~ s,/index\.html$,,;
51 my $template = $templates{$_[1]};
52 my $htc = HTML::Template::Compiled->new(scalarref => \$template);
53 flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH;
54 my $meta = LoadFile "$path/meta.yml";
55
56 $htc->param(cansubmit => 1);
57 if (defined $contest) {
58 my $meta = LoadFile "ct/$contest/meta.yml";
59 $htc->param(cansubmit => time >= $meta->{start} && time <= $meta->{end});
60 $htc->param(contest => $contest);
61 }
62 $htc->param(formats => FORMATS);
63 $htc->param(id => $id);
64 $htc->param(name => $meta->{name});
65 $htc->param(statement => scalar slurp "$path/statement.$lang");
66 $htc->output
67}
68
691
This page took 0.021757 seconds and 4 git commands to generate.