]> iEval git - plack-app-gruntmaster.git/blame - 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
42546e6c
MG
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/;
832cb45e 17use Gruntmaster::Page::Common qw/header footer/;
42546e6c
MG
18
19use constant FORMATS => [qw/CPP/];
20use constant TITLE => '<tmpl_var name>';
21
22my %templates = (
23 en => <<'HTML',
24<tmpl_var statement>
25
fe78f0c1 26<tmpl_if cansubmit>
42546e6c
MG
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>">
fe78f0c1 30<tmpl_if_defined contest><input type="hidden" name="contest" value="<tmpl_var contest>"></tmpl_if_defined>
42546e6c
MG
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">
fe78f0c1 38</tmpl_if>
42546e6c
MG
39HTML
40);
41
42$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
43$templates{$_} .= footer $_ for keys %templates;
44
45sub generate{
46 my ($path, $lang) = @_;
fe78f0c1
MG
47 my $contest;
48 $contest = $1 if $path =~ m,ct/([^/]*)/,;
49 my $id = ($path =~ m,pb/([^/]*)/index,)[0];
50 $path =~ s,/index\.html$,,;
42546e6c
MG
51 my $template = $templates{$_[1]};
52 my $htc = HTML::Template::Compiled->new(scalarref => \$template);
fe78f0c1
MG
53 flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH;
54 my $meta = LoadFile "$path/meta.yml";
42546e6c 55
fe78f0c1
MG
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 }
42546e6c 62 $htc->param(formats => FORMATS);
fe78f0c1 63 $htc->param(id => $id);
42546e6c 64 $htc->param(name => $meta->{name});
fe78f0c1 65 $htc->param(statement => scalar slurp "$path/statement.$lang");
42546e6c
MG
66 $htc->output
67}
68
691
This page took 0.029021 seconds and 4 git commands to generate.