]> iEval git - gruntmaster-page.git/blame - lib/Gruntmaster/Page/Pb/Entry.pm
Initial commit
[gruntmaster-page.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/;
17use Gruntmaster::Page 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<h1>Submit solution</h1>
27<form action="https://gm.ieval.ro/action/submit" method="POST" enctype="multipart/form-data">
28<input type="hidden" name="problem" value="<tmpl_var id>">
29<label>File: <input name="prog" required type="file"></label>
30
31<label>File format: <select name="prog_format" required>
32<tmpl_loop formats><option value="<tmpl_var _>"><tmpl_var _></option>
33</tmpl_loop></select></label>
34
35<input type="submit" value="Submit job">
36HTML
37);
38
39$templates{$_} = header($_, TITLE) . $templates{$_} for keys %templates;
40$templates{$_} .= footer $_ for keys %templates;
41
42sub generate{
43 my ($path, $lang) = @_;
44 $path = ($path =~ m,pb/(.*)/index,)[0];
45 my $template = $templates{$_[1]};
46 my $htc = HTML::Template::Compiled->new(scalarref => \$template);
47 flock my $metafh = IO::File->new("<pb/$path/meta.yml"), LOCK_SH;
48 my $meta = LoadFile "pb/$path/meta.yml";
49
50 $htc->param(formats => FORMATS);
51 $htc->param(id => $path);
52 $htc->param(name => $meta->{name});
53 $htc->param(statement => scalar slurp "pb/$path/statement.$lang");
54 $htc->output
55}
56
571
This page took 0.019899 seconds and 4 git commands to generate.