]> iEval git - plack-app-gruntmaster.git/blobdiff - 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
index 0f91c0128841386ebaed3e4a39a6afbdb9fc5a91..53cc2102babd8a53c1a4ba73564906be0d924742 100644 (file)
@@ -14,7 +14,7 @@ use POSIX qw/strftime/;
 use YAML::Any qw/LoadFile/;
 use File::Basename qw/fileparse/;
 use File::Slurp qw/slurp/;
-use Gruntmaster::Page qw/header footer/;
+use Gruntmaster::Page::Common qw/header footer/;
 
 use constant FORMATS => [qw/CPP/];
 use constant TITLE => '<tmpl_var name>';
@@ -23,9 +23,11 @@ my %templates = (
   en => <<'HTML',
 <tmpl_var statement>
 
+<tmpl_if cansubmit>
 <h1>Submit solution</h1>
 <form action="https://gm.ieval.ro/action/submit" method="POST" enctype="multipart/form-data">
 <input type="hidden" name="problem" value="<tmpl_var id>">
+<tmpl_if_defined contest><input type="hidden" name="contest" value="<tmpl_var contest>"></tmpl_if_defined>
 <label>File: <input name="prog" required type="file"></label>
 
 <label>File format: <select name="prog_format" required>
@@ -33,6 +35,7 @@ my %templates = (
 </tmpl_loop></select></label>
 
 <input type="submit" value="Submit job">
+</tmpl_if>
 HTML
 );
 
@@ -41,16 +44,25 @@ $templates{$_} .= footer $_ for keys %templates;
 
 sub generate{
   my ($path, $lang) = @_;
-  $path = ($path =~ m,pb/(.*)/index,)[0];
+  my $contest;
+  $contest = $1 if $path =~ m,ct/([^/]*)/,;
+  my $id = ($path =~ m,pb/([^/]*)/index,)[0];
+  $path =~ s,/index\.html$,,;
   my $template = $templates{$_[1]};
   my $htc = HTML::Template::Compiled->new(scalarref => \$template);
-  flock my $metafh = IO::File->new("<pb/$path/meta.yml"), LOCK_SH;
-  my $meta = LoadFile "pb/$path/meta.yml";
+  flock my $metafh = IO::File->new("<$path/meta.yml"), LOCK_SH;
+  my $meta = LoadFile "$path/meta.yml";
 
+  $htc->param(cansubmit => 1);
+  if (defined $contest) {
+       my $meta = LoadFile "ct/$contest/meta.yml";
+       $htc->param(cansubmit => time >= $meta->{start} && time <= $meta->{end});
+       $htc->param(contest => $contest);
+  }
   $htc->param(formats => FORMATS);
-  $htc->param(id => $path);
+  $htc->param(id => $id);
   $htc->param(name => $meta->{name});
-  $htc->param(statement => scalar slurp "pb/$path/statement.$lang");
+  $htc->param(statement => scalar slurp "$path/statement.$lang");
   $htc->output
 }
 
This page took 0.025181 seconds and 4 git commands to generate.